instruction stringclasses 1
value | input stringlengths 10 1.11k | output stringlengths 67 7.06k |
|---|---|---|
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this face-up card you control leaves the field and is still in your possession: You can target 1 Field Spell Card in your Graveyard; add that target to your hand. | --マインフィールド
--Minefieldriller
local s,id=GetID()
function s.initial_effect(c)
--salvage
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_TOHAND)
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e2:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e2:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 card; Set 1 Continuous Trap Card from your hand or Graveyard to your field. That Set card can be activated during this turn. | --ブービートラップE
--Booby Trap E
local s,id=GetID()
function s.initial_effect(c)
--Set 1 Continuous Trap from the hand or GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetOperation(s.activate)
c:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time an opponent's monster effect is activated, place 1 Spell Counter on this card when that effect resolves. You can send this card with 6 or more Spell Counters to the GY; add 1 Spell from your Deck to your hand. You can only use this effect of "Mythical Bestiamorph" once per turn. | --魔導変換
--Mythical Bestiamorph
local s,id=GetID()
function s.initial_effect(c)
--counter permit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_COUNTER_PERMIT+COUNTER_SPELL)
e1:SetValue(LOCATION_SZONE)
e1:SetCondition(s.ctcon)
c:RegisterEffect(e1)
--Activate
local e1=Effect.Crea... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned, you can add to your hand 1 DARK "Genex" monster from your Deck. | --ジェネクス・ブラスト
--Genex Blastfan
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetRange(LOC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 2 monsters Once per turn: You can target up to 2 Spells/Traps in the GYs; attach them to this card as material. This is a Quick Effect if this card has "Purrely Delicious Memory" as material. Up to thrice per turn, when you activate a "Purrely" Quick-Play Spell Card (Quick Effect): You can attach that card on t... | --エピュアリィ・プランプ
--Epurrely Plump
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 2 monsters
Xyz.AddProcedure(c,nil,2,2)
--Attach 2 Spell/Trap cards
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGOR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | As long as "Umi" remains face-up on the field, this card can attack twice during the same Battle Phase. | --マーメイド・ナイト
--Mermaid Knight
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_EXTRA_ATTACK)
e1:SetCondition(s.dircon)
e1:SetValue(1)
c:RegisterEffect(e1)
end
s.listed_names={CARD_UMI}
function s.dircon(e)
return Duel.IsEnvironment(CA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon this card as an Effect Monster (Illusion/DARK/Level 4/ATK 1500/DEF 600) with the following effects (this card is also still a Trap). ● If this card is Special Summoned: You can target face-up cards your opponent controls, up to the number of Illusion monsters you control; negate their effects until the e... | --影帽子
--Silhouhatte Trick
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can Special Summon 1 Fairy monster from your hand. You must control a Level 1 Fairy monster to activate and to resolve this effect. You can only use this effect of "Court of Justice" once per turn. | --コート・オブ・ジャスティス
--Court of Justice
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--special summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you control another Dinosaur monster, your opponent's monsters cannot target this card for attacks. You can target 1 other card you control; destroy it. You can only use this effect of "Zuttomozaurus" once per turn. | --ズットモザウルス
--Zuttomozaurus
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Cannot be battle target while you control another Dinosaur monster
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_CANNOT_BE_BATTLE_TARGET)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Gem-" monsters If this card is Link Summoned: You can add 1 "Gem-Knight" card from your Deck to your hand. You can pay 1000 LP; Fusion Summon 1 "Gem-Knight" Fusion Monster from your Extra Deck, by shuffling Fusion Materials in your possession listed on it into your Deck, that are banished or in the GY, but it cannot... | --ジェムナイト・ファントムルーツ
--Gem-Knight Phantom Quartz
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_GEM),2,2)
--Add 1 "Gem-Knight" card from deck
local e1=Effect.Crea... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Cyberse monsters Once per turn, at the start of the Damage Step, when this card battles a face-up monster that is not a Link-3 or higher Link Monster: You can destroy that monster. Once per turn: You can Tribute 1 monster this card points to, then target 1 monster your opponent controls; destroy it. | --デトネイト・デリーター
--Detonate Deleter
--scripted by andré
local s, id = GetID()
function s.initial_effect(c)
--Link Summon
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_CYBERSE),2,3)
--Destroy battling monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a "Chronomaly" monster(s) you control would be destroyed by battle or your opponent's card effect, you can discard this card instead. If this card is in your GY: You can pay 1000 LP; Special Summon this card, but return it to the hand during the End Phase. You cannot Special Summon monsters the turn you activate thi... | --先史遺産アカンバロの土偶
--Chronomaly Acambaro Figures
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Destroy replace
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EFFECT_DESTROY_REPLACE)
e1:SetRange(LOCATION_HAND)
e1:SetTarget(s.reptg)
e1:SetValue(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (Quick Effect): You can discard this card to the GY, then target 1 card in your opponent's GY; banish that target. | --D.D.クロウ
--D.D. Crow
local s,id=GetID()
function s.initial_effect(c)
--Banish 1 target from the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by card effects. You can only use each of the following effects of "Soulicer Crystal" once per turn. If your opponent controls 2 or more monsters than you do: You can Special Summon this card from your hand. You can target 1 Effect Monster your opponent controls; negate its effects. | --心を凍らせるスノークリスタル
--Soulicer Crystal
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Cannot be destroyed by card effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_INDESTRUCTABLE_EFFECT)
e1:SetRange(LOCATION_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) to your zone a Cyberse Link Monster points to. You can only Special Summon "Template Skipper" once per turn this way. During your Main Phase: You can banish 1 Cyberse monster from your hand or GY, and if you do, this card's name can be treated as the banished monster's,... | --テンプレート・スキッパー
--Template Skipper
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card (from your hand) to your zone a Cyberse Link Monster points to
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned to a zone that is not the center Main Monster Zone, destroy this card. This card gains 3000 ATK while in the center Main Monster Zone. Once per turn: You can choose 1 of your unused Main Monster Zones; move this card from your Main Monster Zone to that zone, then destroy all o... | --百景戦都ゴルディロックス
--Goldilocks the Battle Landscaper
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--self destroy on summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCondition(s.descon)
e1:SetOperation(s.desop)
c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when a face-up Synchro Monster you control is selected as an attack target. Negate the attack and destroy 1 monster your opponent controls. | --シンクロン・リフレクト
--Synchro Deflector
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_BE_BATTLE_TARGET)
e1:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Lunalight Panther Dancer" + 2 "Lunalight" monsters Must be Fusion Summoned with the above Fusion Materials. Your opponent cannot target this card with card effects, also it cannot be destroyed by your opponent's card effects. This card can make a second attack during each Battle Phase. Once per turn, at the end of the... | --月光舞獅子姫
--Lunalight Leo Dancer
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixN(c,false,false,97165977,1,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_LUNALIGHT),2)
--spsummon condition
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no Effect Monsters: You can Special Summon this card from your hand. If a face-up non-Effect Monster(s) you control is destroyed by battle or card effect: You can banish this card from your hand or GY, then target 1 of those destroyed monsters; Special Summon it, then you can destroy 1 monster your oppon... | --天威龍-シュターナ
--Tenyi Spirit - Shthana
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a Spell/Trap Card that would inflict damage to you, while you control a "Red Dragon Archfiend": Your opponent takes twice the effect damage you would have taken, instead. | --クリムゾン・ヘルフレア
--Crimson Fire
local s,id=GetID()
function s.initial_effect(c)
--Your opponent takes twice the effect damage you would have taken
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetOper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You cannot Pendulum Summon monsters, except "Deskbot" monsters. This effect cannot be negated. ---------------------------------------- [ Monster Effect ] This card gains 500 ATK for each "Deskbot" card in your Graveyard. Your opponent cannot target face-up "Deskbot" cards with card effects, except ... | --ブンボーグ008
--Deskbot 008
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--splimit
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOCATION_PZONE)
e2:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON)
e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_CA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares a direct attack: Negate the attack, then you can apply the rest of this card's effect. Banish 1 Tuner monster and any number of non-Tuner monsters from your Graveyard, whose total Levels equal 8 or less, and if you do, Special Summon from your Extra Deck 1 Synchro Monster whose Level... | --王魂調和
--King's Consonance
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is used for an Xyz Summon, you can treat it as a Level 5 monster. An Xyz Monster that was Summoned using this card on the field as material gains this effect. ● If it is Xyz Summoned: Draw 1 card. | --アステル・ドローン
--Star Drawing
local s,id=GetID()
function s.initial_effect(c)
--xyzlv
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_XYZ_LEVEL)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetValue(s.xyzlv)
c:RegisterEffect(e1)
--effect gain
local e2=E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card must attack if able. If this face-up card is targeted for an attack: Change its battle position. During your Main Phase, you can Normal Summon 1 "Karakuri" monster in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) | --カラクリ小町 弐弐四
--Karakuri Komachi mdl 224 "Ninishi"
local s,id=GetID()
function s.initial_effect(c)
--must attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MUST_ATTACK)
c:RegisterEffect(e1)
--pos change
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Remove from play 1 card from your opponent's Graveyard. | --ロスト
--Disappear
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned: You can send Insect and/or Plant monsters from your Deck to the GY up to the number of non-Tuners used for its Synchro Summon. If you control this Synchro Summoned card: You can target 1 Insect or Plant monster you control; treat it as a Tuner until the ... | --魔螂ディアボランティス
--Diabolantis the Menacing Mantis
--Scripted by Zefile
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Send Insect/Plant monsters from your Deck to the GY
local e1=Effect.CreateEffect(c)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can Special Summon 1 "Shaddoll" monster from your hand in face-up or face-down Defense Position. If this card is sent to the GY by a card effect: You can send 1 "Shaddoll" monster from your hand to the GY, and if you do, for the rest of this turn, all monsters you control gain ATK/DEF equal to the original Le... | --聖なる影 ケイウス
--Qadshaddoll Keios
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--FLIP: Special summon "Shaddoll" monster from hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent from the hand or field to the GY: Add 1 each of "Ojama Green", "Ojama Yellow", and "Ojama Black" from your Deck to your hand. | --おジャマジック
--Ojamagic
local s,id=GetID()
function s.initial_effect(c)
--Add 1 each of "Ojama Green", "Ojama Yellow", and "Ojama Black" from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand or GY) by paying half your LP, while your opponent has a Monster Card in their field or GY with an effect that activates in the hand or Monster Zone in response to a card or effect activation. You can only Special Summon "Liberator Eto" once per tu... | --叛逆者エト
--Liberator Eto
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
c:AddMustBeSpecialSummoned()
--Must be Special Summoned (from your hand or GY) by paying half your LP while your opponent has a Monster Card on their field or GY with an effect that activates in the... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a card or effect that targets this card (Quick Effect): You can send this card from the field to the GY; Special Summon 2 Level 4 or lower "Naturia" monsters from your Deck, but they cannot declare an attack, also destroy them during your End Phase. | --ナチュル・ホワイトオーク
--Naturia White Oak
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up Monster Card in any Spell & Trap Zone, then activate 1 of these effects; ● Special Summon it to its owner's field. ● Return it to the hand. ● Destroy it, then you can destroy 1 monster on the field with an equal or lower Level. You can only activate 1 "Materialization" per turn. | --変幻
--Materialization
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a "Galaxy" monster you control is targeted for an attack: You can Special Summon this card from your hand in Defense Position. When Summoned this way, you can: Immediately after this effect resolves, Xyz Summon 1 "Galaxy" Xyz Monster, using only "Galaxy" monsters you control. | --銀河暴竜
--Galaxy Tyranno
local s,id=GetID()
function s.initial_effect(c)
--When a "Galaxy" monster you control is targeted by an attack, Special Summon itself
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard 1 card to target 1 face-up monster on the field; place an Ice Counter on that target. This card gains 300 ATK for each Ice Counter on the field. | --コールド・エンチャンター
--Cold Enchanter
local s,id=GetID()
function s.initial_effect(c)
--add counter
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_COUNTER)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(s.c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 monster on the field with 2000 or more ATK; banish it (until the End Phase of the next turn), then if you activated this card while you controlled "Red Dragon Archfiend" or a Synchro Monster that mentions it, you can Set 1 "Fiendish Chain" directly from your Deck or GY. | --デモンズ・ゴーレム
--Fiendish Golem
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Banish 1 monster with 2000 or more ATK
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The ATK of a non Machine-Type monster equipped with this card is decreased by 300 points at each of its Standby Phases. | --細菌感染
--Germ Infection
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.NOT(aux.FilterBoolFunction(Card.IsRace,RACE_MACHINE)))
--atkdown
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(0)
c:RegisterEffect(e2)
--register
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Melodious Maestra" monster + 1 or more "Melodious" monsters This card gains 300 ATK for each Fusion Material used for its Fusion Summon. This card can make a second attack during each Battle Phase. If this Fusion Summoned card is sent to the Graveyard: You can target 1 "Melodious" monster in your Graveyard; add it t... | --幻奏の華歌聖ブルーム・プリマ
--Bloom Prima the Melodious Choir
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixRep(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_MELODIOUS),1,99,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_MELODIOUS_MAESTRA))
--summon success
lo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares an attack: Target the attacking monster; negate the attack, and if you do, change it to Defense Position and it cannot change its battle position while it is face-up on the field. Then, your opponent chooses 1 of these effects. ● You (the opponent of this card's activator) gain LP eq... | --チェンジ・デステニー
--Changing Destiny
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (Quick Effect): You can discard this card, then target 1 "Aroma" monster you control; gain LP equal to half its ATK. If this card is Normal or Special Summoned: You can Special Summon 1 non-Tuner "Aroma" monster from your Deck, also you cannot Special Summon for the rest of this turn, except Plant monsters. You can onl... | --アロマリリス-ロザリーナ
--Aromalilith Rosalina
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Gain LP equal to half of a targeted "Aroma" monster's ATK
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetProperty... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can send 1 "Naturia" monster from your Deck to the GY. Once per turn: You can target 2 "Naturia" monsters in your GY; shuffle both those targets into the Deck, then draw 1 card. | --ナチュル・マロン
--Naturia Marron
local s,id=GetID()
function s.initial_effect(c)
--send to grave
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_SUMMON_S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner Synchro Monster + "Stardust Dragon" Once per turn: You can excavate the top 5 cards of your Deck, shuffle them back in, also this card's maximum number of attacks per Battle Phase this turn equals the number of Tuner monsters excavated. Once per turn, when a card or effect is activated that would destroy a card... | --シューティング・スター・ドラゴン
--Shooting Star Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon Procedure
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_SYNCHRO),1,1,aux.FilterSummonCode(CARD_STARDUST_DRAGON),1,1)
--Excavate the top 5 cards of your deck and gain ex... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 5 monsters When this card destroys an opponent's monster by battle: You can attach that monster to this card as material. You can only use each of the following effects of "Infinitrack River Stormer" once per turn. ● You can detach 1 material from this card; take 1 EARTH Machine monster from your Deck, and eith... | --無限起動リヴァーストーム
--Infinitrack River Stormer
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure
Xyz.AddProcedure(c,nil,5,2)
--Attach an opponent's monster that this card destroyed by battle to this card as material
local e1=Effect.CreateEffect(c)
e1:SetDe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. During the End Phase of the turn this card is Normal Summoned or flipped face-up: Return it to the hand. During the turn this card was Normal Summoned or flipped face-up, you can Normal Summon 1 Spirit monster in addition to your Normal Summon/Set. (You can only gain this effect once per tur... | --和魂
--Nikitama
local s,id=GetID()
function s.initial_effect(c)
Spirit.AddProcedure(c,EVENT_SUMMON_SUCCESS,EVENT_FLIP)
--Cannot be Special Summoned
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e0:SetCode(EFFECT_SPSUMMON_CONDITION)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 of your banished Psychic-Type monsters; return both those targets to the Graveyard and draw 1 card. | --ブライト・フューチャー
--Bright Future
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_DRAW)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Spellcaster Effect Monster in your GY; add it to your hand. You can only activate 1 "Dwimmered Path" per turn. | --救魔の標
--Dwimmered Path
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card to the Graveyard, then target 1 Machine or Dragon-Type monster your opponent controls; take control of that target until the End Phase. | --エレクトリック・ワーム
--Electric Virus
local s,id=GetID()
function s.initial_effect(c)
--control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_CONTROL)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCost(s.cost)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Cynet Ritual". Any damage you take is halved. (You cannot halve the same damage twice this way.) While you control a Link Monster, monsters your opponent controls cannot target monsters you control for attacks, except this one, also your opponent cannot target monsters you control ... | --サイバース・マジシャン
--Cyberse Magician
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Halve damage
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_CHANGE_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetTargetRange(1,0)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent's monster declares a direct attack, while you control a card(s) in your Spell & Trap Zone: You can Special Summon this card from your hand, then destroy as many cards in your Spell & Trap Zone as possible, and if you do, inflict 200 damage to your opponent for each destroyed card. You cannot Special ... | --除雪機関車ハッスル・ラッセル
--Snow Plow Hustle Rustle
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DESTROY+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "White Forest" monster: You can Special Summon this card from your hand. You can send 1 Spell/Trap from your hand or field to the GY; draw 1 card. If this card is in your GY (Quick Effect): You can target 1 "White Forest" Synchro Monster you control or in your GY; return it to the Extra Deck, and if yo... | --白き森のルシア
--Rucia of the White Forest
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_H... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can excavate the top 3 cards of your Deck, and if you do, you can add 1 excavated Machine monster whose ATK equals its own DEF to your hand, also banish the remaining cards face-down. You can only use this effect of "Sacred Scrolls of the Gizmek Legend" once per turn. Each time a Machine mon... | --機巧伝-神使記紀図
--Sacred Scrolls of the Gizmek Legend
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x206)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Excavate
local e2=Effect.CreateEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Dragonmaid" monster + 1 Level 5 or higher Dragon monster During each Standby Phase: You can Special Summon 1 Level 9 or lower "Dragonmaid" monster from your hand or GY. When your opponent activates a card or effect (Quick Effect): You can negate the activation, and if you do, destroy that card, also, after that, ret... | --ドラゴンメイド・シュトラール
--Dragonmaid Sheou
--Scripted by King Yamato
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_DRAGONMAID),s.matfilter)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only as Chain Link 4 or higher. Pay half your Life Points. Negate the activation and effects of all other cards in the same Chain, and destroy them. | --虚無を呼ぶ呪文
--Vanity's Call
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The equipped monster gains 400 ATK for each Trap in your GY. You can only use each of the following effects of "Trap Gatherer" once per turn. After damage calculation, if the equipped monster destroyed an opponent's monster by battle or inflicted battle damage to your opponent: You can send this card to the GY; Set 1 T... | --トラップ・ギャザー
--Trap Gatherer
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--The equipped monster gains 400 ATK for each Trap in your GY
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(function(e) return Duel.G... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Level 4 or lower Cyberse monster When your opponent activates a Trap Card (Quick Effect): You can Tribute this card; negate that card's effect, and if you do, banish it. If this card is in your GY (Quick Effect): You can Tribute 1 "@Ignister" monster that was Summoned from the Extra Deck; Special Summon this card. Yo... | --リングリボー
--Linguriboh
--original anime script by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Link summon
Link.AddProcedure(c,s.matfilter,1,1)
c:EnableReviveLimit()
--Negate Trap Card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DISABLE+CATEGORY_DEST... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only control 1 "Magicalized Duston Mop". The equipped monster cannot be Tributed, nor be used as material for a Fusion, Synchro, or Xyz Summon. When this card you control is destroyed by an opponent's card effect and sent to your GY: You can add 1 "Duston" monster from your Deck to your hand. * The above text i... | --ダストンのモップ
--Magicalized Duston Mop
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
aux.AddEquipProcedure(c)
--Equipped monster cannot be Tributed
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_UNRELEASABLE_SUM)
e1:SetValue(1)
c:RegisterEffect(e1)
loc... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you negate the activation of an opponent's Spell/Trap Card(s), or opponent's monster effect(s), with a Counter Trap Card (except during the Damage Step): You can Special Summon this card from your hand. If Summoned this way, activate these effects and resolve in sequence, depending on the type of card(s) negated by ... | --冥王竜ヴァンダルギオン
--Van'Dalgyon the Dark Dragon Lord
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_CHAIN_NEGATED)
e1:SetRange(LOCATION_HAND)
e1:SetOperation(s.chop)
c:RegisterEffect(e1)
--special summon
local e2=... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can add 1 "Chronomaly" card from your Deck to your hand, except "Chronomaly Nebra Disk". If this card is in the Graveyard and all monsters you control are "Chronomaly" monsters (min. 1): You can Special Summon this card in Defense Position. You cannot activate cards or effects dur... | --先史遺産ネブラ・ディスク
--Chronomaly Nebra Disk
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCountLi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "Metal Fiend Token" (Fiend/DARK/Level 1/ATK 0/DEF 0). It cannot attack. Your opponent takes any battle damage you would have taken from battles involving it. Once per turn, during your Standby Phase, pay 1000 LP or destroy this Token. | --デビルズ・サンクチュアリ
--Fiend's Sanctuary
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, when an opponent's monster declares an attack: You can send 1 face-down card you control to the GY; destroy that opponent's monster. Once per turn: You can activate 1 of these effects; ● From your hand, Deck, face-up Monster Zone, and/or GY, choose up to 2 monsters with "Toy" in their original names that... | --トイ・ボックス
--Toy Box
--scripted by Naim
local s,id=GetID()
local CARD_TOY_BOX=id
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Destroy an opponent's attacking monster
local e2=Effect.CreateEffect(c)
e2:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Cyberse monsters During damage calculation, if this card attacks: You can inflict damage to your opponent equal to this card's ATK, and if you do, your opponent takes no battle damage from that battle. If this card is destroyed by card effect: You can destroy 1 monster your opponent controls. During the next Standby... | --ファイアフェニックス@イグニスター
--Fire Phoenix @Ignister
--Scripted by EerieCode, based on the anime script by Larry126
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_CYBERSE),2)
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your hand: You can target 1 "Tistina" monster you control, except "Returned of the Tistina"; Special Summon this card, and if you do, its Level becomes that targeted monster's Level. If this card is in your GY: You can target 1 Aqua Xyz Monster you control; attach this card to it as material. You can... | --ティスティナの還り仔
--Returned of the Tistina
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_LVCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 "Paleozoic" card, then draw 2 cards. Once per Chain, when a Trap Card is activated while this card is in your GY: You can Special Summon this card as a Normal Monster (Aqua/WATER/Level 2/ATK 1200/DEF 0). (This card is NOT treated as a Trap.) If Summoned this way, this card is unaffected by monster effects, al... | --バージェストマ・ピカイア
--Paleozoic Pikaia
local s,id=GetID()
function s.initial_effect(c)
--Discard 1 "Paleozoic" card, draw 2
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, when you take battle damage from an opponent's attacking monster: You can activate 1 of these effects; ● That opponent's monster loses ATK equal to the damage you took (even if this card leaves the field). ● Add 1 face-up "Abyss Actor" Pendulum Monster from your Extra Deck to your han... | --魔界劇団-プリティ・ヒロイン
--Abyss Actor - Leading Lady
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--atk down
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Blazing Cartesia, the Virtuous" + 1 LIGHT or DARK monster If this card is Fusion Summoned: You can send 1 Level 6 or higher LIGHT or DARK monster from your Deck or Extra Deck to the GY. If a monster is Special Summoned by your opponent's activated monster effect (except during the Damage Step): You can banish this car... | --赫焉竜グランギニョル
--Granguignol the Dusk Dragon
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--"Blazing Cartesia, the Virtuous" + 1 LIGHT or DARK monster
Fusion.AddProcMix(c,true,true,95515789,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_LIGHT|ATTRIBUTE_DARK))
--Send ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can inflict 500 damage to your opponent. You cannot conduct your Battle Phase the turn you activate this effect. During the End Phase, if this card is in the GY because it was sent there this turn: You can add 1 Level 10 EARTH Machine monster from your Deck to your hand. You can only use this effect ... | --無頼特急バトレイン
--Ruffian Railcar
local s,id=GetID()
function s.initial_effect(c)
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCost(s.damcost)
e1:SetTarget(s.damt... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up "Wind-Up" monster you control; its ATK and DEF are doubled, and it returns to the hand during the End Phase. You can only activate 1 "Overwind" per turn. | --オーバー・レンチ
--Overwind
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have no Spells/Traps in your GY: Draw 2 cards, also, for the rest of this Duel after you activate this card, you cannot activate Spell/Trap Cards or effects, except "Sekka's Light". You can banish this card from your GY; reveal 1 monster in your hand, shuffle it into the Deck, then, draw 1 card. You can only use... | --雪花の光
--Sekka's Light
--
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id)
e1:SetCondition(s.condition)
e1:SetTarget... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1 or more non-Tuner "T.G." monsters If this card attacks a Defense Position monster, inflict piercing battle damage to your opponent. If this card on the field is destroyed: Draw 1 card. | --TG パワー・グラディエイター
--T.G. Power Gladiator
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsSetCard,SET_TG),1,99)
c:EnableReviveLimit()
--pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_PIERCE)
c:Regis... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Watt" monsters you control cannot be destroyed by battle while they are attacking. | --エレキーウィ
--Wattkiwi
local s,id=GetID()
function s.initial_effect(c)
--indes
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarget(s.indtg)
e1:SetValue(1)
c:RegisterEffect(e1)
end
s.list... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster you control; it gains 700 ATK until the end of this turn. | --鼓舞
--Inspiration
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While this card is face-up on your side of the field, your opponent cannot select a face-up monster as an attack target except "Decoyroid". | --デコイロイド
--Decoyroid
local s,id=GetID()
function s.initial_effect(c)
--cannot be battle target
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(0,LOCATION_MZONE)
e1:SetCode(EFFECT_CANNOT_SELECT_BATTLE_TARGET)
e1:SetValue(s.atlimit)
c:RegisterEffect(e1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gain 500 Life Points. If this card was activated as Chain Link 2 or 3, add this card to the Deck and shuffle it. If this card was activated as Chain Link 4 or higher, return this card to the hand. | --チェーン・ヒーリング
--Chain Healing
local s,id=GetID()
function s.initial_effect(c)
--recover
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_RECOVER)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.rectg)
e1:SetOperation(s.recop)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Equip Spell Card in your Graveyard and 1 appropriate monster on the field; equip the Equip Spell Card to that monster. Destroy that Equip Spell Card during the End Phase. If you activate this card, you cannot Special Summon for the rest of this turn. You can only activate 1 "Swords at Dawn" per turn. | --旗鼓堂々
--Swords at Dawn
local s,id=GetID()
function s.initial_effect(c)
--effect
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetCost(s.cost)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Sky Striker Ace" monster You can only Special Summon "Protoype Sky Striker Ace - Amatsu" once per turn. When a monster your opponent controls with 2000 or more ATK activates its effect (Quick Effect): You can make the activated effect become "Destroy 1 "Sky Striker Ace" Link Monster your opponent controls". When an ... | --試号閃刀姫-アマツ
--Prototype Sky Striker Ace - Amatsu
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 1 "Sky Striker Ace" monster
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_SKY_STRIKER_ACE),1)
--You can only Special Summon "Protoyp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 "Elemental HERO Knospe"; Special Summon 1 "Elemental HERO Poison Rose" from your hand or Deck. | --ブルーメンブラット
--Rose Bud
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish 1 Fusion Monster and 2 Xyz Monsters with the same Rank from your Extra Deck, whose combined Level and Ranks equal the total number of cards in both players' hands and on the field, then you can apply this effect. ● Return 2 of your banished monsters to the Extra Deck (1 Xyz and 1 Fusion) whose combined Level and... | --連慄砲固定式
--Simultaneous Equation Cannons
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_TOEXTRA)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetH... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Offer 1 monster on your side of the field as a Tribute to increase this monster's ATK by 700 points until the end of the turn. | --陽アイルの小剣士
--The Little Swordsman of Aile
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(s.atkcost)
e1:SetOperation(s.atkop)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Y-Dragon Head" + "Z-Metal Tank" Must first be Special Summoned (from your Extra Deck) by banishing the above cards you control. (You do not use "Polymerization".) Cannot be Special Summoned from the GY. You can discard 1 card, then target 1 face-down monster your opponent controls; destroy that target. | --YZ-キャタピラー・ドラゴン
--YZ-Tank Dragon
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,65622692,64500000)
Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit)
--destroy
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(id,0))
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Spellcaster monster you control; this turn, it gains 1000 ATK. And if it does, each time it destroys an opponent's monster by battle this turn: You can add 1 "Spellbook" Spell from your Deck to your hand. You can only activate 1 "Spellbook of Power" per turn. | --ヒュグロの魔導書
--Spellbook of Power
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned: You can banish cards from your opponent's GY, up to the number of monsters "Fur Hire" you control with different names. You can only use this effect of "Dyna, Hero Fur Hire" once per turn. Monsters your opponent controls cannot target monsters "Fur Hire" you control for attacks, except... | --空牙団の豪傑 ダイナ
--Dyna, Hero Fur Hire
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--banish
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetCoun... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, at the end of the Battle Phase: Return this card from the field to the hand. You can only use each of the following effects of "Ken the Warrior Dragon" once per turn. During your Main Phase: You can Special Summon 1 "Gen the Diamond Tiger" from your hand or Deck to your opponent's field in Defense Positi... | --毘龍之謙
--Ken the Warrior Dragon
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Return itself to the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_PHASE|PHASE_BATT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner LIGHT monsters If an attack is declared involving this card and an opponent's monster: You can activate this effect; this card loses exactly 500 ATK/DEF (permanently), and if it does, that opponent's monster loses 1500 ATK/DEF until the end of this turn. * The above text is unofficial and describ... | --ライトエンド・ドラゴン
--Light End Dragon
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_LIGHT),1,99)
c:EnableReviveLimit()
--addown
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent Special Summons a monster(s) (except during the Damage Step): You can Special Summon this card from your hand in face-down Defense Position, and if you do, during the End Phase of this turn, change it to face-up Defense Position. You can only use this effect of "Sneaky "C"" once per turn. If this car... | --潜伏するG
--Sneaky "C"
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand in face-down Defense Position
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_FIEL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Danger!" monster you control and 1 monster on the field; return them to the hand. If this card is in the GY: You can discard 1 "Danger!" monster; place this card on the bottom of the Deck, then draw 1 card. You can only use each effect of "Danger! Response Team" once per turn. | --未界域調査報告
--Danger! Response Team
local s,id=GetID()
function s.initial_effect(c)
--Return 1 "Danger!" monster you control and 1 monster on the field the the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | For a Synchro Summon, you can substitute this card for any 1 "Synchron" Tuner. Once per turn: You can discard 1 card, then target 1 non-Tuner "Junk" monster in your GY; Special Summon that target, and if you do, immediately after this effect resolves, Synchro Summon 1 Synchro Monster that lists a "Synchron" monster as ... | --ジャンク・アンカー
--Junk Anchor
local s,id=GetID()
function s.initial_effect(c)
--synchro
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can be treated as 2 Tributes for the Tribute Summon of a Machine-Type monster. | --先史遺産マヤン・マシーン
--Chronomaly Mayan Machine
local s,id=GetID()
function s.initial_effect(c)
--double tribute
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DOUBLE_TRIBUTE)
e1:SetValue(s.condition)
c:RegisterEffect(e1)
end
function s.condition(e,c)
return c:IsRace(RACE_MACHINE)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You take no battle damage from attacks involving your co-linked monsters. Once per turn: You can activate 1 of these effects; ● Move 1 "Knightmare" monster you control to another of your Main Monster Zones. ● Switch the locations of 2 "Knightmare" monsters in your Main Monster Zones. | --星遺物へ誘う悪夢
--World Legacy's Nightmare
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--avoid battle damage
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + "Power Tool Dragon" When this card is Synchro Summoned: You can make your LP become 4000. You take no effect damage. If this face-up card on the field would be destroyed, you can banish 1 Equip Spell Card from your Graveyard instead. | --ライフ・ストリーム・ドラゴン
--Life Stream Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon Procedure
Synchro.AddProcedure(c,nil,1,1,aux.FilterSummonCode(2403771),1,1)
--Your LP becomes 4000
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have 3 or more "Salamangreat" monsters in your GY: You can Special Summon this card from your hand in Defense Position. You can target FIRE Link Monsters in your GY, up to the number of face-up cards your opponent controls; return them to the Extra Deck, then, you can negate the effects of face-up cards your opp... | --転生炎獣Bバイソン
--Salamangreat Beat Bison
--scripted by Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon from hand, ignition effect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNIT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you have no cards in your hand, if a monster you control attacks a Defense Position monster, inflict piercing battle damage to your opponent. | --インフェルニティ・ドワーフ
--Infernity Dwarf
local s,id=GetID()
function s.initial_effect(c)
--pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_PIERCE)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetCondition(s.condition)
c:RegisterEffect(e1)
end
function s.cond... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent controls a card in each of their Spell & Trap Zones: Destroy all cards in their Spell & Trap Zones. | --ストレートフラッシュ
--Straight Flush
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you do not control any face-up monsters, other than Winged Beast monsters: You can Special Summon both this card and 1 "Raidraptor" monster from your hand. If you control no monsters: You can target 2 Level 4 or lower "Raidraptor" monsters in your GY, including this card; Special Summon them in Defense Position. You... | --RR-ブルーム・ヴァルチャー
--Raidraptor - Bloom Vulture
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Special Summon both this card and 1 "Raidraptor" monster from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned, you can: Special Summon 1 Cyberse Tuner from your hand or GY in Defense Position, also you cannot Special Summon monsters for the rest of this turn, except Cyberse monsters. If this Synchro Summoned card is sent to the GY: You can draw 1 card. You can on... | --サイバース·インテグレーター
--Cyberse Integrator
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster you control is destroyed by battle or card effect and sent to the Graveyard: You can Special Summon this card from your hand. | --異界の棘紫竜
--Interplanetarypurplythorny Dragon
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY+EFFECT_FL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control 3 or more EARTH Fairy monsters: Send as many monsters from the field to the GY as possible (min. 1), then each player can Special Summon monsters from their opponent's GY to their own field, up to the number of monsters sent to their opponent's GY by this effect, then, if a monster was Special Summoned b... | --絶望と希望の逆転
--Exchange of Despair and Hope
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Send all monsters to the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EV... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target face-up cards your opponent controls, up to the number of "Lightsworn" monsters you control; negate their effects until the end of this turn. If this card is sent from the Deck to the GY: You can Set this card. You can only use each effect of "Lightsworn Aegis" once per turn. | --ライトロード・アイギス
--Lightsworn Aegis
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Negate the effects of cards your opponent controls, up to the number of "Lightsworn" monsters you control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DISABLE)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your "Battlewasp" monster is targeted for an attack: You can Special Summon 1 "Battlewasp" monster from your hand or Deck, and if you do, place 1 counter on this card, then end the Battle Phase. You can only use this effect of "Battlewasp - Nest" once per turn. If this card has 2 or more counters during the End Ph... | --B・F・N
--Battlewasp - Nest
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x14b)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_ATTACK)
c:RegisterEffect(e1)
--Special Summon
loc... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a Level 8 or higher Dragon-Type Synchro Monster. Twice per turn, it cannot be destroyed by battle. If it would be destroyed by a card effect, you can destroy this card instead. | --白銀の翼
--Silver Wing
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,s.filter)
--
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_EQUIP)
e3:SetCode(EFFECT_INDESTRUCTABLE_COUNT)
e3:SetCountLimit(2)
e3:SetValue(s.indval)
c:RegisterEffect(e3)
local e4=Effect.CreateEffect(c)
e4:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be Normal Summoned or Set. | --レアメタル・ドラゴン
--Rare Metal Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableUnsummonable()
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the End Phase, if this card was Normal Summoned this turn: Return it to the hand. You can only use each of these effects of "Yosenju Tsujik" once per turn. ● During either player's Damage Step, when a "Yosenju" monster you control battles an opponent's monster: You can discard this card; that monster you control... | --妖仙獣 辻斬風
--Yosenju Tsujik
local s,id=GetID()
function s.initial_effect(c)
--atk up
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetRange(LOCATION_HAND)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetCountLimit(1,id)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent controls a monster and you control no monsters, you can Normal Summon this card without Tributes. | --ビッグ・ピース・ゴーレム
--Big Piece Golem
local s,id=GetID()
function s.initial_effect(c)
--summon with no tribute
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SUMMON_PROC)
e1:SetCondition(s.ntcon)
c:Register... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.