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:
Equip only to "Labyrinth Wall". You can Tribute the equipped monster; Special Summon "Wall Shadow" from your Deck.
--迷宮変化 --Magical Labyrinth local s,id=GetID() function s.initial_effect(c) --Equip procedure aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsCode,67284908)) --Special Summon "Wall Shadow" local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(id,0)) e3:SetCategory(CATEGORY_SPECIAL_SUMMON) e3:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can target 1 Set Spell/Trap Card; destroy that target. You must control a face-up "Six Samurai" monster with a different name to activate and to resolve this effect. This monster cannot declare an attack during the turn this effect is activated. If this card would be destroyed, you can destroy anothe...
--六武衆-ヤイチ --The Six Samurai - Yaichi local s,id=GetID() function s.initial_effect(c) --destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your Draw Phase, before you draw: You can give up your normal draw this turn, and if you do, add 1 monster "Fur Hire" from your Deck to your hand. If you control 5 or more monsters "Fur Hire" with different names: You can send this card from the Field Zone to the GY; destroy all cards your opponent controls, als...
--飛竜艇-ファンドラ --Fandora, the Flying Furtress 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 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:
2 Level 4 "tellarknight" monsters All face-up monsters on the field become DARK. Once per Chain: You can detach 1 material from this card, then discard 1 card; Special Summon 1 LIGHT "tellarknight" Xyz Monster from your Extra Deck, by using this card you control as material, also, you cannot Xyz Summon monsters for the...
--煉獄の騎士 ヴァトライムス --Darktellarknight Batlamyus local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure: 2 Level 4 "tellarknight" monsters Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_TELLARKNIGHT),4,2) --All face-up monsters on the field become DARK local e1=Eff...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Special Summon 1 "Gishki" Ritual Monster from your hand. It cannot attack, and is returned to the hand during the End Phase.
--儀水鏡の幻影術 --Aquamirror Illusion local s,id=GetID() function s.initial_effect(c) --Special Summon 1 "Gishki" Ritual Monster from your hand 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:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 "Cyber Angel" Ritual Monster from your hand or field; draw 2 cards, then place 1 card from your hand on the bottom of the Deck. For the rest of this turn after this card resolves, you cannot Special Summon monsters, except Ritual Monsters. You can only activate 1 "Merciful Machine Angel" per turn.
--慈悲深き機械天使 --Merciful Machine Angel --scripted by Logical Nonsense --Substitute ID 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+CATEGORY_TODECK) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_F...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] If your opponent controls a monster that was Special Summoned from the Extra Deck, and you do not: You can Special Summon this card from your Pendulum Zone. You can only use this effect of "Performapal Whim Witch" once per turn. ---------------------------------------- [ Monster Effect ] This card c...
--EMウィム・ウィッチ --Performapal Whim Witch local s,id=GetID() function s.initial_effect(c) --pendulum summon Pendulum.AddProcedure(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_PZ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 Warrior monsters with different names Once per turn, when a Spell/Trap Card, or monster effect, is activated that targets this face-up card on the field or a monster this card points to (Quick Effect): You can discard the same type of card (Monster, Spell, or Trap); negate the activation. When this Link Summoned card...
--アルカナ エクストラジョーカー --Arcana Extra Joker local s,id=GetID() function s.initial_effect(c) --Link summon procedure Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WARRIOR),3,3,s.lcheck) c:EnableReviveLimit() --Negate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(C...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Gemini Monster + 1 Gemini Monster All Gemini Monsters on the field are treated as Effect Monsters, and gain their effects.
--超合魔獣ラプテノス --Superalloy Beast Raptinus local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsType,TYPE_GEMINI),2) --duel status local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetRange(LOCATION_MZON...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Normal or Special Summoned: You can target 1 Beast, Beast-Warrior, Winged Beast, Insect, or Plant monster in your GY; send 1 monster from your Deck to the GY with the same original Type as that monster. If this card in its owner's possession is destroyed by an opponent's card: You can add 1 Beast, Beast...
--遊戯王ラッシュデュエル --Kittytail, Mystical Beast of the Forest --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Send 1 Beast, Beast-Warrior, Winged-Beast, Insect or Plant monster to the GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOGRAVE) e1:SetTy...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can add 1 Level 1 Machine monster from your Deck to your hand. You can Tribute this card; Special Summon 1 "Morphtronic" monster from your hand, then you can Special Summon 1 "Gadget Hauler" from your hand or Deck. You can only use each effect of "Gadget Gamer" once per turn.
--ガジェット・ゲーマー --Gadget Gamer --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Add 1 level 1 Machine monster from the Deck 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...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] You cannot Special Summon monsters, except "Qli" monsters. This effect cannot be negated. All "Qli" monsters you control gain 300 ATK. ---------------------------------------- [ Monster Effect ] You can Normal Summon this card without Tributing. If this card is Normal Summoned without Tributing, or ...
--クリフォート・ディスク --Qliphort Disk 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:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON) e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, you can either: Target 1 "X-Head Cannon" or "Y-Dragon Head" you control; equip this card to that target, OR: Unequip this card and Special Summon it. A monster equipped with this card gains 600 ATK/DEF, also if the equipped monster would be destroyed by battle or card effect, destroy this card instead.
--Z-メタル・キャタピラー --Z-Metal Tank local s,id=GetID() function s.initial_effect(c) aux.AddUnionProcedure(c,aux.FilterBoolFunction(Card.IsCode,62651957,65622692)) --Atk up local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_EQUIP) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetValue(600) c:RegisterEffect(e1) --Def up loc...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card is treated as a Normal Monster while face-up on the field or in the Graveyard. While this card is face-up on the field, you can Normal Summon it to have it become an Effect Monster with this effect. ● You can Tribute this card; Special Summon 1 "Hieratic" monster, except "Hieratic Seal of the Dragon King", fr...
--龍王の聖刻印 --Hieratic Seal of the Dragon King local s,id=GetID() function s.initial_effect(c) Gemini.AddProcedure(c) --Special Summon 1 "Hieratic" monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCAT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Beast, Beast-Warrior, and/or Winged Beast monsters This card gains 100 ATK for each Beast, Beast-Warrior, and Winged Beast monster on the field. Once per turn: You can target 1 Spell/Trap on each field; destroy them. When this card destroys an opponent's monster by battle: You can target 1 of your Beast, Beast-Warrio...
--小法師ヒダルマー --Fire Fighting Daruma Doll local s,id=GetID() function s.initial_effect(c) --Link Summon Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACES_BEAST_BWARRIOR_WINGB),2,2) c:EnableReviveLimit() --Gain ATK local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
At the start of the Damage Step, if this card battles an opponent's monster: Toss a coin and call it. If you call it right, destroy that monster. * The above text is unofficial and describes the card's functionality in the OCG.
--一撃必殺侍 --Sasuke Samurai #4 local s,id=GetID() function s.initial_effect(c) --Toss a coin and destroy the battling monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_COIN) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your Main Phase: You can add 1 "Fissure" or 1 "Smashing Ground" from your Deck to your hand. If this card is in your GY: You can banish 1 "Fissure" or 1 "Smashing Ground" from your hand or GY; Special Summon this card. You can only use each effect of "Manticore of Smashing" once per turn.
--震天のマンティコア --Manticore of Smashing --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Add 1 "Smashing Ground" or "Fissure" to the hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRan...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Normal Summoned/Set. Must first be Special Summoned (from your hand) while you control a "Scrap" monster. If Summoned this way: Target 1 "Scrap" monster you control; destroy that target. If this card is destroyed by the effect of a "Scrap" card and sent to the GY: You can target 1 "Scrap" monster in your GY, ...
--スクラップ・オルトロス --Scrap Orthros local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Special Summon procedure local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetRange(LOCATION_HAND) e1:SetCondition(s.spcon)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 6 monsters Once per turn, during either player's turn: You can detach 1 Xyz Material from this card, then target 1 Level 5 or higher Effect Monster your opponent controls; negate the effects of that opponent's face-up monster, until the end of the turn.
--No.25 重装光学撮影機フォーカス・フォース --Number 25: Force Focus local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,6,2) c:EnableReviveLimit() --disable local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DISABLE) e1:SetProperty(EFFECT_FLAG_CARD_TARGE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a Field Spell is placed face-up in the Field Zone: You can add 1 "Triamid" Spell/Trap from your Deck to your hand, except "Triamid Loading". If a face-up Rock monster(s) you control is destroyed by battle or an opponent's card effect: You can Special Summon 1 "Triamid" monster with a different name from your Deck. Y...
--古代遺跡の静粛 --Triamid Loading --scripted by pyrQ 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) --Add 1 "Triamid" Spell/Trap from your Deck to your hand local e2=Effect.CreateEffect(c) e2...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Tribute this card; Special Summon 2 "Dragon Tokens" (Dragon/EARTH/Level 1/ATK 0/DEF 0), also you cannot Special Summon monsters from the Extra Deck for the rest of this turn, except Level 5 or higher Dragon monsters. You can only use this effect of "Wish Dragon" once per turn.
--ウィッシュ・ドラゴン --Wish Dragon local s,id=GetID() function s.initial_effect(c) --Special Summon 2 "Dragon Tokens" local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can reveal 1 "Number" Xyz Monster in your Extra Deck; Special Summon this card from your hand. If you do, this card's Level becomes the revealed monster's Rank, also while it is face-up in the Monster Zone, you cannot Special Summon monsters from the Extra Deck, except "Number" Xyz Monsters. You can only use this e...
--アストラル・クリボー --Astral Kuriboh --Scripted by Larry126 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_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(1,id) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Cyber Dragon" + 1+ Machine monsters Must be Fusion Summoned. If this card is Fusion Summoned: Send all other cards you control to the GY. The original ATK/DEF of this card each become equal to the number of Fusion Materials used for its Fusion Summon x 800. This card can attack your opponent's monsters a number of tim...
--キメラテック・オーバー・ドラゴン --Chimeratech Overdragon local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --fusion material Fusion.AddProcMixRep(c,true,true,aux.FilterBoolFunctionEx(Card.IsRace,RACE_MACHINE),1,99,CARD_CYBER_DRAGON) --spsummon condition local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYP...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card's name becomes "Ancient Gear Golem" while on the field or in the GY. If this card is Normal or Special Summoned: You can add up to 2 cards ("Ancient Gear" cards and/or "Geartown") from your Deck to your hand, except "Ancient Gear Dark Golem", then discard 1 card, also you cannot Set cards for the rest of this...
--古代の機械暗黒巨人 --Ancient Gear Dark Golem --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Name becomes "Ancient Gear Golem" while on the field on in GY local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetCode(EFFECT_CHANGE_CODE) e1:SetRang...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When an opponent's monster declares a direct attack: You can Special Summon this card from your hand, then if this card's DEF is higher than the attacking monster's ATK, destroy that attacking monster. An Xyz Monster that was Summoned using this card on the field as Xyz Material gains this effect. ● Each turn, the firs...
--護封剣の剣士 --Swordsman of Revealing Light 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+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_ATTACK_ANNOUN...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a "Rescue-ACE" monster(s) is Normal or Special Summoned to your field, except "Rescue-ACE Fire Attacker" (except during the Damage Step): You can Special Summon this card from your hand. If a card(s) is added to your opponent's hand, except by drawing it (except during the Damage Step): You can draw 2 cards, then di...
--R-ACEファイア・アタッカー --Rescue-ACE Fire Attacker --Scripted by Zefile local s,id=GetID() function s.initial_effect(c) --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_TRIGGER_O) e1:SetProperty...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is destroyed by battle and sent to the GY: You can add 2 "Ojama" cards from your Deck to your hand.
--おジャマ・ブルー --Ojama Blue 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_BATTLE_DESTROYED) e1:SetCondition(s.conditio...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Ritual Summon this card with "Black Illusion Ritual". Once per turn: You can target 1 monster your opponent controls; equip that target to this card (max. 1). This card's ATK/DEF become equal to that equipped monster's. If this card would be destroyed by battle, destroy that equipped monster instead. While equi...
--サクリファイス --Relinquished local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetRange(LOCATION_MZONE) e1:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1+ non-Tuner monsters This card's name becomes "Summoned Skull" on the field, but is still treated as an "Archfiend" card. Your opponent cannot target any "Summoned Skull" you control with card effects. If this Synchro Summoned card you control is sent to your GY by your opponent: You can Special Summon 1 "Su...
--デーモンの招来 --Archfiend's Call --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) --Change name local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetCode(E...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Elemental HERO Neos" + 1 Level 4 or lower Effect Monster Must be Fusion Summoned. Gains 100 ATK for each "Neo-Spacian" and "HERO" monster in your GY. When this card destroys an opponent's monster by battle: You can add 1 Spell/Trap from your Deck to your hand that specifically lists the card "Elemental HERO Neos" in i...
--E・HERO ブレイヴ・ネオス --Elemental HERO Brave Neos local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,CARD_NEOS,s.ffilter) --spsummon condition local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Your opponent can Set 1 Trap directly from their hand or Deck. Then, if they did, Special Summon 1 "Jinzo" from your Deck. If they did not, add 1 "Jinzo", or 1 monster that specifically lists that card in its text, from your Deck to your hand. You can only activate 1 "Law of the Cosmos" per turn.
--宇宙の法則 --Law of the Cosmos --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Your opponent can Set 1 Trap from their hand or Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a Machine monster: Target 1 Level 4 or lower Machine monster in your GY; Special Summon that target, but its effects are negated, also destroy it during the End Phase.
--アイアンコール --Iron Call local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(s.condition) e1:SetTarget(s.target) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 face-up non-Token monster your opponent controls; Special Summon 1 monster from your hand, Deck, or Extra Deck that has 2 or more of the same Type, Attribute, and/or ATK (but negate its effects), and if you do, negate that targeted monster's effects, also, after that, if these monsters have the same name, you ...
--共界神淵体 --Metaltronus --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Special Summon 1 monster with 2+ properties equal to the target local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DISABLE+CATEGORY_REMOVE) e1:SetType(EFFECT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Shuffle all cards from your hand and Graveyard into the Deck.
--局地的大ハリケーン --Localized Tornado local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TODECK) 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(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Special Summoned. You can pay half your LP; destroy as many cards on the field as possible (other than this card), and if you do, banish them. This card gains 300 ATK for each card destroyed this way. Once per turn, during the End Phase, if this card was Normal or Flip Summoned this turn: Send it to the Grave...
--破壊竜ガンドラ --Gandora the Dragon of Destruction local s,id=GetID() function s.initial_effect(c) --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) --summo...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 6 monsters Once per turn: You can detach 1 Xyz Material from this card to declare 1 Monster Type; this card gains the following effect. At the start of the Damage Step, if this card battles a monster of a Type that has been declared: Destroy that monster.
--ソードブレイカー --Sword Breaker local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,6,2) c:EnableReviveLimit() --equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate only if your opponent has 4 or more cards in their hand. Look at your opponent's hand, select 1 Monster Card in it, and return that card to its owner's Deck.
--ダスト・シュート --Trap Dustshoot local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TODECK) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetHintTiming(0,TIMING_TOHAND) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(s.condi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Return all Set Spells and Traps on the field to the hand.
--局所的ハリケーン --Hey, Trunade! -- local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) end function s.filter(c) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Special Summoned: You can Special Summon 1 "Star Seraph" monster from your hand, then you can place 1 LIGHT monster from your Graveyard on top of your Deck. An Xyz Monster that was Summoned using 3 or more monsters, including this card on the field, as Xyz Materials gains this effect. ● Once per turn,...
--光天使スケール --Star Seraph Scale local s,id=GetID() function s.initial_effect(c) --Special Summon from your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TODECK) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SPSUMMON...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you Normal or Special Summon a "Time Thief" monster(s), except "Time Thief Adjuster" (except during the Damage Step): You can Special Summon this card from your hand. If this card is Normal or Special Summoned: You can send 1 "Time Thief" card from your Deck to the GY, except "Time Thief Adjuster". You can only use ...
--クロノダイバー・アジャスター --Time Thief Adjuster --Logical Nonsense --Substitute ID local s,id=GetID() function s.initial_effect(c) --Special summon itself from hand local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_DELAY) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: You can add 1 "Gem-Knight Fusion" from your Deck to your hand.
--ジェムタートル --Gem-Turtle 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) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_DELAY) e1:SetTarget(s.tg) e1:SetO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can pay 500 LP; Special Summon 1 "Mystical Shine Ball" from your hand or Deck.
--創造の代行者 ヴィーナス --The Agent of Creation - Venus 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) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCost(Cost.PayLP(500)) e1:SetT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Normal Summoned or flipped face-up: You can Special Summon 1 Level 4 or lower "Ninja" monster from your hand in Attack Position or face-down Defense Position, also you cannot Special Summon monsters from the Extra Deck for the rest of this turn, except "Ninja" monsters. You can only use this effect of "...
--黄色い忍者 --Yellow Ninja --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --search 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:SetProper...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card battles a LIGHT monster, this card gains 1000 ATK during the Damage Step only.
--月の女戦士 --Penumbral Soldier Lady local s,id=GetID() function s.initial_effect(c) 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:SetCondition(s.condtion) e1:SetValue(1000) c:RegisterEffect(e1)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Each time you gain Life Points, inflict 500 damage to your opponent.
--ビッグバンガール --Fire Princess local s,id=GetID() function s.initial_effect(c) --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetRange(LOCATION_MZONE) e1:SetCode(EVENT_RECOVER) e1:SetCondition(s.cd) e1:SetOperation(s.op) c:Regi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When an attack is declared involving a "SPYRAL Super Agent" you control and an opponent's face-up monster: You can change the ATK of the opponent's monster to 0. If this card is destroyed by battle or card effect: You can Special Summon 1 "SPYRAL Super Agent" from your Deck. If a "SPYRAL Super Agent" you control is des...
--RESORT」 STAFF-チャーミング --Charming Resort Staff local s,id=GetID() function s.initial_effect(c) --Change the ATK of an opponent's monster to 0 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:SetCode(EVEN...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is activated: You can add 1 "Cyberdark" monster from your Deck to your hand, with a different name from the cards in your GY. During your Main Phase, you can: Immediately after this effect resolves, Normal Summon 1 "Cyberdark" monster. You can only use the previous effect of "Cyberdark Realm" once per tu...
--サイバーダーク・ワールド --Cyberdark Realm --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetOp...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During the Main Phase (Quick Effect): You can Tribute this card and discard 1 Spell; Special Summon 1 "Witchcrafter" monster from your Deck, except "Witchcrafter Genni". You can banish this card and 1 "Witchcrafter" Spell from your GY; this effect becomes that Spell's effect when that card is activated. You can only us...
--ウィッチクラフト・ジェニー --Witchcrafter Genni --Scripted by ahtelel local s,id=GetID() function s.initial_effect(c) --Special Summon 1 "Witchcrafter" monster from your Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCo...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send 1 Trap from your Deck to the GY. 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, also banish...
--バージェストマ・マーレラ --Paleozoic Marrella local s,id=GetID() function s.initial_effect(c) --Send 1 trap from deck to GY local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOGRAVE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) e1:SetHintTiming(0,T...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a Spell/Trap Card, or monster effect, is activated: Add 1 of your materials from a "Materiactor" Xyz Monster you control to your hand, and if you do, negate the activation, then apply the following effect based on the card type added. ● Monster: Place 1 card from your hand on the bottom of the Deck. ● Spell: "Mate...
--原質の臨界超過 --Materiactor Critical --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) --Add 1 card attached to 1 "Materiactor" Xyz Monster you control to your hand and negate the activation local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned while you control "Queen's Knight": You can Special Summon 1 "Jack's Knight" from your Deck.
--キングス・ナイト --King's Knight 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) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetCondition(s.spcon) e1:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control an "Aesir" monster: You can negate the effects of all face-up cards your opponent currently controls, until the end of this turn. You can Tribute 1 "Nordic" monster, then target 1 "Aesir" monster in your GY; Special Summon it. You can only use 1 "Nordic Relic Svalinn" effect per turn, and only once that ...
--極星宝スヴァリン --Nordic Relic Svalinn --Scripted by Eerie Code 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) --Negate local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If the equipped monster's ATK is 1300 or higher, this card is destroyed. The monster equipped with this card is not destroyed as a result of battle or by the effect of a card that targets the monster. (Damage calculation is applied normally.)
--明鏡止水の心 --Heart of Clear Water local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c) --Indes local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_EQUIP) e2:SetCode(EFFECT_INDESTRUCTABLE_BATTLE) e2:SetValue(1) c:RegisterEffect(e2) local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_EQUI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 "Trickstar" monsters "Trickstar" Link Monsters you control that point to this card gain 1000 ATK. You can only use each of the following effects of "Trickstar Band Drumatis" once per turn. If this card is Fusion Summoned: You can add 1 "Trickstar" card from your Deck to your hand, with a different name from the cards...
--トリックスターバンド・ドラマチス --Trickstar Band Drumatis --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Fusion Materials Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_TRICKSTAR),2) --Your "Trickstar" Link Monsters that point to this card gain 1000 ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Normal Summoned, unless you control a "Ghostrick" monster. Once per turn, during your Main Phase: You can change this card to face-down Defense Position. If this card is Normal Summoned or flipped face-up: Send the top 2 cards of your Deck to the GY, then if either card was a "Ghostrick" card, you can apply 1...
--ゴーストリック・セイレーン --Ghostrick Siren --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Summon limit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_CANNOT_SUMMON) e1:SetCondition(s.sumcon) c:RegisterEffect(e1) --Change itself to face-down local e2=Effect.Cr...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card in your possession is destroyed by an opponent's card effect and sent to your GY, or if this card is Special Summoned from the GY: You can target 1 Attack Position monster your opponent controls; destroy it. You can only use this effect of "Crow Tengu" once per turn.
--破魔のカラス天狗 --Crow Tengu --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_TO_GRAVE) e1:SetProperty(EFFECT_FLAG_CA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 face-up Reptile-Type monster you control; destroy it and Special Summon 1 "Evoltile" monster in face-down Defense Position from your Deck.
--進化の分岐点 --Evo-Branch local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMING_END_PHASE) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While this card is equipped to a monster: You can target 1 face-up monster you control; this turn, you cannot declare attacks, except with that monster, also it gains the ability this turn to make a second attack during each Battle Phase, then destroy this card. If this card is sent to the GY because the equipped monst...
--焔聖剣-オートクレール --"Infernoble Arms - Hauteclere" --Scripted by Naim local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c) --Make the equipped be able to make a second attack, then destroy this card local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTRO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1+ non-Tuner monsters When this card is Synchro Summoned: You can draw 1 card. You can only use this effect of "Stardust Charge Warrior" once per turn. This card can attack all Special Summoned monsters your opponent controls, once each.
--スターダスト・チャージ・ウォリアー --Stardust Charge Warrior local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) c:EnableReviveLimit() --draw local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] You can target 1 "Melodious" Fusion Monster you control; send 1 "Melodious" monster from your Deck to the GY, and if you do, the targeted monster gains ATK equal to the Level of that monster sent to the GY x 200 until the end of this turn. You can only use this effect of "Refrain the Melodious Songs...
--幻奏の歌姫ルフラン --Refrain the Melodious Songstress --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) --Pendulum Summon Pendulum.AddProcedure(c) --Send 1 "Melodious" monster from your Deck to the GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card cannot attack the turn it is Normal Summoned.
--遅すぎたオーク --Tardy Orc local s,id=GetID() function s.initial_effect(c) --cannot attack local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetOperation(s.atklimit) c:RegisterEffect(e1) end function s.atklimit(e,tp,eg,ep,ev,re,r,rp) local e1=Eff...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can Special Summon 1 Level 3 or lower "T.G." Tuner monster from your hand.
--TG カタパルト・ドラゴン --T.G. Catapult 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_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetTarget(s.sp...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card you control would be used as Synchro Material for a "T.G." monster, "T.G." monsters in your hand can be used as the non-Tuner Synchro Materials. Once per turn, during the End Phase, if this card is in the GY because it was destroyed on the field and sent there this turn: You can add 1 "T.G." monster from y...
--TG サイバー・マジシャン --T.G. Cyber Magician local s,id=GetID() function s.initial_effect(c) --to grave local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e2:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e2:SetCode(EVENT_TO_GRAVE) e2:SetOperation(s.regop) c:RegisterEffect(e2) --hand synchr...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a "Materiactor" card: You can Special Summon this card from your hand. If this card is Normal or Special Summoned, or flipped face-up: You can add 1 "Materiactor" card from your Deck to your hand, except "Materiactor Zeptwing", then you can either add to your hand or Special Summon, 1 Level 3 Normal Mons...
--マテリアクトル・ゼプトウィング --Materiactor Zeptwing --scripted by Naim 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_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this face-up Attack Position card is changed to face-up Defense Position: Destroy this card, and if you do, draw 1 card.
--氷結界の武士 --Samurai of the Ice Barrier local s,id=GetID() function s.initial_effect(c) --destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_CHANGE_POS) e1:SetCondition(s....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Pay 1000 LP, then target 1 Fairy monster in your GY; add it to your hand, then, if "The Sanctuary in the Sky" is on the field or in either GY, you can add 1 of your banished "The Sanctuary in the Sky", or 1 of your banished cards that mentions it, to your hand. You can only activate 1 "The Chorus in the Sky" per turn.
--天空の歌声 --The Chorus in the Sky --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Select 1 "Blackwing" monster in your Graveyard. Take damage equal to the ATK of the selected monster, and add it to your hand.
--アゲインスト・ウィンド --Against the Wind local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_DAMAGE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is activated: If all monsters you control are "Valkyrie" monsters (min. 1), you can add 1 "Goddess Urd's Verdict" from your Deck to your hand. Once per turn: You can declare 1 type of card (Monster, Spell, or Trap); reveal the top card of your opponent's Deck and if it was the declared type, they Set it ...
--女神ヴェルダンディの導き --Goddess Verdande's Guidance --Scripted by Eerie Code and AlphaKretin local s,id=GetID() function s.initial_effect(c) --When this card is activated: If all monsters you control are "Valkyrie" monsters (min. 1), you can add 1 "Goddess Urd's Verdict" from your Deck to your hand local e1=Effect.CreateEff...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Declare 1 card name; for the rest of this turn, your opponent cannot activate cards, or the effects of cards, with the same original name as that declared card. The same restrictions apply to you, but for the rest of this Duel instead of just this turn. You can only activate 1 "Sales Ban" per turn.
--発禁令 --Sales Ban --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:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetTarget(s.target) e1:SetOpera...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Effect Monsters When another monster you control is targeted for an attack: You can change the attack target to this card, and perform damage calculation. When this card is destroyed by battle with an opponent's monster: You can destroy that opponent's monster, and if you do, gain LP equal to half that monster's orig...
--激撮ディスパラッチ --Dispatchparazzi --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Link Summon Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2,2) c:EnableReviveLimit() --change target local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] If another "Dinomist" card(s) you control would be destroyed by battle or an opponent's card effect, you can destroy this card instead. ---------------------------------------- [ Monster Effect ] When this card destroys an opponent's monster by battle: You can add 1 "Dinomist" card from your Deck to...
--ダイナミスト・プテラン --Dinomist Pteran local s,id=GetID() function s.initial_effect(c) --pendulum summon Pendulum.AddProcedure(c) --destroy replace local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_DESTROY_REPLACE) e2:SetRange(LOCATION_PZONE) e2:SetTarget(s.reptg) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If all monsters in your GY are Reptile: Target 1 non-Tuner in your GY; Special Summon it, but destroy it during the End Phase of this turn.
--ヴァイパー・リボーン --Viper's Rebirth local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(s.condition) e1:SetTarget(s.targ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: You can Special Summon 1 monster from your hand. If this card is destroyed by battle or card effect and sent to the Graveyard: You can Special Summon 1 monster from your hand.
--見習い魔笛使い --Apprentice Piper local s,id=GetID() function s.initial_effect(c) --flip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_DELAY) e1:SetTarget(s....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Reveal 3 "Ice Barrier" monsters with different names in your hand, then target 1 card your opponent controls; destroy that target, and if you do, Special Summon 1 "Ice Barrier" monster from your hand.
--氷結界の三方陣 --Magic Triangle of the Ice Barrier local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCost(s.cost...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control 2 or more "Diabell" monsters: Send 1 monster you control to the GY; destroy all face-up cards your opponent controls. If this card is sent to the GY, or banished, from the hand or Deck: You can add 1 "Diabell" Spell/Trap from your Deck to your hand, except "Curse of Diabell". You can only use each effect...
--カース・オブ・ディアベル --Curse of Diabell --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Destroy all face-up cards your opponent controls local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can place 1 "The Weather" Spell/Trap from your Deck face-up in your Spell & Trap Zone. You can only use this effect of "The Weather Painter Snow" once per turn. Once per turn, during the Standby Phase of the turn after this card was banished from the field to activate a "The Weath...
--雪天気シエル --The Weather Painter Snow --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --place local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetCountLimit(1,id) e1:SetTarget(s.tf...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] If a "Yosenju" monster(s) you control would be destroyed by battle or card effect, you can destroy this card instead. ---------------------------------------- [ Monster Effect ] If this card is Normal Summoned: Change it to Defense Position. Your opponent cannot target "Yosenju" monsters you control...
--妖仙獣 左鎌神柱 --Yosenju Shinchu L local s,id=GetID() function s.initial_effect(c) --pendulum summon Pendulum.AddProcedure(c) --destroy replace local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_DESTROY_REPLACE) e2:SetRange(LOCATION_PZONE) e2:SetTarget(s.reptg) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card cannot be Normal Summoned or Set. This card can only be Special Summoned by removing from play 1 "Iron Core of Koa'ki Meiru" from your hand. During each of your End Phases, destroy this card unless you send 1 "Iron Core of Koa'ki Meiru" or 1 "Koa'ki Meiru" monster from your hand to the Graveyard. Once per tur...
--コアキメイル・マキシマム --Koa'ki Meiru Maximus local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --cost local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE) e1:SetCode(EVENT_PHASE+PHASE_END) e1:SetCountLi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 "Odd-Eyes" monster + 1 "Performapal" monster Cannot be used as Fusion Material. If this card was Fusion Summoned with "Polymerization", it is unaffected by other cards' effects. When this card declares an attack: All monsters you currently control gain 300 ATK until the end of the Battle Phase.
--EMオッドアイズ・メタル・クロウ --Performapal Odd-Eyes Metal Claw local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_ODD_EYES),aux.FilterBoolFunctionEx(Card.IsSetCard,SET_PERFORMAPAL)) --cannot fusion material local e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
(This card is always treated as a "Sinful Spoils" card.) If this card in your hand or field is sent to the GY or banished, by an activated effect: You can Special Summon it. When your "Azamina" or "White Forest" monster destroys an opponent's monster by battle: You can target 1 "Sinful Spoils" Spell/Trap in your GY; ad...
--アザミナの妖魔 --Queen Azamina --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Add 1 "Sinful Spoils" Spell/Trap from your GY to your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Ritual Summon this card with "Cynet Ritual". During your Main Phase: You can Fusion Summon 1 Fusion Monster from your Extra Deck, by banishing materials mentioned on it from your field or GY, including a Cyberse monster. If this card is sent to the GY as Synchro Material: You can target 1 Cyberse monster or 1 R...
--サイバース・セイジ --Cyberse Sage --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() local params = {matfilter=Fusion.OnFieldMat(Card.IsAbleToRemove), extrafil=s.fextra,extraop=Fusion.BanishMaterial,extratg=s.extratarget} --Fusion Summon a Fusion monster, including a Cyberse m...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Special Summon 1 Spellcaster monster with 1500 DEF from your hand or GY in Attack Position or face-down Defense Position, then, if you control monsters with 2 or more different Attributes, you can destroy 1 face-up card on the field. You can banish this card from your GY, then target 1 "Possessed" Continuous Spell/Trap...
--憑依連携 --Possessed Partnerships --Scripted by Naim local s,id=GetID() function s.initial_effect(c) --Special Summon 1 Spellcaster with 1500 DEF from your hand or GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Summoned: You can inflict 1000 damage to your opponent. You can only use this effect of "Satellarknight Alsahm" once per turn.
--星因士 シャム --Satellarknight Alsahm local s,id=GetID() function s.initial_effect(c) --Inflict 1000 damage to your opponent local e1a=Effect.CreateEffect(c) e1a:SetDescription(aux.Stringid(id,0)) e1a:SetCategory(CATEGORY_DAMAGE) e1a:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1a:SetProperty(EFFECT_FLAG_DELAY)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
By tributing 1 Insect-Type monster on your side of the field, inflict 800 points of damage to your opponent's Life Points.
--対空放花 --Anti-Aircraft Flower 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:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCost(s.damcost...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Equip only to "Black Rose Dragon" or a Plant-Type monster. It gains 600 ATK. If the equipped monster attacks a Defense Position monster, inflict piercing battle damage to your opponent. If the equipped monster attacks a monster, after damage calculation: The attacked monster loses 600 ATK and DEF. An opponent's monster...
--憎悪の棘 --Thorn of Malice local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c,nil,s.filter) --Atk local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_EQUIP) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetValue(600) c:RegisterEffect(e2) --Pierce local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_T...
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 Link Monster points to. You can only Special Summon "Link Infra-Flier" once per turn this way.
--リンク・インフライヤー --Link Infra-Flier --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Special Summon itself from hand local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetRange(LOCATION_HAND) e1:SetCountL...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate this card only if your opponent controls a card in this Set card's column; return all other cards in this card's column to the hand. Neither player can use the unused zones in this card's column. You can only control 1 "Sour Scheduling - Red Vinegar Vamoose".
--赤酢の踏切 --Sour Scheduling - Red Vinegar Vamoose --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) c:SetUniqueOnField(1,0,id) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_C...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 face-up monster you control; equip it with 1 Level 7 monster with the same Type but a different name from your hand or Deck as an Equip Spell that gives it 700 ATK, but return that Equip Spell to the hand during the End Phase. When your opponent's Level/Rank 8 or higher monster is destroyed by battle, while th...
--七星天流抜刀術-「破軍」 --Seven Stars Slash - Army Annihilator Hagun --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Equip 1 Level 7 monster with the same Type, but a different name, to 1 face-up monster you control, from your hand or Deck as an Equip Spell local e1=Effect.CreateEffect(c) e1:SetDescripti...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send 1 Wyrm monster from your Deck to the GY, then, if you control a face-up non-Effect Monster, you can add from your Deck to your hand 1 "Tenyi" monster with a different name from the monster sent to the GY. You can only activate 1 "Vessel for the Dragon Cycle" per turn.
--虚ろなる龍輪 --Vessel for the Dragon Cycle --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Send 1 Wyrm monster from your Deck to the GY, then, if you control a face-up non-Effect Monster, you can add from your Deck to your hand 1 "Tenyi" monster with a different name from the monster sent to the...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned, you can add 1 Level 4 "R-Genex" monster from your Deck to your hand.
--レアル・ジェネクス・クラッシャー --R-Genex Crusher 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:SetRange(LOCATION_MZONE) e1:SetCode(EVENT_SUM...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When an opponent's monster declares an attack, if you control a "Ninja" monster: You can flip this card face-up; negate that attack and end the Battle Phase. While this card is face-up on the field and you control a "Ninja" monster, monsters your opponent controls cannot change their battle positions.
--機甲忍法フリーズ・ロック --Armor Ninjitsu Art of Freezing local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetCondition(s.condition) e1:SetOperation(s.activate) c:RegisterEffect(e1) --pos limit local e2=Effect...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] You can banish 1 "Speedroid" card from your GY; place 1 "Speedroid" Pendulum Monster from your Deck in your Pendulum Zone, also you cannot Special Summon for the rest of this turn, except WIND monsters. You can only use this effect of "Speedroid Colonel Clackers" once per turn. ---------------------...
--SRクラッカーネル --Speedroid Colonel Clackers --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Pendulum Summon procedure Pendulum.AddProcedure(c) --Place 1 "Speedroid" Pendulum Monster from your Deck in your Pendulum Zone local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, during your End Phase, if you control another "Flamvell" monster: Target 1 card in your opponent's GY; banish it.
--ネオフレムベル・ガルーダ --Neo Flamvell Garuda local s,id=GetID() function s.initial_effect(c) --remove local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_REMOVE) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
The equipped monster gains 500 ATK. When this card is sent from the field to the Graveyard: Inflict 500 damage to your opponent.
--黒いペンダント --Black Pendant local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c) --Atk up local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_EQUIP) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetValue(500) c:RegisterEffect(e2) --damage local e4=Effect.CreateEffect(c) e4:SetDescription(aux.String...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 WATER monsters All WATER monsters on the field gain 500 ATK and DEF, also all FIRE monsters on the field lose 400 ATK and DEF. If this card is destroyed by battle or card effect: You can target 1 WATER monster in your GY; add it to your hand. You can only use this effect of "Mistar Boy" once per turn.
--マスター・ボーイ --Mistar Boy --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --link summon Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),2,2) c:EnableReviveLimit() --atk/def local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_UPDATE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"ABC-Dragon Buster" + "XYZ-Dragon Cannon" Must be Special Summoned (from your Extra Deck) by banishing cards you control with the above original names, and cannot be Special Summoned by other ways. (You do not use "Polymerization".) During either player's turn, when your opponent activates a Spell/Trap Card, or monster...
--AtoZ−ドラゴン・バスターキャノン --A-to-Z-Dragon Buster Cannon local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() if not c:IsStatus(STATUS_COPYING_EFFECT) then Fusion.AddContactProc(c,s.contactfil,s.contactop,aux.FALSE) if c.material_count==nil then s.material_count=2 s.material={1561110,91998119} ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Zombie Tuner + 1+ non-Tuner monsters If this card is Special Summoned: You can target 1 monster your opponent controls or in their GY; banish it. If a monster(s) is Special Summoned from either GY, while this monster is on the field (except during the Damage Step): You can target 1 other face-up monster on the field;...
--巨骸竜フェルグラント --Skeletal Dragon Felgrand --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --1 Zombie Tuner + 1+ non-Tuner monsters Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_ZOMBIE),1,1,Synchro.NonTuner(nil),1,99) --Banish a monster from opponent's fie...
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 having exactly 3 DARK monsters in your GY. You can banish 1 DARK monster from your GY, then target 1 card on the field; destroy that target.
--ダーク・アームド・ドラゴン --Dark Armed Dragon local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --cannot special summon 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:SetValue(aux....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card in its owner's possession is destroyed by an opponent's card (by battle or card effect): You can Special Summon 1 "Ritual Beast" monster from your Deck or Extra Deck, ignoring its Summoning conditions. You can only Special Summon "Spiritual Beast Tamer Winda(s)" once per turn.
--精霊獣使い ウィンダ --Spiritual Beast Tamer Winda local s,id=GetID() function s.initial_effect(c) c:SetSPSummonOnce(id) --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:SetProperty(EFFEC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can target up to 2 face-up monsters on the field; increase their Levels by 1.
--EMプラスタートル --Performapal Stamp Turtle local s,id=GetID() function s.initial_effect(c) --lv local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1) e1:SetTarget(s.target) e1:Se...