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:
Once per turn, you can toss a coin 3 times and apply the appropriate effect: ● 3 Heads: Destroy all monsters your opponent controls. ● 2 Heads: Discard 1 random card from your opponent's hand. ● 1 Head: Destroy 1 card you control. ● 3 Tails: Discard your entire hand.
--伝説の賭博師 --Gambler of Legend local s,id=GetID() function s.initial_effect(c) --Toss 3 coins and apply the appropriate effect local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_HANDES+CATEGORY_COIN) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1 or more non-Tuner "X-Saber" monsters When this card is Synchro Summoned, you can select and destroy up to 3 Spell or Trap Cards on the field.
--XX-セイバー ヒュンレイ --XX-Saber Hyunlei local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsSetCard,SET_X_SABER),1,99) c:EnableReviveLimit() --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEG...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Unaffected by your opponent's Spell effects. Gains 500 ATK for each monster your opponent controls. When an opponent's monster declares an attack: You can have this card lose exactly 1000 DEF, and if you do, your "Valkyrie" monsters cannot be destroyed by battle this turn.
--ワルキューレ・ヴリュンヒルデ --Valkyrie Brunhilde --Scripted by Naim and AlphaKretin local s,id=GetID() function s.initial_effect(c) --Unaffected by opponent's spells local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_IMMUNE_EFFECT) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_M...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 Zombie monster in your GY and 1 monster in your opponent's GY; Special Summon the first target, also banish the second target.
--生者の書-禁断の呪術- --Book of Life local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_REMOVE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOpera...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Cyberse Link Monster After this card is Special Summoned, you take no effect damage for the rest of this turn. Once per turn, if you would take battle or effect damage, you take no damage. Cannot be used as Link Material. You can only control 1 "Secure Gardna".
--セキュア・ガードナー --Secure Gardna local s,id=GetID() function s.initial_effect(c) c:SetUniqueOnField(1,0,id) --Link summon c:EnableReviveLimit() Link.AddProcedure(c,s.matfilter,1,1) --Cannot be used as Link Material local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
● While in Attack Position: Your opponent cannot select another monster as an attack target. If this card is destroyed by battle, the monster that destroyed this card loses 300 ATK. ● While in Defense Position: This card cannot be destroyed by battle. If this card is attacked, after damage calculation, select 1 face-up...
--D・ステープラン --Morphtronic Staplen local s,id=GetID() function s.initial_effect(c) --atk local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetCode(EVENT_LEAVE_FIELD_P) e1:SetOperation(s.check) c:RegisterEffect(e1) local e2=Effect.Cr...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] Once per turn: You can destroy this card and 1 Level 2 WIND Pendulum Monster Card in your Pendulum Zone, and if you do, Special Summon 1 "Clear Wing Synchro Dragon" from your Extra Deck (this is treated as a Synchro Summon), also for the rest of this turn, cards in your Pendulum Zones cannot be dest...
--SRウィング・シンクロン --Speedroid Wing Synchron --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) --Pendulum procedure Pendulum.AddProcedure(c) --Destroy both this card and 1 Level 2 WIND Pendulum Monster Card in your Pendulum Zone, and if you do, Special Summon 1 "Clear Wing Synchro Dragon" local ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Your opponent cannot activate monster effects in response to this card's activation. Send 1 monster from your Extra Deck to the GY, then target 1 monster your opponent controls with the same card type (Fusion, Synchro, Xyz, Pendulum, or Link); shuffle it into the Deck.
--月女神の鏃 --Ultimate Slayer --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Return to the Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TODECK) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Reveal 1 "Vendread" Ritual Monster in your hand, Special Summon any number of your banished "Vendread" monsters with different names, in face-down Defense Position, whose total Levels exactly equal the Level of the revealed Ritual Monster, Tribute all those face-down Defense Position monsters, then Ritual Summon that R...
--ヴェンデット・リユニオン --Vendread Reunion local s,id=GetID() function s.initial_effect(c) --special summon local e1=Ritual.CreateProc({handler=c,lvtype=RITPROC_EQUAL,filter=s.cfilter,extrafil=s.extrafil,matfilter=s.filter,forcedselection=s.ritcheck,customoperation=s.customoperation}) e1:SetTarget(s.registerloccount(e1:GetTa...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Summoned: You can target 1 "tellarknight" monster in your Graveyard, except "Satellarknight Altair"; Special Summon that monster in Defense Position, also monsters you control cannot attack for the rest of this turn, except "tellarknight" monsters. You can only use this effect of "Satellarknight Altair"...
--星因士 アルタイル --Satellarknight Altair local s,id=GetID() function s.initial_effect(c) --Special Summon 1 "tellarknight" monster from your GY in Defense Position, except "Satellarknight Altair" local e1a=Effect.CreateEffect(c) e1a:SetDescription(aux.Stringid(id,0)) e1a:SetCategory(CATEGORY_SPECIAL_SUMMON) e1a:SetType...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Discard 1 card, then target 1 "Vendread" monster and 1 Ritual Spell in your GY; Special Summon that monster in Defense Position, and if you do, add that Ritual Spell to your hand. You can banish this card from your GY, then target 5 of your banished Zombie monsters; shuffle them into your Deck, then draw 1 card. You ca...
--ヴェンデット・リバース --Vendread Revolution --Scripted by Eerie Code; fixed by senpaizuri local s,id=GetID() function s.initial_effect(c) --activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_F...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send 1 monster from your hand to the GY; Special Summon 1 Level 1 monster from your hand or Deck.
--ワン・フォー・ワン --One for One 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) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
To activate this card, you must draw it for your normal draw in your Draw Phase while your opponent controls 3 or more monsters and you control no cards, reveal it, and keep it revealed until the Main Phase 1. During your Main Phase 1 that same turn: You can activate this card from your hand; reveal 1 card from your De...
--ピースの輪 --Symbol of Friendship local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e1:SetCode(EVENT_DRAW) e1:SetCondition(s.regcon) e1:SetOperation(s.regop) c:RegisterEffect(e1) local e2=Effect.CreateEffect(c) e2:SetCa...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a Level/Link 2 monster, you can Special Summon this card (from your hand). You can only Special Summon "Spright Carrot" once per turn this way. When your opponent activates a Spell/Trap Card or effect (Quick Effect): You can Tribute 1 other Level/Rank/Link 2 monster; negate that effect, then if you Tribu...
--スプライト・キャロット --Spright Carrot --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Special Summon self local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(1,id,EFFECT_C...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control "Dark Magician": Destroy all Spells and Traps your opponent controls.
--黒・魔・導 --Dark Magic Attack 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:SetCondition(s.condition) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card cannot be Normal Summoned or Set. This card cannot be Special Summoned except with "Trial of the Princesses". During your Standby Phase, inflict 600 damage to your opponent for each monster they control.
--魔法の国の王女-クラン --Princess Curran local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --cannot special summon local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) c:RegisterEffect(e1)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Road Synchron" + 2 or more non-Tuner monsters Once per turn: You can Special Summon 1 Level 2 or lower Warrior or Machine-Type monster from your Deck.
--ロード・ウォリアー --Road Warrior local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,s.tfilter,1,1,Synchro.NonTuner(nil),2,99) c:EnableReviveLimit() --spsummon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(E...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can change this card to face-down Defense Position. If this card is Flip Summoned: Draw 1 card.
--デス・ラクーダ --Des Lacooda local s,id=GetID() function s.initial_effect(c) --turn set local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetTarget(s.target) e1:SetOperation(s.operation) c:RegisterE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Your opponent's monsters cannot target "Nordic" monsters for attacks, except "Tyr of the Nordic Champions". If there is no other "Nordic" monster on the field, destroy this card.
--極星將テュール --Tyr of the Nordic Champions local s,id=GetID() function s.initial_effect(c) --self destroy local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_SELF_DESTROY) e1:SetCondition(s.descon) c:RegisterEffect(e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Gains 300 ATK for each banished card. You can only use each of the following effects of "Gandora-G the Dragon of Destruction" once per turn. If you control "Shining Sarcophagus": You can Special Summon this card from your hand. You can pay half your LP; destroy as many other cards on the field as possible, and if you d...
--破壊竜ガンドラG --Gandora-G the Dragon of Destruction --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Gains 300 ATK for each banished card local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetRange(LOCATI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a Spell/Trap Card, or monster effect, is activated while you control a Machine "T.G." monster: Negate the activation, and if you do, destroy that card. If a Synchro Monster(s) is banished while this card is in your GY: You can Set this card, but banish it when it leaves the field. You can only use 1 "T.G. Close" e...
--TG — クローズ --T.G. Close --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_CHAINING) e1:SetCountLimit(1,id) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your Main Phase, if this card was activated this turn: You can send 1 "Lunalight" monster from your Deck to the GY. If you Fusion Summon a "Lunalight" monster: You can add 1 "Polymerization" from your GY or banishment to your hand, then you can discard 1 card, and if you do, once, if you Fusion Summon a "Lunalig...
--月光舞踏会 --Lunalight Masquerade --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Activate local e0=Effect.CreateEffect(c) e0:SetType(EFFECT_TYPE_ACTIVATE) e0:SetCode(EVENT_FREE_CHAIN) e0:SetCost(s.actreg) c:RegisterEffect(e0) --Send 1 "Lunalight" monster from your Deck to the GY local e1=Effe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a Cyberse monster you control would be used as Link Material for a "Code Talker" monster, this card in your hand can also be used as material. If this card is sent from the hand or field to the GY as material for the Link Summon of a "Code Talker" monster: You can either add 1 "Cynet" Spell/Trap from your Deck to yo...
--マイクロ・コーダー --Micro Coder local s,id=GetID() function s.initial_effect(c) --Extra Material local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetRange(LOCATION_HAND) e1:SetCode(EFFECT_EXTRA_MATERIAL) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetTargetRange(1,0) e1:SetOperation(s.extracon) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Your opponent cannot activate monster effects in response to the activation of your Normal Trap Cards. You can only use each of the following effects of "Lovely Labrynth of the Silver Castle" once per turn. You can target 1 Normal Trap in your GY; Set it to your field, but it cannot be activated unless you control a Fi...
--白銀の城のラビュリンス --Lovely Labrynth of the Silver Castle --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) --Prevent activations in response to your Normal Traps local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetCode(EVENT_CHAINING) e1:SetRange(LOCATION_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card cannot be Special Summoned. This card returns to the owner's hand during the End Phase of the turn that this card is Normal Summoned or flipped face-up. If this card inflicts Battle Damage to your opponent's Life Points, your opponent skips their next Battle Phase.
--偉大天狗 --Great Long Nose local s,id=GetID() function s.initial_effect(c) Spirit.AddProcedure(c,EVENT_SUMMON_SUCCESS,EVENT_FLIP) --Cannot be Special Summoned local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_C...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If all monsters you control are Pendulum Monsters (min. 1): Target 2 cards in your Pendulum Zones; destroy both cards, and if you do, neither player can Special Summon for the rest of this turn, except by Pendulum Summon.
--ペンデュラム・エリア --Pendulum Area 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) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCondition(s.condition) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:Registe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Pay 800 Life Points, then target 1 of your banished LIGHT monsters; add that target to your hand.
--救援光 --Light of Redemption 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:SetCost(Cost.PayLP(800)) e1:SetTarget(s.target) e1:SetO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Take 1 "Mayakashi" card from your Deck, except "Mayakashi Return", and either add it to your hand or send it to the GY. You can only activate 1 "Mayakashi Return" per turn.
--魔妖廻天 --Mayakashi Return local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_TOGRAVE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetTarget(s.target) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 "Abyss Actor" Pendulum Monster You can target 1 card in your Pendulum Zone; Special Summon it, then place 1 "Abyss Actor" Pendulum Monster with a different name, from your Deck or face-up Extra Deck, to your Pendulum Zone, also you cannot Normal or Special Summon monsters for the rest of this turn, except "Abyss Acto...
--魔界劇団-ハイパー・ディレクター --Abyss Actor - Hyper Director --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Link.AddProcedure(c,s.matfilter,1,1) --spsummon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
A WATER monster equipped with this card increases its ATK by 400 points and decreases its DEF by 200 points.
--はがねの甲羅 --Steel Shell local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsAttribute,ATTRIBUTE_WATER)) --atk up local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_EQUIP) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetValue(400) c:RegisterEffect(e2) --def down l...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a Spell Card, Trap Card, or monster effect is activated that targets a face-up Xyz Monster(s) on the field: Negate the activation, and if you do, destroy it, then inflict 800 damage to your opponent.
--エクシーズ・リフレクト --Xyz Reflect local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY+CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_CHAINING) e1:SetCondition(s.condition) e1:SetTarget(s.target) e1:SetOperation(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 face-up monster on the field; it gains 500 ATK/DEF until the end of this turn. 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 ...
--バージェストマ・エルドニア --Paleozoic Eldonia local s,id=GetID() function s.initial_effect(c) --Targeted monster gains 500 ATK/DEF local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is destroyed by battle: Target 1 card in your opponent's GY; banish it. If this card on the field is destroyed by card effect: Target 1 FIRE monster with 200 or less DEF in your GY, except "Neo Flamvell Hedgehog"; add that target to your hand.
--ネオフレムベル・ヘッジホッグ --Neo Flamvell Hedgehog local s,id=GetID() function s.initial_effect(c) --Banish 1 card from your opponent's GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_REMOVE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFFECT_FLAG_CAR...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Reveal 1 LIGHT Machine Fusion Monster from your Extra Deck and banish any number of "Ojama" monsters from your hand, face-up field, and/or GY; Special Summon Fusion Materials with different names whose names are specifically listed on the card you revealed, from your hand, Deck, and/or GY, equal to the number of monste...
--おジャマ改造 --Ojamassimilation local s,id=GetID() function s.initial_effect(c) --Special Summon Fusion Materials 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:SetCost(s.cost) e1:SetTarge...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
At the start of the Damage Step, if this card battles a Pendulum Monster: This card's ATK and DEF become half its current ATK and DEF until the end of the Damage Step.
--ディノンの鋼鉄騎兵 --Steel Cavalry of Dinon local s,id=GetID() function s.initial_effect(c) Pendulum.AddProcedure(c) --atk/def local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1+ non-Tuner monsters Once per turn: You can reveal 3 Equip Spells from your Deck, then your opponent randomly adds 1 of them to your hand, and shuffle the other cards into the Deck. If this card would be destroyed while equipped with an Equip Spell(s), you can send 1 of those cards to the GY instead.
--パワー・ツール・ドラゴン --Power Tool Dragon local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) c:EnableReviveLimit() --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Fish Tuner + 1+ non-Tuner monsters At the start of the Damage Step, if this card battles an opponent's monster: You can banish that opponent's monster. During your opponent's Standby Phase: You can banish this card, then, if the monsters used as material for this card's Synchro Summon are all in your GY, you can Spec...
--ゴーティスの死棘グオグリム --Guoglim, Spear of the Ghoti --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Synchro Summon Procedure Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_FISH),1,1,Synchro.NonTuner(nil),1,99) --Banish battling monster local e1=Effect.CreateEffect(c) e1:SetDescript...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is sent to the GY, if you have a "Laval" monster in your GY other than "Laval Volcano Handmaiden": You can send 1 "Laval" monster from your Deck to your GY.
--ラヴァル炎火山の侍女 --Laval Volcano Handmaiden local s,id=GetID() function s.initial_effect(c) --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_T...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 Level 4 monsters If this card is Special Summoned: Negate the effects of all other face-up Xyz Monsters currently on the field. You can target 1 other face-up Xyz Monster on the field; until the End Phase, this card's name becomes that monster's, and replace this effect with that monster's original effects. You can o...
--No.69 紋章神コート・オブ・アームズ --Number 69: Heraldry Crest local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,4,3) c:EnableReviveLimit() --negate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ monsters, except Tokens If this card is Link Summoned: You can apply these effects in sequence, depending on the Types of monsters in the GYs (skip over any that do not apply). You can only use this effect of "Agave Dragon" once per turn. ● Inflict 100 damage to your opponent for each Dragon. ● This card gains 200 A...
--竜絶蘭 --Agave Dragon --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Link.AddProcedure(c,aux.NOT(aux.FilterBoolFunctionEx(Card.IsType,TYPE_TOKEN)),2) --apply effect local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DAMAGE+C...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When you take battle damage: You can Special Summon this card from your hand, and if you do, it gains ATK equal to the damage you took. Once per turn, during damage calculation, when another Defense Position monster you control is attacked by an opponent's monster: You can activate this effect; during this damage calcu...
--インタラプト・レジスタンス --Interrupt Resistor 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:SetCode(EVENT_BATTLE_DAMAGE) e1:SetRange(LOCAT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card gains 300 ATK for each "Lightsworn" monster with a different name in your Graveyard. During each of your End Phases: Send the top 2 cards of your Deck to the Graveyard.
--ライトロード・スピリット シャイア --Shire, Lightsworn Spirit local s,id=GetID() function s.initial_effect(c) --atk def local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetValue(s.value) c:RegisterEffect(e1) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When an opponent's monster declares an attack: Special Summon 1 "Vijam the Cubic Seed" from your Deck, and if you do, change the attack target to it, and perform damage calculation. If your opponent's LP are at least 2000 higher than yours: You can banish this card from your GY; Special Summon 1 "Vijam the Cubic Seed" ...
--方界降世 --Cubic Ascension local s,id=GetID() function s.initial_effect(c) --Special Summon "Vijam" and change attack target local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetCondition(s.condition) e1:SetTarget(s.target)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Monsters your opponent controls cannot target Warrior monsters for attacks, except this one. When this card is Normal Summoned: You can Special Summon 1 Level 4 or lower monster from your hand.
--切り込み隊長 --Marauding Captain local s,id=GetID() function s.initial_effect(c) --cannot select 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:Registe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can equip 1 "Inzektor" monster from your hand or GY to this card. While this card is equipped to a monster, that monster's Level is increased by 2, also it gains ATK/DEF equal to this card's ATK/DEF. While this card is equipped to a monster: You can send this Equip Card to the GY, then target 1 face-...
--甲虫装機 グルフ --Inzektor Ladybug local s,id=GetID() function s.initial_effect(c) --Equip 1 "Inzektor" monster to this card local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetTarg...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 LIGHT Fiend monster You can only Special Summon "Fiendsmith's Requiem(s)" once per turn. During the Main Phase (Quick Effect): You can Tribute this card; Special Summon 1 "Fiendsmith" monster from your hand or Deck. You can target 1 LIGHT non-Link Fiend monster you control; equip this card from your field or GY to th...
--刻まれし魔の鎮魂棺 --Fiendsmith's Requiem --Scripted by Naim local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Link Summon Procedure Link.AddProcedure(c,s.matfilter,1,1) --You can only Special Summon "Fiendsmith Requiem(s)" once per turn c:SetSPSummonOnce(id) --Special Summon 1 "Fiendsmith" monster...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Special Summon this card (from your hand) by discarding 1 card, and if you do, this card's name becomes "Dark Magician Girl". You can only Special Summon "Dark Magician Girl the Magician's Apprentice" once per turn this way. If this card is Normal or Special Summoned: You can add 1 "Shining Sarcophagus" from yo...
--魔術師の弟子-ブラック・マジシャン・ガール --Dark Magician Girl the Magician's Apprentice --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --You can Special Summon this card (from your hand) by discarding 1 card, and if you do, its name becomes "Dark Magician Girl" local e1=Effect.CreateEffect(c) e1:SetDescription(au...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Tainted Wisdom" + "Ancient Brain"
--スカルビショップ --Skull Knight local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,28725004,42431843) end
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can Special Summon 1 Level 4 or lower "Six Samurai" monster from your hand. While you control a "Six Samurai" monster with a different name, this card gains 1500 ATK.
--真六武衆-カゲキ --Legendary Six Samurai - Kageki 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_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTa...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 "Gaia The Fierce Knight" monster + 1 Dragon-Type monster This card's name becomes "Gaia the Dragon Champion" while it is on the field. If this card is Special Summoned: You can add 1 "Spiral Spear Strike" from your Deck or Graveyard to your hand. When this card declares an attack on an opponent's monster: You can cha...
--天翔の竜騎士ガイア --Sky Galloping Gaia the Dragon Champion local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_GAIA_THE_FIERCE_KNIGHT),aux.FilterBoolFunctionEx(Card.IsRace,RACE_DRAGON)) --change name local e1=Ef...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Special Summon this card (from your hand) by sending 3 face-up "Fire Formation" Spell/Trap Cards you control to the Graveyard. When this card is Normal or Special Summoned: You can Set 1 "Fire Formation" Trap Card directly from your Deck. You can only use this effect of "Brotherhood of the Fire Fist - Swallow" ...
--威炎星-ヒエンシャク --Brotherhood of the Fire Fist - Swallow local s,id=GetID() function s.initial_effect(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE) e1:SetRange(LOCATION_HAND) e1:SetCondit...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Normal Summoned: Place 1 Spell Counter on it (max. 1). Once per turn, if a Spellcaster monster(s) on the field would be destroyed, you can remove 1 Spell Counter from your field for each of those monsters instead.
--魔導騎士 ディフェンダー --Defender, the Magical Knight local s,id=GetID() function s.initial_effect(c) c:EnableCounterPermit(COUNTER_SPELL) c:SetCounterLimit(COUNTER_SPELL,1) --summon success local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_COUNTER) e1:SetType(EFFECT_TYPE_SING...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During the Main Phase, if this card is in your hand (Quick Effect): You can destroy 1 other FIRE monster in your hand or face-up field, and if you do, Special Summon this card. If this card is destroyed and sent to the GY: You can Special Summon 1 "Fire King" monster from your hand or GY, except "Fire King High Avatar ...
--炎王神獣 キリン --Fire King High Avatar Kirin --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Special Summon itself from the hand during the Main Phase local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TY...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 Level 9 monsters You can also Xyz Summon this card by using a Rank 8 "Galaxy-Eyes" Xyz Monster you control as material. (Transfer its materials to this card.) Cannot be used as material for an Xyz Summon. Once per turn: You can detach 1 material from this card, then target 1 card on the field; destroy it. If this Xyz...
--銀河眼の光波刃竜 --Galaxy-Eyes Cipher Blade Dragon local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,9,3,s.ovfilter,aux.Stringid(id,0)) c:EnableReviveLimit() --xyzlimit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 Dragon-Type Synchro Monster you control; equip this card to it. While it is battling an opponent's monster, until the end of the Damage Step, negate the effects of all face-up monsters your opponent controls. During the End Phase, if this card is in the Graveyard because it was sent there this turn: You can ta...
--スカーレッド・コクーン --Red Cocoon local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCost(aux.RemainFi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card was Set by the effect of an "Altergeist" card, you can activate it the turn it was Set. When this card is activated: Send 1 "Altergeist" monster from your hand to the GY. When your opponent activates a Trap Card (except during the Damage Step): You can send 1 "Altergeist" monster from your hand to the GY; ...
--オルターガイスト・ホーンデッドロック --Altergeist Haunted Rock --scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOGRAVE) 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:
Place 1 A-Counter on 1 face-up monster on your opponent's side of the field.
--侵食細胞「A」 --Corruption Cell "A" local s,id=GetID() function s.initial_effect(c) --counter local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_COUNTER) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetTarget(s.target) e1:SetOperation(s.operation) c:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During the Main Phase, if you control no monsters, or control an "Adventurer Token" (Quick Effect): You can Special Summon this card from your hand. When a card or effect is activated while you control an "Adventurer Token" (Quick Effect): You can shuffle this card into the Deck, and if you do, negate that activation, ...
--流離のグリフォンライダー --Wandering Gryphon Rider --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Special Summon itself from the hand 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_FREE_CH...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a monster(s) would be Special Summoned, or a monster effect is activated: Tribute 1 WIND Spellcaster-Type monster; negate the Summon or activation, and if you do, destroy that card.
--マジェスペクター・テンペスト --Majespecter Tempest local s,id=GetID() function s.initial_effect(c) --Activate(summon) local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DISABLE_SUMMON+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_SPSUMMON) e1:SetCondition(s.condition1) e1:SetCost(s.cost) e1:SetTa...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is destroyed by battle with an opponent's monster and sent to the Graveyard: You can equip this card to that opponent's monster. That monster's ATK becomes 0, also it cannot change its battle position.
--シャクトパス --Shocktopus local s,id=GetID() function s.initial_effect(c) --equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_BATTLE_DESTROYED) e1:SetCondition(s.eqcon) e1:SetTarget(s.eqtg)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 "Buster Blader" you control; equip this monster from your hand or field to that monster. While this card is equipped to a monster, monsters in your opponent's GY cannot activate their effects. You can send this Equip Card to the GY, then target 1 "Destruction Sword" monster in your GY, except "Wizard B...
--破壊剣-ウィザードバスターブレード --Wizard Buster Destruction Sword local s,id=GetID() function s.initial_effect(c) --Equip itself to a "Buster Blader" local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCategory(CATEGORY_EQUIP) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 5 monsters Once per turn (Quick Effect): You can target 1 face-up monster on the field and 1 Xyz Monster or "Chronomaly" monster in your GY; that monster on the field gains half the ATK of that monster in the GY (until the end of this turn), then attach that monster from the GY to this card as material. Once pe...
--先史遺産ヴィマナ --Chronomaly Vimana --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Xyz Summon Xyz.AddProcedure(c,nil,5,2) c:EnableReviveLimit() --Increase ATK and attach material local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can make this card's ATK become double its original ATK, until your next Standby Phase. This card cannot attack the turn you activate this effect.
--フォトン・チャージマン --Photon Chargeman local s,id=GetID() function s.initial_effect(c) --ATK becomes double of its original ATK 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:SetCountLimit(1) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card, that was Special Summoned by the effect of a "Gladiator Beast" monster, destroys an opponent's monster by battle and sends it to the GY: You can add 1 "Gladiator Beast" card from your Deck to your hand. At the end of the Battle Phase, if this card battled: You can shuffle it into the Deck; Special Summo...
--剣闘獣サムニテ --Gladiator Beast Samnite local s,id=GetID() function s.initial_effect(c) --Add 1 "Gladiator Beast" card 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+EFFECT_TYPE_TRIGGER_O) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When an opponent's monster declares a direct attack, while you have 3 or more Cyberse monsters in your GY: Negate the attack, then, you can Special Summon up to 3 "Spool Tokens" (Cyberse/LIGHT/Level 1/ATK 0/DEF 0) in Defense Position. These Tokens cannot be Tributed for a Tribute Summon.
--スプール・コード --Spool Code --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetCondition(s.condition...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ Zombie monsters You can only control 1 "Yuki-Onna, the Absolute Zero Mayakashi". Negate any activated effects of your opponent's banished monsters. If a monster is Special Summoned from the GY, or a monster effect is activated in the GY (except during the Damage Step): You can target 1 other face-up monster on the f...
--零氷の魔妖-雪女 --Yuki-Onna, the Absolute Zero Mayakashi --scripted by CyberCatMan local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --You can only control 1 "Yuki-Onna, the Absolute Zero Mayakashi" c:SetUniqueOnField(1,0,id) --Link Summon procedure Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 "Utopia" monster you control; equip this monster from your hand or your side of the field to that target. It gains 1000 ATK. When this card you control is sent to your Graveyard because the equipped monster was destroyed by your opponent's card (by battle or card effect): You can target 1 "Utopia" mons...
--ZW-極星神馬聖鎧 --ZW - Sleipnir Mail local s,id=GetID() function s.initial_effect(c) c:SetUniqueOnField(1,0,id) --Equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCategory(CATEGORY_EQUIP) e1:SetRange(LOCATION_H...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You cannot Special Summon monsters, except Insect monsters. If this card is Normal or Special Summoned: You can Special Summon 1 "Beetrooper Scout Buggy" from your hand, Deck, or GY. You can only use this effect of "Beetrooper Scout Buggy" once per turn.
--騎甲虫スカウト・バギー --Beetrooper Scout Buggy --Scripted by DyXel local s,id=GetID() function s.initial_effect(c) --You cannot Special Summon monsters, except Insect monsters local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON) e1:SetProperty(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ Level 9 monsters You can only control 1 "Jormungandr, Generaider Boss of Eternity". This card's original ATK/DEF become 1000 x its number of materials. (Quick Effect): You can detach 1 material from this card; each player draws 1 card, then each player that drew attaches 1 card from their hand or field to this card....
--永の王 オルムガンド --Jormungandr, Generaider Boss of Eternity --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() c:SetUniqueOnField(1,0,id) Xyz.AddProcedure(c,nil,9,2,nil,nil,Xyz.InfiniteMats) --This card's original ATK/DEF become 1000 x its number of materials local e1=Effect...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
At the end of the Damage Step, if an opponent's monster that battled this card is not destroyed: Return that opponent's monster to the hand.
--ハイパーハンマーヘッド --Hyper Hammerhead local s,id=GetID() function s.initial_effect(c) --return hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_DAMAGE_STEP_END) e1:SetCondition(s.retcon) e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can pay 1000 LP; add 1 "Argostars" card from your GY or banishment to your hand. Each time a Continuous Trap in the Spell & Trap Zone is Special Summoned to your field, inflict 500 damage to your opponent. Once per Chain, if a Continuous Trap activates its effect in your Monster Zone, while you have ...
--ARG☆S-HomeStadium --Argostars - Home Stadium --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Activate local e0=Effect.CreateEffect(c) e0:SetType(EFFECT_TYPE_ACTIVATE) e0:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e0) --Add 1 "ARG☆S" card from your GY or banishment to your hand local e1=E...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, you can flip this card into face-down Defense Position. When this card is Flip Summoned, destroy 1 monster on your opponent's side of the field.
--メデューサ・ワーム --Medusa Worm local s,id=GetID() function s.initial_effect(c) --turn set local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetTarget(s.target) e1:SetOperation(s.operation) c:Registe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is sent to the Graveyard as a Fusion Material for a Fusion Summon: You can target 1 "Polymerization" in your Graveyard; add it to your hand. You can only use this effect of "Fluffal Cat" once per turn.
--ファーニマル・キャット --Fluffal Cat local s,id=GetID() function s.initial_effect(c) --tohand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY) e1:SetCode(EVEN...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is targeted for an attack: Target 1 Level 7 or higher Dragon-Type monster in your Graveyard; Special Summon it, and if you do, change the attack target to it and perform damage calculation.
--デコイドラゴン --Decoy Dragon local s,id=GetID() function s.initial_effect(c) --change battle target local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner Synchro Monster + 1 or more non-Tuner Synchro Monsters If this card is Synchro Summoned: You can banish all Spell and Trap Cards your opponent controls and in their Graveyard. If this Synchro Summoned card is destroyed by battle or card effect: You can target 1 other monster in your Graveyard; Special Summon it...
--水晶機巧-フェニキシオン --Crystron Phoenix local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_SYNCHRO),1,1,Synchro.NonTunerEx(Card.IsType,TYPE_SYNCHRO),1,99) c:EnableReviveLimit() --remove local e1=Effect.CreateEffect(c) e1:SetDescription(aux.S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Tribute this card; draw 1 card. You can banish this card from your GY, then target 1 Plant monster in your GY; add it to your hand, then, if you added a Plant monster whose original Level is 7 or higher, you can send 1 Plant monster from your Deck to the GY. You can only use 1 "Rose Shaman" effect per turn, and...
--薔薇占術師 --Rose Shaman --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Draw 1 Card local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1,id) e1:SetCost(Cost.SelfTribu...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 other "Graydle" card you control and 1 card your opponent controls; destroy them. During your End Phase: You can add 1 "Graydle" card from your Deck to your hand. You can only use 1 "Graydle Impact" effect per turn, and only once that turn.
--グレイドル・インパクト --Graydle Impact 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) --destroy local e2=Effect.CreateEffect(c) e2:SetCategory(CATEGORY_DESTROY) e2:SetType(EFFECT_TYPE_IGNITION...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 2 monsters Once per turn: You can detach 1 Xyz Material from this card to target 1 face-up WIND monster you control; this turn, it can attack twice during each Battle Phase.
--ダイガスタ・フェニクス --Daigusto Phoenix local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,2,2) c:EnableReviveLimit() --spsummon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetCountLi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 "Watt" Tuner + 1+ non-Tuner Thunder monsters This card can attack directly. If this card inflicts battle damage to your opponent by a direct attack: Place 1 random card from your opponent's hand on top of their Deck.
--エレキマイラ --Wattchimera local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_WATT),1,1,Synchro.NonTunerEx(Card.IsRace,RACE_THUNDER),1,99) c:EnableReviveLimit() --direct attack local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGL...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ Effect Monsters You cannot Special Summon monsters, except FIRE monsters. You can only use each of the following effects of "Promethean Princess, Bestower of Flames" once per turn. During your Main Phase: You can Special Summon 1 FIRE monster from your GY. If a monster(s) is Special Summoned to your opponent's field...
--賜炎の咎姫 --Promethean Princess, Bestower of Flames --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Link Summon procedure: 2+ Effect Monsters Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2) --You cannot Special Summon, except FIRE monsters local e1=...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a Plant-Type monster you control is targeted for an attack: Destroy all Attack Position monsters your opponent controls.
--棘の壁 --Wall of Thorns 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_BE_BATTLE_TARGET) e1:SetCondition(s.condition) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send 1 "Blue-Eyes" monster from your hand or Deck to the GY, then target 1 face-up monster on the field; it cannot attack while it is face-up on the field. You can only activate 1 "Majesty with Eyes of Blue" per turn.
--青き眼の威光 --Majesty with Eyes of Blue local s,id=GetID() function s.initial_effect(c) --Targeted monster cannot attack local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetCost(s.co...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This monster may attack your opponent's Life Points directly.
--異形の従者 --Servant of Catabolism local s,id=GetID() function s.initial_effect(c) --direct attack local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_DIRECT_ATTACK) c:RegisterEffect(e1) end
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Gains 300 ATK for each monster your opponent controls, during your turn only. You can only use each of the following effects of "Ancient Warriors - Valiant Zhang De" once per turn. ● If you control 2 or more "Ancient Warriors" monsters: You can Special Summon this card from your hand. ● If your opponent controls more m...
--戦華の雄-張徳 --Ancient Warriors - Valiant Zhang De --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Special Summon itself from the hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Normal Summoned/Set. Must be Special Summoned by a card effect, and cannot be Special Summoned by other ways. When an opponent's monster declares an attack while you control no monsters: You can Special Summon both this card from your hand and 1 "PSY-Frame Driver" from your hand, Deck, or Graveyard, and if yo...
--PSYフレームギア・β --PSY-Framegear Beta local s,id=GetID() function s.initial_effect(c) c:EnableUnsummonable() --Must be special summoned by card effect local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Effect Monster Cannot be Link Summoned unless you have 3 or more Resonance Counters on Fiend Monster Card(s) in your Pendulum Zone. You can only Special Summon "Zebufera, Vaalmonican Hallow Heathen" once per turn. If a card(s) you control would be destroyed by battle or card effect, you can remove 3 Resonance Counter...
--ヴァルモニカの神異-ゼブフェーラ --Zebufera, Vaalmonican Hallow Heathen --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Link Summon procedure: 1 Effect Monster Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),1,1,nil,nil,s.splimit) --Cannot be Link Summoned un...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
(This card's name is always treated as "Umi".) You cannot Normal or Special Summon Effect Monsters the turn you activate either of this card's effects (even if this card leaves the field). Once per turn, if you Normal or Special Summon exactly 1 Normal Monster (and no other cards): Add 1 "Phantasm Spiral" card from you...
--幻煌の都 パシフィス --Pacifis, the Phantasm City 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) --Search 1 "Phantasm Spiral" card local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can only use each effect of "Rainbow Kuriboh" once per turn. ● When an opponent's monster declares an attack: You can target that attacking monster; equip this card from your hand to that monster. It cannot attack. ● When an opponent's monster declares a direct attack while this card is in your GY: You can Special ...
--虹クリボー --Rainbow Kuriboh local s,id=GetID() function s.initial_effect(c) --Equip this card to opponent's attacking monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
All monsters on your side of the field are treated as Dragon-Types until the End Phase of this turn.
--竜の血族 --D. Tribe 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) e1:SetTarget(s.target) e1:SetOperation(s.operation) c:RegisterEffect(e1) end function s.target(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then retu...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Insect monsters You cannot Special Summon monsters, except Insect monsters. You can only use each of the following effects of "Beetrooper Armor Horn" once per turn. During your Main Phase, you can: Immediately after this effect resolves, Normal Summon 1 Insect monster. If this card is in your GY: You can banish 3 oth...
--騎甲虫アームド・ホーン --Beetrooper Armor Horn local s,id=GetID() function s.initial_effect(c) Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_INSECT),2,2) --Link Summon procedure: 2 Insect monsters c:EnableReviveLimit() --You cannot Special Summon monsters, except Insect monsters local e1=Effect.CreateEffect...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is destroyed by battle and sent to the Graveyard, send 1 Fish-Type monster from your Deck to the Graveyard. Then, you can Special Summon 1 "Nimble Sunfish" from your Deck.
--素早いマンボウ --Nimble Sunfish local s,id=GetID() function s.initial_effect(c) --battle destroyed local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATTLE_DESTROYED) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Before damage calculation, if this card is being attacked by an opponent's monster, and was in face-up Attack Position at the start of the Damage Step: Inflict damage to your opponent equal to the attacking monster's ATK. If you do, after damage calculation: Destroy this card.
--魔鏡導士リフレクト・バウンダー --Reflect Bounder 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_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATTLE_CONFIRM) e1:SetCondition(s.damcon) e1:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 monsters with different names If this card is Link Summoned: You can discard 1 card, then target 1 Spell/Trap your opponent controls; destroy it, then, if this card was co-linked when this effect was activated, you can draw 1 card. You can only use this effect of "Knightmare Phoenix" once per turn. Co-linked monsters...
--トロイメア・フェニックス --Knightmare Phoenix local s,id=GetID() function s.initial_effect(c) --link summon Link.AddProcedure(c,nil,2,2,s.lcheck) c:EnableReviveLimit() --destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can only control 1 "Naglfar, Generaider Boss of Fire". If a card(s) you control would be destroyed by battle or card effect, you can destroy 1 "Generaider" monster or 1 Beast-Warrior monster you control instead. You can only use this effect of "Naglfar, Generaider Boss of Fire" once per turn.
--炎の王 ナグルファー --Naglfar, Generaider Boss of Fire --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) c:SetUniqueOnField(1,0,id) --destroy replace local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_DESTROY_REPLACE) e1:SetRange(LOCATION_MZONE)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 5 monsters Cannot attack directly. Once per turn: You can detach 1 material from this card; add 1 "Zexal" Spell/Trap from your Deck to your hand. You can target 1 "Utopia" monster you control; equip this card you control to it. It gains 3000 ATK. When the equipped monster destroys a monster by battle: You can S...
--ZW - 弩級兵装竜王戟 --ZW - Dragonic Halberd --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) --Xyz Summon Xyz.AddProcedure(c,nil,5,2) c:EnableReviveLimit() --Cannot direct attack local e1=Effect.CreateEffect(c) e1:SetDescription(3207) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_CANNOT_D...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 monster; Special Summon 1 Level 7 monster from your hand that can be Normal Summoned/Set. It cannot attack this turn.
--生け贄人形 --Tribute Doll local s,id=GetID() function s.initial_effect(c) --Special summon 1 level 7 monster, that can be normal summoned/set, from hand 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:SetTarg...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate only if you control a "Karakuri" monster in face-up Defense Position. Negate the activation of an opponent's Spell/Trap Card and destroy it.
--借カラクリ整備蔵 --Karakuri Cash Shed 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:SetTarget(s.target) e1:SetOperation(s.activate) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a Spell/Trap Card is activated that targets 1 Spell/Trap on the field (and no other cards) and would destroy it: Negate the activation, and if you do, destroy that card.
--王家の呪い --Curse of Royal local s,id=GetID() function s.initial_effect(c) --Negate 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:SetTarget(s.target) e1:SetOperation(s.operation) c:Regis...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is activated: You can target 1 of your banished "Mekk-Knight" monsters or "World Legacy" cards; add it to your hand. Negate any opponent's Trap effect that resolves in the same column as a "Mekk-Knight" monster you control. * The above text is unofficial and describes the card's functionality in the OCG.
--星遺物へと至る鍵 --World Legacy Key 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) e1:SetTarget(s.target) c:RegisterEffect(e1) --Negate Trap effects local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD+E...
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) by Tributing 1 "Gogogo" monster, and cannot be Special Summoned by other ways. This card's ATK becomes double the original ATK of the Tributed monster. Any battle damage your opponent takes from attacks involving this card is halved. Once per turn...
--ゴゴゴゴーレム-GF --Gogogo Golem - Golden Form local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Cannot be special summoned local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) e1:Se...