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:
Shuffle this card face-up into your Deck. If you draw this face-up card that was added to the Deck by this effect: Target 1 card in your GY; send this card to the GY, and if you do, add that target to your hand. * The above text is unofficial and describes the card's functionality in the OCG.
--王家の財宝 --Pharaoh's Treasure local s,id=GetID() function s.initial_effect(c) Duel.EnableGlobalFlag(GLOBALFLAG_DECK_REVERSE_CHECK) --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.acti...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While you control 2 or more "Gogogo" monsters, you take no effect damage. Once per turn, when an attack is declared involving a "Gogogo" monster you control: You can activate this effect; that monster you control cannot be destroyed by that battle.
--ゴゴゴ護符 --Gogogo Talisman 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) --reduce local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_CHANGE_DAMAGE) e2:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Select 1 removed from play Level 5 or lower Beast-Type or Winged Beast-Type monster. Remove from play 1 card in your hand and Special Summon the selected monster in Attack Position.
--ユニコーンの導き --Unicorn Beacon 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:SetOperat...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1 or more non-Tuner "X-Saber" monsters You can Tribute 1 "X-Saber" monster, then choose 1 of these effects; this card gains that effect until the end of this turn. ● At the start of the Damage Step, if this card battles an opponent's monster: Destroy that monster. ● This card cannot be destroyed by Trap effec...
--X-セイバー ソウザ --X-Saber Souza local s,id=GetID() function s.initial_effect(c) --Must be properly summoned before reviving c:EnableReviveLimit() --Synchro summon procedure Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsSetCard,SET_X_SABER),1,99) --Gain 1 of 2 effects local e1=Effect.CreateEffect(c) e1:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 "Ninja" monster, then target 1 monster in your opponent's GY; Special Summon it to your field. It is also treated as a "Ninja" monster while this card is face-up on the field. When this card leaves the field, send that monster to the GY. You can only activate 1 "Ninjitsu Art of Mirage-Transformation" per turn...
--忍法 妖変化の術 --Ninjitsu Art of Mirage-Transformation --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARG...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 face-up Attack Position monster on the field; change it to face-up Defense Position, also any damage you take for the rest of this turn is halved.
--幻蝶の護り --Butterspy Protection local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.operation) c...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a monster is in the Extra Monster Zone: You can Special Summon this card from your hand. You can target 1 face-up monster in the Extra Monster Zone; equip that face-up monster to this card (max. 1). When this card destroys an opponent's monster by battle: You can Special Summon 1 of your Monster Cards equipped to th...
--機巧蹄-天迦久御雷 --Gizmek Kaku, the Supreme Shining Sky Stag --scripted by Logical Nonsense --Substitute ID local s,id=GetID() function s.initial_effect(c) --Special Summon from hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
The first time each Beast monster you control would be destroyed by card effect each turn, it is not destroyed. You can target 3 Beast monsters in your GY with different names; shuffle them into the Deck, then draw 1 card. You can only use this effect of "Melffy Hide-and-Seek" once per turn.
--メルフィーのかくれんぼ --Melffy Hide-and-Seek --Scripted by ahtelel 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) --Cannot be destroyed by card effects local e2=Effect.CreateEffect(c) e2:SetTyp...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While you have no cards in your hand, face-up "Infernity" monsters you control gain 400 ATK and DEF. You can send this face-up card from the field to the Graveyard to send all cards from your hand to the Graveyard.
--虚無の波動 --Wave-Motion Inferno 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) --atk,def local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetRange(LOCATION_SZONE) e2:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card inflicts battle damage to your opponent: Send the top card of their Deck to the GY. If this card is sent from the field to the GY: Add 1 Zombie monster with 1200 or less DEF from your Deck to your hand.
--ゴブリンゾンビ --Goblin Zombie local s,id=GetID() function s.initial_effect(c) --handes local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DECKDES) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATTLE_DAMAGE) e1:SetCondition(s.ddcon) e1:SetTarget(s.d...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, you can either: Target 1 face-up monster you control; equip this card to that target, OR: Unequip this card and Special Summon it in face-up Attack Position. While equipped by this effect, the equipped monster loses 500 ATK and DEF. If the equipped monster destroys an opponent's monster by battle: Destro...
--バスター・ショットマン --Buster Blaster local s,id=GetID() function s.initial_effect(c) aux.AddUnionProcedure(c,nil,true,false) --atk,def local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_EQUIP) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetCondition(aux.IsUnionState) e1:SetValue(-500) c:RegisterEffect(e1) local e2=e1:Cl...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can only activate this card when you take damage to your Life Points. Inflict 700 points of damage to your opponent's Life Points. Also, inflict 300 points of damage to your opponent's Life Points for each "Attack and Receive" card in your Graveyard.
--白兵戦 --Attack and Receive local s,id=GetID() function s.initial_effect(c) --Damage local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCategory(CATEGORY_DAMAGE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT_DAMAGE) e1:SetTarget(s.rectg) e1:SetOperation(s....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card attacks a Defense Position monster, inflict piercing battle damage to your opponent.
--墓守の長槍兵 --Gravekeeper's Spear Soldier local s,id=GetID() function s.initial_effect(c) --pierce local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_PIERCE) c:RegisterEffect(e1) end
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 "Elemental HERO" Normal Monster in your GY; Special Summon that target.
--O-オーバーソウル --O - Oversoul 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:SetTarget(s.target) e1:SetOperation(s.activate) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target face-up cards your opponent controls, up to the number of EARTH monsters you control with different names that were Special Summoned from the GY; return EARTH monsters you control to the hand equal to the number of targets, and if you returned at least 1 to the hand, return the targeted cards to the hand. You ca...
--春化精と花蕾 --Vernusylph and the Flower Buds --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Return cards to hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is activated: You can target any number of "Gadget" Monster Cards you control that are equipped to a monster; Special Summon them. You can discard 1 card; add 1 "Boot-Up Admiral - Destroyer Dynamo" from your Deck to your hand. You can only use this effect of "Boot-Up Order - Gear Charge" once per turn. Y...
--起動指令 ギア・チャージ --Boot-Up Order - Gear Charge --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --When activated, special summon any number of your "Gadget" monsters from S/T zones local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Equip only to a "Power Tool Dragon" or Level 4 or higher Machine-Type "Morphtronic" monster you control. While equipped: ● During your turn: It gains 1000 ATK. If it attacks, any effects of the attack target that activate or apply on the field are negated during that Battle Phase. ● During your opponent's turn: Your op...
--ダブルツールD&C --Double Tool C&D local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c,0,s.filter,s.eqlimit) --atk local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_EQUIP) e3:SetCode(EFFECT_UPDATE_ATTACK) e3:SetCondition(s.scon1) e3:SetValue(1000) c:RegisterEffect(e3) --disable local e4=Ef...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 WATER Tuner + 1+ non-Tuner monsters When this card is Synchro Summoned: You can target 1 Fish monster in your GY; Special Summon it, but it cannot attack this turn. You can only use this effect of "White Aura Monoceros" once per turn. If this card you control is destroyed by your opponent's card and sent to your GY: ...
--白闘気一角 --White Aura Monoceros --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Synchro Summon procedure: 1 WATER Tuner + 1+ non-Tuner monsters Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),1,1,Synchro.NonTuner(nil),1,99) --Special ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If your opponent Special Summons a monster(s): Your opponent sends 1 card from their Extra Deck to the Graveyard.
--龍大神 --Ryu Okami local s,id=GetID() function s.initial_effect(c) --tograve local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOGRAVE) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetRange(LOCATION_MZONE) e1:SetCondition(s....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 face-up "Cloudian" monster, then target 1 face-up monster on the field; place 3 Fog Counters on that target.
--フォッグ・コントロール --Fog Control 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:SetCost(s.cost) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 4 monsters When a monster effect is activated on your opponent's field (Quick Effect): You can detach 2 materials from this card, then target 1 Effect Monster your opponent controls; while this monster is face-up on the field, that Effect Monster's effects are negated, also it cannot change its battle position.
--No.106 巨岩掌ジャイアント・ハンド --Number 106: Giant Hand local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,4,2) c:EnableReviveLimit() --negate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_QUICK_O) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card's name becomes "Gunkan Suship Shari" while in the hand, Deck, GY, or on the field. You can only use the following effect of "Gunkan Suship Shari Red" once per turn. You can reveal 1 other "Gunkan Suship Shari" in your hand; Special Summon this card from your hand, then you can apply this effect. ● Special Sum...
--赤しゃりの軍貫 --Gunkan Suship Shari Red --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Change its name to "Gunkan Suship Shari" local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetCode(EFFECT_CHANGE_CODE) e1:SetRange(LOCATION_MZONE|LOCATI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your Battle Step, if this card attacks a Defense Position monster: You can make this card lose exactly 400 ATK, and if it does, it will inflict piercing battle damage. These effects last until the end of this turn.
--イグザリオン・ユニバース --Exarion Universe local s,id=GetID() function s.initial_effect(c) --Loses 400 ATK, and if it does, inflict piercing damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_FREE_CHAIN) e1:SetRange(LOCATION_MZONE) e1:SetCountLimi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 8 monsters Once per turn, when a Spell Card or effect is activated on the field (Quick Effect): You can negate that effect, and if you do, attach that card to this card as material. When an opponent's monster declares an attack: You can detach 1 material from this card; change the attack target to this card and...
--No.38 希望魁竜タイタニック・ギャラクシー --Number 38: Hope Harbinger Dragon Titanic Galaxy local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure Xyz.AddProcedure(c,nil,8,2) --Negate an activated Spell Card or effect local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is destroyed by a card effect while equipped to a monster: Look at your opponent's hand and discard 1 card from their hand.
--盗人の煙玉 --Smoke Grenade of the Thief local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c) --Check & Discard local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(id,0)) e3:SetCategory(CATEGORY_HANDES) e3:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e3:SetProperty(EFFECT_FLAG_PLA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 "Melodious" monster you control; this turn, that face-up monster you control is unaffected by your opponent's Spell/Trap effects, and it can make a second attack during each Battle Phase.
--幻奏のイリュージョン --Melodious Illusion local s,id=GetID() function s.initial_effect(c) --Targeted "Melodious" monster becomes unaffected by opponent's card effects, also can attack twice local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET)...
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 "Skull Flame" from your Graveyard. Once per turn, you can inflict 400 damage to your opponent for each "Burning Skull Head" in your Graveyard. When this card is sent from the field to the Graveyard, you can Specia...
--スピード・キング☆スカル・フレイム --Supersonic Skull Flame local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --special summon 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:SetCondition(s.s...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you have 7 "Crystal Beast" cards with different names on your field and/or in your GY: Special Summon 1 "Ultimate Crystal" monster from your Deck or GY, ignoring its Summoning conditions.
--虹の引力 --Rainbow Gravity 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:SetHintTiming(0,TIMING_END_PHASE) e1:SetCondition(s.condition) e1:SetTarget(s.target) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ "HERO" monsters This card, also any "HERO" monsters it points to, gains 100 ATK for each "HERO" monster with different names in your GY. If this card attacks a Defense Position monster, inflict piercing battle damage.
--X・HERO ドレッドバスター --Xtra HERO Dread Decimator local s,id=GetID() function s.initial_effect(c) --link summon Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_HERO),2) c:EnableReviveLimit() --atk local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetRa...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
A DARK Xyz Monster that was Summoned using this card on the field as material gains this effect. ● If it is Xyz Summoned: It gains 1000 ATK. You can banish this card from your GY; send 1 "Phantom Knights" card from your Deck to the GY. You can only use each effect of "The Phantom Knights of Ragged Gloves" once per turn...
--幻影騎士団ラギッドグローブ --The Phantom Knights of Ragged Gloves local s,id=GetID() function s.initial_effect(c) --A DARK Xyz Monster that was Summoned using this card on the field as material gains this effect: ● If it is Xyz Summoned: It gains 1000 ATK. local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TY...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is in your hand: You can reveal 1 "Gimmick Puppet" Xyz Monster in your Extra Deck; Special Summon both this card, and 1 "Gimmick Puppet" monster with the same Level as the revealed monster's Rank from your Deck. If this card is sent to the GY, except from the hand: You can add it to your hand. You can only...
--ギミック・パペット-ブラッディ・ドール --Gimmick Puppet Rouge Doll --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Special Summon both 1 "Gimmick Puppet" monster from your Deck and this card from your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMM...
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 banishing 5 or more cards from your hand, field, and/or Extra Deck, face-down. Gains 100 ATK/DEF for each face-down banished card. Cannot be Tributed, nor used as material for a Fusion, Synchro, or Xyz Summon. Once per turn, at the start of the...
--百万喰らいのグラットン --Eater of Millions local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Special Summon condition local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) c:RegisterEffec...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Equip only to a Machine monster. If the equipped monster destroys an opponent's monster by battle and sends it to the GY: Draw 1 card. Destroy this card during your 3rd End Phase after activation.
--ブレイク・ドロー --Break! Draw! local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsRace,RACE_MACHINE),nil,nil,s.target) --draw local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(id,0)) e3:SetCategory(CATEGORY_DRAW) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TY...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Pay 1000 LP; Special Summon 1 Level 6 or lower non-Effect Fusion Monster from your Extra Deck, but it cannot attack, also destroy it during the End Phase. (This is treated as a Fusion Summon.) You can only activate 1 "Ready Fusion" per turn.
--簡素融合 --Ready Fusion local s,id=GetID() function s.initial_effect(c) --Special summon local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_FUSION_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetCost(Cost.PayLP(1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If your LP is higher than your opponent's, switch your LP with your opponent.
--身分転換 --Trading Places -- 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.activate) c:RegisterEffect(e1) end function s.target(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 t...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You cannot Special Summon monsters, except Machine monsters. Once per turn: You can declare a Level from 5 to 9; all Level 5 or higher Machine monsters you control become that Level. If a Machine Xyz Monster(s) you control would be destroyed, you can send this card to the GY instead. If this card is sent from the field...
--マーシャリング・フィールド --Marshalling Field 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) --disable spsummon local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetRange(LOCATION...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
All Fiend-Type monsters you control gain 500 ATK. You can target 1 "Archfiend" monster you control; banish 1 other Fiend-Type monster you control, and if you do, Special Summon from your hand, Deck, or Graveyard, 1 "Archfiend" monster with same Level as the targeted monster. You can only use this effect of "Archfiend P...
--伏魔殿-悪魔の迷宮- --Archfiend Palabyrinth 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) --atkup local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_UPDATE_ATTAC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send 1 "Monarch" Spell/Trap from your Deck to the GY, except "The Monarchs Masterplan". If this card is banished: You can target 1 face-up monster your opponent controls; add 1 monster with the same Attribute that has 2400 ATK/1000 DEF, from your Deck or GY to your hand, then you can apply this effect. ● Immediately af...
--帝王の策略 --The Monarchs Masterplan --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Send 1 "Monarch" Spell/Trap from your Deck to the GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOGRAVE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While your opponent controls a monster, all "Rescue-ACE" monsters you control gain 500 ATK/DEF. During your Main Phase, you can Normal Summon 1 "Rescue-ACE" monster, in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) Once per turn: You can target 4 of your "Rescue-ACE" cards that are ...
--R-ACEヘッドクオーター --Rescue-ACE HQ --scripted by Naim 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) --"Rescue-ACE" monsters you control gain 500 ATK/DEF local e2=Effect.CreateEffect(c) e2...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Draw cards equal to the number of different Monster Types among the monsters you control that are Fish, Sea Serpent, or Aqua monsters, also until the end of your next turn after this card resolves, you cannot Special Summon from the Extra Deck, except WATER monsters. If a face-up WATER monster(s) you control is destroy...
--アビスチーム --Abyss-steam --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_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Special Summon this card (from your hand) to your opponent's field in Attack Position, by Tributing 1 monster they control. If your opponent controls a "Kaiju" monster, you can Special Summon this card (from your hand) in Attack Position. You can only control 1 "Kaiju" monster. When a card or effect is activate...
--壊星壊獣ジズキエル --Jizukiru, the Star Destroying Kaiju local s,id=GetID() function s.initial_effect(c) local e1,e2=aux.AddKaijuProcedure(c) --Negate local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(id,0)) e3:SetCategory(CATEGORY_DISABLE+CATEGORY_DESTROY) e3:SetType(EFFECT_TYPE_QUICK_O) e3:SetCode(EVENT_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can excavate the top 5 cards of your Deck, send any excavated Ritual Spell Cards and "Gishki" monsters to the Graveyard, also place the other cards on the bottom of your Deck in any order.
--リチュア・ノエリア --Gishki Noellia local s,id=GetID() function s.initial_effect(c) --Mill local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DECKDES) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(s.target) e1:SetOperation(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Add 1 "Crystal" Spell/Trap from your Deck to your hand.
--虹の架け橋 --Rainbow Bridge --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:SetTarget(s.target) e1:SetOperation(s.activate) c:Register...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card battles a monster, neither can be destroyed by that battle. You can only use each of the following effects of "Fiend Reflection of the Millennium" once per turn. If this card is in your hand: You can place it in your Spell & Trap Zone as a face-up Continuous Spell. If your opponent activates a card or effe...
--ミレニアム・アブソリューター --Fiend Reflection of the Millennium --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Neither monster can be destroyed by battle local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE) e1:SetRange(LOCATION_MZONE) e1:SetTargetRange...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During battle between this attacking card and a Defense Position monster whose DEF is lower than the ATK of this card, inflict the difference as Battle Damage to your opponent.
--未知ガエル --Submarine Frog local s,id=GetID() function s.initial_effect(c) --Pierce local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_PIERCE) c:RegisterEffect(e1) end
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Pay 2000 LP, then target 1 "Photon" monster in your GY; Special Summon both it and 1 "Galaxy" monster from your Deck, with the same Level, both in Defense Position, and if you do, each monster's ATK become 2000, also their effects are negated. You can only activate 1 "Galaxy Trance" per turn. You cannot Normal or Speci...
--銀河天翔 --Galaxy Trance --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_C...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card can attack all monsters your opponent controls once each. You can only use each of the following effects of "King Beast Barbaros" once per turn. ● You can Tribute monsters whose total Levels equal 8 or more; Special Summon this card from your hand. ● You can banish 1 "Barbaros" monster from your GY or face-up...
--獣神王バルバロス --King Beast Barbaros --Scripted by AlphaKretin 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_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountL...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can target 1 Level 2 or lower monster in your GY; Special Summon that target in Defense Position, but negate its effects.
--ジャンク・シンクロン --Junk Synchron local s,id=GetID() function s.initial_effect(c) --Special Summon 1 Level 2 or lower monster from your GY in Defense Position, but negate its effects local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SING...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If your opponent controls a monster with the highest ATK on the field (even if tied): Target 1 "Galaxy-Eyes" or "Cipher" Xyz Monster you control that has Xyz Material; detach all Xyz Materials from that Xyz Monster, and if you do, Special Summon 1 monster from your Extra Deck with the same name as that Xyz Monster.
--二重光波 --Double Cipher 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_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(s....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 Machine monster you control with 500 or less ATK; Special Summon up to 2 monsters from your Deck with the same name as that face-up monster.
--機械複製術 --Machine Duplication 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:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Discard 1 Winged Beast monster; return all cards in your opponent's Spell & Trap Zones to the hand. You can banish this card from your GY; reveal 1 Winged Beast monster in your hand, and if you do, reduce the Levels of monsters in your hand with that name by 1 for the rest of this turn (even after they are Summoned). Y...
--神鳥の排撃 --Simorgh Repulsion --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_TOHAND) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 3 banished monsters; shuffle all 3 into the Deck, then draw 1 card. You can only activate 1 "Pot of Acquisitiveness" per turn.
--大欲な壺 --Pot of Acquisitiveness local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control an "Adventurer Token": Special Summon up to 2 monsters from your hand and/or GY with different names (but banish them when they leave the field), then you can equip 1 Equip Spell that mentions "Adventurer Token" from your hand or GY to 1 monster you control. You can only activate 1 "Breath of Resurrectio...
--リザレクション・ブレス --Breath of Resurrection --scripted by Rundas local s,id=GetID() function s.initial_effect(c) --Special Summon monsters from hand/GY and equip 1 Equip Spell to a monster you control local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_EQ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Your opponent takes no battle damage from attacks involving this card. You can only use each of the following effects of "Primal Dragon, the Primordial" once per turn. You can banish 1 Dragon monster from your GY; this card gains ATK/DEF equal to that banished monster's ATK until the end of the next turn. If this card ...
--始原竜プライマル・ドラゴン --Primal Dragon, the Primordial --Logical Nonsense --Substitute ID local s,id=GetID() function s.initial_effect(c) --Opponent takes no battle damage involving this card local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_NO_BATTLE_DAMAGE) c:RegisterEffect(e1) --Gains A...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can return 1 face-up monster you control to the hand; Special Summon this card from your hand, but banish it when it leaves the field, also it gains 500 ATK if the returned monster was WIND on the field.
--A・ジェネクス・バードマン --Genex Ally Birdman local s,id=GetID() function s.initial_effect(c) --Special summon this card from 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_HAND) e1:SetCost(s.spcost) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, you can activate 1 of these effects. ● Target 2 face-up "Inzektor" monsters you control; equip one to the other. ● Target 1 "Inzektor" monster you control that is an Equip Card; Special Summon that target in face-up Defense Position.
--ヴァリュアブル・フォーム --Variable Form 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) c:RegisterEffect(e1) --equip or spsummon local e2=Effect.CreateEffect(c) e2:SetType(EFF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 monster on the field; send 1 "Forbidden One" monster or "Exodia" card from your hand or Deck to the Graveyard, and if you do, return that target to the hand. If this card is sent from the Spell & Trap Zone to the Graveyard: You can target 1 "Forbidden One" monster or "Exodia" card in your Graveyard; ad...
--魔神火炎砲 --Obliterate!!! 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) --Send to hand/GY local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_T...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
The equipped monster gains 700 ATK and DEF. When this card is sent from the field to the Graveyard: Return it to the top of the Deck.
--一角獣のホーン --Horn of the Unicorn 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(700) c:RegisterEffect(e2) --def up local e3=e2:Clone() e3:SetCode(EFFECT_UPDATE_DEFENSE) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a "Raidraptor" monster(s) is Special Summoned from the Extra Deck to your field (except during the Damage Step): You can add 1 "Raidraptor" Spell/Trap from your Deck to your hand, except "Raidraptor - Roost". You can target 3 of your "Raidraptor" monsters that are banished and/or in your GY; place them on the bottom...
--RR-ルースト --Raidraptor - Roost --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) c:RegisterEffect(e0) --Search 1 "Raidraptor" Spell/Trap local e1=Effect.CreateEffect(c) e1:SetDescription(aux...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Fusion Summon 1 "Ancient Gear" Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Material. If you use "Ancient Gear Golem" or "Ancient Gear Golem - Ultimate Pound" you control as Fusion Material, you can also use monsters from your Deck as material.
--古代の機械融合 --Ancient Gear Fusion local s,id=GetID() function s.initial_effect(c) --Fusion Summon 1 "Ancient Gear" Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Material local e1=Fusion.CreateSummonEff({handler=c,fusfilter=function(c) return c:IsSetCard(SET_ANCIENT_GEAR) end,extr...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be targeted by an opponent's card effects. During either player's turn, when a Trap Card is activated: You can banish 1 "Kozmo" monster from your Graveyard; negate the activation, and if you do, destroy that card. If this card is destroyed by battle or card effect and sent to the Graveyard: You can banish this c...
--Kozmo-ダークエクリプサー --Kozmo Dark Eclipser local s,id=GetID() function s.initial_effect(c) --cannot be targeted local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetValue(aux.tgoval) c:Re...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If only your opponent controls a monster, you can Special Summon this card (from your hand). Cannot be destroyed by battle, except with monsters Special Summoned from the Extra Deck. If this card attacks a Defense Position monster, inflict piercing battle damage.
--劫火の槍術士 ゴースト・ランサー --Ghost Lancer, the Underworld Spearman --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:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetRange(LOCATION_HAND) e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate this card by banishing 1 Psychic-Type monster from your Graveyard, and note its Level; all Psychic-Type monsters you control gain ATK equal to that Level x 200.
--フューチャー・グロウ --Future Glow 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:SetCost(s.cost) e1:SetOperation(s.operation) c:RegisterEffect(e1) --atk up local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TY...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot attack the turn it is Summoned. If you control "Toon World": You can Special Summon this card from your hand, then, if you control another Toon monster, you can destroy 1 Spell/Trap your opponent controls. You can only use this effect of "Toon Harpie Lady" once per turn. While you control "Toon World" and your o...
--トゥーン・ハーピィ・レディ --Toon Harpie Lady --Scripted by Hel local s,id=GetID() function s.initial_effect(c) --Cannot attack the turn it was summoned local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetOper...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Any Battle Damage you take from battles involving this card is halved.
--フォトン・サークラー --Photon Circle local s,id=GetID() function s.initial_effect(c) --Halve damage local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_CHANGE_BATTLE_DAMAGE) e1:SetValue(aux.ChangeBattleDamage(0,HALF_DAMAGE)) c:RegisterEffect(e1) end
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Place 1 A-Counter on all monsters Special Summoned to your opponent's side of the field. (If a monster with an A-Counter battles an "Alien" monster, it loses 300 ATK and DEF for each A-Counter during damage calculation only.)
--エーリアン・キッズ --Alien Kid local s,id=GetID() function s.initial_effect(c) --counter local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetRange(LOCATION_MZONE) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetOperation(s.ctop) c:RegisterEffect(e1) --atk def local e2=Effect.CreateEffe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 Xyz Monster; during the End Phase, Special Summon from your Extra Deck, 1 "Number" monster with the same Type, but 1 Rank lower, as the Tributed monster had when it was on the field.
--パージ・レイ --Purge Ray local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCost(s.cost) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) end s....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Each time an A-Counter(s) is removed from a card on the field, place 1 A-Counter on this card. If this card is destroyed: Distribute A-Counters among face-up monsters on the field, equal to the number of A-Counters this card had on the field. * The above text is unofficial and describes the card's functionality in the ...
--「A」細胞培養装置 --"A" Cell Incubator local s,id=GetID() function s.initial_effect(c) local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --counter1 local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e2:SetRange(LOCATION...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your Main Phase: You can Special Summon 1 "Salamangreat" monster from your hand or GY. You can send this face-up card from the field to the GY, then target 1 "Salamangreat" Link Monster you control that was Link Summoned using a monster with its same name as material; Special Summon "Salamangreat" monster(s) fro...
--転生炎獣の意志 --Will of the Salamangreat --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) aux.EnableCheckReincarnation(c) local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --spsummon (single) local e2=Effect.CreateEffect(c) e2:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
At the end of the Battle Phase: You can add 1 card from your GY to your hand, except "Battle Survivor", that was sent there during this Battle Phase while you controlled this face-up card. You can only use this effect of "Battle Survivor" once per turn.
--バトル・サバイバー --Battle Survivor local s,id=GetID() function s.initial_effect(c) 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:SetCode(EVENT_PHASE|PHASE_BATTLE) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ Level 8 monsters If this card is Xyz Summoned: You can destroy all other monsters on the field. You can detach 1 material from this card, then target 1 Spell/Trap on the field; destroy it, and if you do, this card gains 500 ATK. If this card is destroyed while it has material: You can Special Summon "Fire King" mons...
--炎王神 ガルドニクス・エタニティ --Garunix Eternity, Hyang of the Fire Kings --scripted by Naim local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon Procedure Xyz.AddProcedure(c,nil,8,2,nil,nil,Xyz.InfiniteMats) --Destroy all other monsters on the field local e1=Effect.CreateEffect(c) e1:SetDescri...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Level 6 or higher monsters your opponent controls cannot target this card for attacks. You can only use each of the following effects of "Destiny HERO - Decider" once per Duel. ● If this card is Normal or Special Summoned: You can add 1 "HERO" monster from your GY to your hand during the End Phase of this turn. ● When ...
--D-HERO ディシジョンガイ --Destiny HERO - Decider local s,id=GetID() function s.initial_effect(c) --cannot be battle target local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetCode(EFFECT_CANNOT_BE_BATTLE_TARGET) e1:SetRange(LOCATION_MZONE) e1:SetValue(s.atlimit...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Discard 1 card, then target 1 "Earthbound Immortal" monster and 1 Field Spell in your GY; add those targets to your hand.
--地縛神の復活 --Earthbound Immortal Revival local s,id=GetID() function s.initial_effect(c) --Add 1 "Earthbound Immortal" monster and 1 Field Spell to the hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1+ non-Tuner monsters This card can attack while in face-up Defense Position. If it does, apply its DEF for damage calculation. If a "Superheavy Samurai" monster(s) you control would be destroyed by battle or card effect, you can destroy 1 "Superheavy Samurai" card you control instead. Once per turn, if your ...
--超重天神マスラ-O --Superheavy Samurai Brave Masurawo local s,id=GetID() function s.initial_effect(c) --Must be properly summoned before reviving c:EnableReviveLimit() --Synchro Summon procedure Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) --Attack while in defense position local e1=Effect.CreateEffect(c)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Special Summoned: You can add 1 Ritual Spell or 1 "Polymerization" from your Deck to your hand. During your End Phase: You can add 1 Level 8 or higher Dragon monster from your Deck to your hand. You can banish this card from your GY; all Level 8 or higher Dragon monsters you control gain 1000 ATK. You c...
--深淵の青眼龍 --Blue-Eyes Abyss Dragon --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Search when Summoned local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(...
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) to your opponent's field in Defense Position, while an "Aesir" monster is on the field. If no "Aesir" monster is on the field, destroy this card. Once while face-up on the field, if this face-up Defense Position card you control is changed t...
--極星邪竜ヨルムンガンド --Jormungardr the Nordic Serpent local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_F...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] Once per turn, if your "Performapal" monster destroys an opponent's monster by battle: Inflict 1000 damage to your opponent. ---------------------------------------- [ Monster Effect ] If this card is Normal or Special Summoned: All "Performapal" monsters you currently control gain 200 ATK until the...
--EMゴールド・ファング --Performapal Gold Fang local s,id=GetID() function s.initial_effect(c) --pendulum summon Pendulum.AddProcedure(c) --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFFEC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3+ Cyberse monsters Negate any monster effects activated by your opponent during the Battle Phase. (Quick Effect): You can send 1 Cyberse monster from your Deck or Extra Deck to the GY, and if you do, this card gains the Attribute of that monster sent to the GY, also it gains 2500 ATK. You can only use this effect of "...
--ファイアウォール・ドラゴン・ダークフルード-ネオテンペスト --Firewall Dragon Darkfluid - Neo Tempest Terahertz --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Link Summon procedure: 3+ Cyberse monsters Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_CYBERSE),3) --Negate any monst...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 "Beetrooper" monster in your GY; Special Summon it, but it cannot attack this turn, also you lose LP equal to its original ATK. If a face-up Insect monster(s) you control is destroyed by battle or card effect: You can Special Summon 1 "Beetrooper Token" (Insect/EARTH/Level 3/ATK 1000/DEF 1000). You can...
--騎甲虫隊戦術機動 --Beetrooper Formation local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --Special Summon 1 "Beetrooper" monster in your GY local e2=Effect.CreateEffect(c) e2:SetDescription(aux...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While you control a monster equipped with "Dunnell, the Noble Arms of Light", your opponent cannot activate cards or effects during the Battle Phase. Once per turn, when your "Adventurer Token" destroys an opponent's monster by battle: You can inflict damage to your opponent equal to that destroyed monster's original A...
--暗黒神殿ザララーム --Zaralaam the Dark Palace --scripted by Rundas 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) --Prevent the opponent's cards and effects from being activated in the Battle Ph...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 monster and inflict damage to your opponent equal to half that monster's original ATK. If you activate this card, you cannot activate any other Spell Cards this turn.
--リニアキャノン --Linear Accelerator Cannon local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCost(s.cost) e1:SetTarget(s.target) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 3 EARTH monsters Once per turn: You can detach 1 Xyz Material from this card, then activate 1 of these effects. ● Send 1 Plant-Type monster from your Deck to the Graveyard. ● Target 1 Plant-Type monster in your Graveyard; Special Summon that target in face-up Defense Position.
--メリアスの木霊 --Meliae of the Trees local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_EARTH),3,2) --Activate 1 of these effects local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Normal or Special Summoned: You can Special Summon 1 "Goblin" monster from your hand, except "Goblin Biker Mean Merciless". During your Main Phase, if this card is in your GY: You can detach 1 Xyz Material from a monster on either field, and if you do, Special Summon this card, but banish it when it lea...
--百鬼羅刹 冷血ミアンダ --Goblin Biker Mean Merciless --Ashaki local s,id=GetID() function s.initial_effect(c) --Special Summon 1 "Goblin" monster from your hand 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) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When your opponent Special Summons a monster (except during the Damage Step): You can discard 1 card; Special Summon this card from your hand or Graveyard. There can only be 1 "Dragon Ice" on the field.
--ドラゴン・アイス --Dragon Ice local s,id=GetID() function s.initial_effect(c) c:SetUniqueOnField(1,1,id) --spsummon 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:SetRange(LOCATION_HAND|LOCATION_GRAVE)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
By discarding this card from your hand to the Graveyard, negate 1 battle involving a "Cyber Ogre" on your side of the field, and it gains 2000 ATK until the end of its next battle. This effect can be activated during either player's turn.
--サイバー・オーガ --Cyber Ogre local s,id=GetID() function s.initial_effect(c) --atkup local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetHintTiming(TIMING_BATTLE_PHASE) e1:SetCode(EVENT_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During this turn, when your monsters attack with an ATK that is higher than the DEF of your opponent's Defense Position monster, inflict the difference as Battle Damage to your opponent's Life Points.
--メテオ・レイン --Meteorain 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:SetCondition(s.condition) e1:SetOperation(s.activate) c:RegisterEffect(e1) end function s.condition(e,tp,eg,ep,ev,re,r,rp) return Duel...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 Level 5 monsters This Xyz Summoned card cannot be destroyed by card effects. You can detach 1 material from this card; this card gains ATK equal to the total original ATK of all other monsters on the field, then, if this card has a DARK Xyz Monster as material, negate the effects of all other face-up monsters on the ...
--アーク・リベリオン・エクシーズ・ドラゴン --Arc Rebellion Xyz Dragon --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --Xyz summon procedure Xyz.AddProcedure(c,nil,5,3) c:EnableReviveLimit() --Cannot be destroyed local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SING...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
(Quick Effect): You can banish this card; Special Summon 1 Level 2 or higher "Kozmo" monster from your hand. You can only use this effect of "Kozmo Tincan" once per turn. Once per turn, during the End Phase: You can pay 500 LP; reveal 3 "Kozmo" cards with different names from your Deck, your opponent randomly picks 1 f...
--Kozmo-フェルブラン --Kozmo Tincan local s,id=GetID() function s.initial_effect(c) --Special Summon 1 Level 2 or higher "Kozmo" monster from your 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_CHAI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a "Gagaga", "Dododo", and/or "Gogogo" monster(s) you control is destroyed by battle or card effect and sent to the Graveyard: Target 1 of those monsters; Special Summon it, then you can Special Summon up to 2 "Gagaga", "Dododo", and/or "Gogogo" monsters from your hand in Defense Position.
--ガードゴー! --Guard Go! 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:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT_TO_GRAVE) e1:SetTarget(s.sptg) e1:SetOperation...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is sent to the Graveyard, increase your Life Points by 1000 points.
--髑髏顔・天道虫 --Skull-Mark Ladybug local s,id=GetID() function s.initial_effect(c) --recover local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_RECOVER) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_TO_GRAVE)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can target 1 Level 3 or 4 WATER Fish monster in your GY; Special Summon that target in Defense Position, but negate its effects. You cannot Special Summon any monsters during the turn you activate this effect, except WATER monsters.
--ダブルフィン・シャーク --Double Fin Shark local s,id=GetID() function s.initial_effect(c) --Special Summon 1 Level 3 or 4 WATER Fish from your GY 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...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When your opponent activates a card or effect in response to the activation of your "Generaider" card or effect: You can discard 1 card; your opponent's activated effect becomes "each player draws 1 card". You can only use this effect of "Generaider Boss Room" once per turn.
--王の支配 --Generaider Boss Room --original script by andré 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) c:RegisterEffect(e1) --instant(chain) local e2=Effect.CreateEffe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Goblin" monsters you control gain 300 ATK for each "Goblin" monster you control. During your Main Phase, you can Normal Summon 1 "Goblin" monster, in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) You can target 2 "Goblin" monsters you control, then activate 1 of these effects; ● Ma...
--百鬼羅刹大集会 --Goblin Biker Grand Bash --scripted by Naim 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) --"Goblin" monsters you control gain 300 ATK for each "Goblin" monster you control l...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 8 monsters Once per turn: You can detach 1 material from this card; Tribute any number of monsters from your hand and/or field (min. 1), and if you do, destroy an equal number of cards on the field. * The above text is unofficial and describes the card's functionality in the OCG.
--聖刻神龍-エネアード --Hieratic Sun Dragon Overlord of Heliopolis local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,8,2) c:EnableReviveLimit() --destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_IGNITIO...
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 Deck) by Tributing "Red-Eyes Black Dragon" equipped with "Metalmorph".
--レッドアイズ・ブラックメタルドラゴン --Red-Eyes Black Metal Dragon local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --spsummon proc local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_DECK) e1:SetConditio...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
As long as "Umi" remains face-up on the field, this card can attack your opponent's Life Points directly.
--水陸両用バグロス MK-3 --Amphibious Bugroth MK-3 local s,id=GetID() function s.initial_effect(c) local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_DIRECT_ATTACK) e1:SetCondition(s.dircon) c:RegisterEffect(e1) end s.listed_names={CARD_UMI} function s.dircon(e) return Duel.IsEnvironment(CARD...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you have no Spell/Trap Cards in your Graveyard, you can Special Summon this card (from your hand). After this card was Special Summoned this way, you cannot Special Summon monsters for the rest of this turn, except "Superheavy Samurai" monsters. If this card is Tributed for the Tribute Summon of a "Superheavy Samura...
--超重武者ホラガ-E --Superheavy Samurai Trumpeter local s,id=GetID() function s.initial_effect(c) --special summon 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:SetCondition(s.hspcon) e1:SetValue(1) c...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When you Normal Summon a Rock-Type monster: You can Special Summon this card from your hand.
--ゴルゴニック・ガーゴイル --Gorgonic Gargoyle local s,id=GetID() function s.initial_effect(c) --summon success 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_SUMMON_SUCCESS) e1:SetRange(LOCATI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card's ATK and DEF are equal to the number of banished DARK monsters x 300. If this card is destroyed and sent to the Graveyard: Return all banished DARK monsters to the Graveyards.
--終焉の精霊 --Doomsday Horror 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_SET_ATTACK) e1:SetValue(s.value) c:RegisterEffect(e1) local e2=Effect.CreateEffect(c) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Tribute 1 "Eva Token" to Special Summon this card from your hand. While this card is in your Graveyard, each time a monster(s) your opponent controls is removed from play, Special Summon 1 "Eva Token" (Fiend-Type/DARK/Level 2/ATK 500/DEF 500).
--ゼータ・レティキュラント --Zeta Reticulant local s,id=GetID() function s.initial_effect(c) --token local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F) e1:SetRange(LOCATION_GRAVE) e1:SetCode(EVENT_RE...