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:
Destroy all face-up Fish-Type monsters on the field.
--永遠の渇水 --Eternal Drought local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) end function s.filter(c) re...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 2 "Artifact" monsters you control; immediately after this effect resolves, Xyz Summon 1 Xyz Monster using those 2 monsters only, also for the rest of this turn after this card resolves, monsters you control cannot attack, except "Artifact" monsters. If this card in your possession is destroyed by your opponent: ...
--アーティファクトの解放 --Artifacts Unleashed local s,id=GetID() function s.initial_effect(c) --Special Summon an Xyz Summon 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) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is in your hand: You can Tribute 1 Dragon-Type monster and 1 other Fiend-Type monster from your hand and/or your side of the field; Special Summon this card. Once per turn: You can discard 1 card; this card gains 500 ATK, then you can destroy 1 Spell/Trap Card on the field. This ATK increase lasts until th...
--DDD覇龍王ペンドラゴン --D/D/D Dragon King Pendragon 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:SetCost(s.spcost) e1:SetTarge...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a "Lyrilusc" monster: Negate the effects of all face-up monsters your opponent currently controls, until the end of this turn. You can only activate 1 "Lyrilusc - Bird Strike" per turn.
--LL-バード・ストライク --Lyrilusc - Bird Strike --Logical Nonsense --Substitute ID local s,id=GetID() function s.initial_effect(c) --Negate all of opponent's current monsters local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DISABLE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,i...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 Level 4 monsters While this card has Xyz Material, your opponent cannot activate cards or effects when you Normal or Special Summon a monster(s). Once per turn: You can detach 1 Xyz Material from this card, then target 1 card on the field; destroy it. If this card is sent from the field to the Graveyard: You can Spec...
--星輝士 デルタテロス --Stellarknight Delteros local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,4,3) c:EnableReviveLimit() --act limit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetRange(LOCATION_MZONE) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate by Tributing 1 face-up "Chrysalis" monster. This turn, any damage to a player caused by an effect becomes 0. Special Summon 1 "Neo-Spacian" monster written on the "Chrysalis" monster you Tributed from your hand, Deck or from either player's Graveyard.
--コクーン・ヴェール --Cocoon Veil 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:SetCode(EVENT_FREE_CHAIN) e1:SetCost(s.cost) e1:SetTarget(s.target) e1:SetOperat...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Your opponent cannot activate Quick-Play Spell Cards.
--暗黒の侵略者 --Invader of Darkness local s,id=GetID() function s.initial_effect(c) --act limit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EFFECT_CANNOT_ACTIVATE) e1:SetRange(LOCATION_MZONE) e1:SetTargetRange(0,1) e1:SetValue(s.aclimit) c:Regis...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 "Ritual Beast Ulti" monster + 1 "Ritual Beast Tamer" monster + 1 "Spiritual Beast" monster Must be Special Summoned (from your Extra Deck) by banishing the above cards you control. (You do not use "Polymerization".) If Summoned this way, this card gains this effect. ● When a Spell/Trap Card, or another monster's effe...
--聖霊獣騎 ガイアペライオ --Ritual Beast Ulti-Gaiapelio local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_RITUAL_BEAST_ULTI),aux.FilterBoolFunctionEx(Card.IsSetCard,SET_RITUAL_BEAST_TAMER),aux.FilterBoolFunctionEx(Card.IsSetCard,SET_SP...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control no other monsters: You can Tribute this card; take 2 different monsters from your Deck among "Queen's Knight", "King's Knight", and/or "Jack's Knight", and either add to your hand or Special Summon each monster. You can only use this effect of "Imperial Bower" once per turn.
--インペリアル・バウアー --Imperial Bower --Scripted by fiftyfour local s,id=GetID() function s.initial_effect(c) --Special summon 2 face card monsters from deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is activated: Both players lose 1000 LP, and if they do, each draws 1 card. All cards that are drawn while this card's effect is applied must remain revealed. While a player's Spell Card in their hand is revealed by this effect, that player cannot Normal Summon/Set monsters. You can only activate 1 "Cont...
--ドン・サウザンドの契約 --Contract with Don Thousand local s,id=GetID() function s.initial_effect(c) --When this card is activated: Both players lose 1000 LP, and if they do, each draws 1 card local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] Once per turn, if you control a "Performapal", "Magician", or "Odd-Eyes" card in your other Pendulum Zone, except "Performapal Parrotrio": You can make this card's Pendulum Scale become 7 until the end of this turn. ---------------------------------------- [ Monster Effect ] When this card is destro...
--EMインコーラス --Performapal Parrotrio local s,id=GetID() function s.initial_effect(c) Pendulum.AddProcedure(c) --scale change local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_PZONE) e1:SetCountLimit(1) e1:SetCondition(s.sccon) e1:SetTarget...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] Once per turn, when an opponent's monster declares an attack: You can add 1 "Odd-Eyes" Pendulum Monster from your GY to the Extra Deck face-up, and if you do, negate the attack, then you can gain LP equal to that Pendulum Monster's ATK. ---------------------------------------- [ Monster Effect ] If ...
--EMオッドアイズ・バトラー --Performapal Odd-Eyes Butler --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Pendulum Summon Pendulum.AddProcedure(c) --Negate attack local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOEXTRA+CATEGORY_RECOVER) e1:SetType(EFFE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can Special Summon 1 Level 4 or lower Normal Monster from your hand in Defense Position.
--魔装戦士 テライガー --Terratiger, the Empowered Warrior 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:SetTar...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can pay 500 LP; reveal 3 "Purrely" cards from your Deck, except "My Friend Purrely", and your opponent randomly picks 1 for you to add to your hand, also shuffle the rest into your Deck. If your opponent causes a face-up "Purrely" Xyz Monster(s) you control to leave the field, even during the Damage Step: You can a...
--ピュアリィ・マイフレンド --My Friend Purrely --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) --Reveal 3 "Purrely" cards and add 1 to the hand local e2=Effect.CreateEffect(c) e2:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once while face-up on the field: You can discard 1 card and declare 1 Attribute; monsters with that declared Attribute cannot target this card for attacks.
--氷結界の風水師 --Geomancer of the Ice Barrier local s,id=GetID() function s.initial_effect(c) --Make this card untargetable for attacks local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_NO_TURN_RESET) e1:SetRange(LOCATION_MZONE) e1:SetCou...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
(Quick Effect): You can discard this card; add 1 "Thunder Dragondark" from your Deck to your hand. If this card is banished, or sent from the field to the GY: You can add 1 "Thunder Dragon" card from your Deck to your hand, except "Thunder Dragondark". You can only use 1 "Thunder Dragondark" effect per turn, and only o...
--雷電龍-サンダー・ドラゴン --Thunder Dragondark --scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --Add 1 "Thunder Dragondark" from your Deck to your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(E...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 "Superheavy Samurai" monster you control; equip this card from your hand or field to that monster you control. The equipped monster is treated as a Tuner. If you have no Spells/Traps in your GY and this card was equipped to a monster by this card's effect: You can Special Summon this equipped card. You...
--超重武者装留ガイア・ブースター --Superheavy Samurai Soulgaia Booster --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Equip this card to a "Superheavy Samurai" monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_IGNITION) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Elemental HERO Neos" + 1 "Wingman" Fusion Monster Must be Fusion Summoned. Gains 300 ATK for each monster in your GY, also cannot be destroyed by card effects. If this card is Special Summoned: You can destroy cards your opponent controls up to the number of different Attributes among the monsters on the field. You ca...
--E・HERO シャイニング・ネオス・ウィングマン --Elemental HERO Shining Neos Wingman local s,id=GetID() function s.initial_effect(c) --Fusion Materials c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,CARD_NEOS,s.ffilter) --Must be Fusion Summoned local e0=Effect.CreateEffect(c) e0:SetType(EFFECT_TYPE_SINGLE) e0:SetProperty(EFFE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ monsters, including a Link Monster Must first be Link Summoned. If this card is Special Summoned: You can banish 1 Spell from your hand or GY, then target 1 monster your opponent controls with 2500 or less ATK; equip that face-up monster to this card as an Equip Spell. You can only use this effect of "Sky Striker Ac...
--閃刀姫-アザレア・テンペランス --Sky Striker Ace - Azalea Temperance --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Link Summon procedure Link.AddProcedure(c,nil,2,4,s.lcheck) --Must first be Link Summoned local e0=Effect.CreateEffect(c) e0:SetType(EFFECT_TYPE_SINGLE) e0:SetPropert...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be used as Synchro Material, except for the Synchro Summon of a "Scrap" monster, and all other materials must be "Scrap" monsters. When this card is Normal Summoned: You can target 1 "Scrap" Tuner in your GY; Special Summon that target.
--スクラップ・キマイラ --Scrap Chimera local s,id=GetID() function s.initial_effect(c) --Special Summon 1 "Scrap" Tuner monster 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(EFFEC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
The equipped monster gains 800 ATK/DEF for each face-up monster you control.
--団結の力 --United We Stand local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c) --Atk,def local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_EQUIP) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetValue(s.value) c:RegisterEffect(e2) local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_EQUIP) e3:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 "Vylon" Tuner + 1 or more non-Tuner monsters When this card is Synchro Summoned: You can target 1 Equip Spell Card in your Graveyard; equip that target to this card. While this card is equipped with an Equip Card, it cannot be destroyed by Spell/Trap effects, except for Equip Cards.
--ヴァイロン・アルファ --Vylon Alpha local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_VYLON),1,1,Synchro.NonTuner(nil),1,99) c:EnableReviveLimit() --equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate by declaring 1 monster Attribute. All face-up monsters become that Attribute.
--DNA移植手術 --DNA Transplant 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:SetHintTiming(0,TIMINGS_CHECK_MONSTER|TIMING_DRAW_PHASE) e1:SetTarget(s.target) c:RegisterEffect(e1) --race local e2=Effect.Crea...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While a "Gravekeeper's" monster(s) and "Necrovalley" are both on the field, monsters your opponent controls lose 500 ATK/DEF. Once per turn, during the Main Phase, if you control no card in your Field Zone: You can activate 1 "Necrovalley" directly from your hand or GY. If this card in your possession is destroyed by a...
--ネクロバレーの神殿 --Necrovalley Temple 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) --Decrease ATK local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_UPDATE_AT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Tribute Summoned face-up, it gains this effect. ● Neither player can activate monster effects. * The above text is unofficial and describes the card's functionality in the OCG.
--エンジェルO7 --Angel O7 local s,id=GetID() function s.initial_effect(c) --act limit 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:SetOperation(s.regop) c:RegisterEffect(e1) end function s.regop(e,t...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If your opponent Special Summons a Ritual, Fusion, Synchro, Xyz, and/or Link Monster(s) (except during the Damage Step): You can activate 1 of these effects; ● Add 1 "Fallen of Albaz", or 1 monster that mentions it, from your Deck to your hand. ● Special Summon 1 "Fallen of Albaz", or 1 monster that mentions it, from y...
--開かれし大地 --New Frontier --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) --Activate 1 of these effects local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot declare an attack unless you banish 1 card from your GY. If exactly 3 of your cards are banished: You can Special Summon this card from your hand. You can only use this effect of "D.D. Assault Carrier" once per turn.
--異次元の強襲艦 --D.D. Assault Carrier --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Attack cost local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_ATTACK_COST) e1:SetCost(s.atkcost) e1:SetOperation(s.atkop) c:RegisterEffect(e1) --Special Summon local e2=Effect....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Pendulum Summoned: You can target 1 card on the field; return it to the hand. You can only use this effect of "Aether, the Empowering Dragon" once per turn.
--魔装聖龍 イーサルウェポン --Aether, the Empowering Dragon local s,id=GetID() function s.initial_effect(c) --tohand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetProperty(EFF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If 2 or more cards are in the same column, you can Special Summon this card (from your hand) in that column. You can only Special Summon "Mekk-Knight Red Moon" once per turn this way. You can banish 1 "Mekk-Knight" monster from your GY, then target 1 face-up monster in this card's column; destroy it.
--紅蓮の機界騎士 --Mekk-Knight Red Moon --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:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_HAND) e1:SetCountL...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ Dinosaur monsters, including a Level 6 or higher monster If this card is Special Summoned: You can Special Summon 1 Dinosaur monster from your hand. If a face-up Dinosaur monster this card points to is destroyed by battle or sent to the GY: You can draw 1 card. If this card is destroyed: You can shuffle 1 Normal Mon...
--超越竜エグザラプトル --Transcendosaurus Exaraptor --scripted by Naim local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Link Summon Procedure Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DINOSAUR),2,nil,s.matcheck) --Special Summon 1 Dinosaur monster from your hand local e1=Effect.Cre...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Tribute this card, then target 1 "Springans" monster in your GY, except "Springans Pedor"; Special Summon it. If this card is in your hand, field, or GY: You can target 1 "Springans" Xyz Monster you control; attach this card to it as material. You can only use each effect of "Springans Pedor" once per turn.
--スプリガンズ・ピード --Springans Pedor --Logical Nonsense --Substitute ID local s,id=GetID() function s.initial_effect(c) --Attach itself to 1 "Sprigguns" Xyz monster from hand, field, or GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a FIRE Warrior monster, you can Special Summon this card (from your hand). If Summoned this way, treat this card as a Tuner. You can only Special Summon "Infernoble Knight - Renaud" once per turn this way. If this card is Special Summoned: You can target 1 of your FIRE Warrior monsters, or 1 of your Equi...
--焔聖騎士-リナルド --Infernoble Knight - Renaud --Scripted by AlphaKretin 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:SetCountLimit(1,i...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can reveal any number of "Nekroz" cards in your hand; increase or reduce this card's Level by the number of revealed cards until the end of this turn. If this card is Tributed by a card effect: You can add 1 "Nekroz" monster from your Deck to your hand, except a Ritual Monster. You can only use this ...
--影霊衣の巫女 エリアル --Ariel, Priestess of the Nekroz local s,id=GetID() function s.initial_effect(c) --level change local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetCost(s.lvcost) e1:SetOperation(s.lvop) c:Reg...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 monster; make your opponent Tribute 1 monster (for no effect).
--痛み分け --Share the Pain local s,id=GetID() function s.initial_effect(c) --Make the opponent tribute a monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCost(s.cost) e1:SetTarget(s.target) e1:SetOperation(s.activate) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 Level 5 LIGHT monsters You can also Xyz Summon this card by using a Rank 4 "Utopia" monster you control as material. (Transfer its materials to this card.) Cannot be used as material for an Xyz Summon. If this card battles, your opponent cannot activate cards or effects until the end of the Damage Step. Once per Chai...
--SNo.39 希望皇ホープ・ザ・ライトニング --Number S39: Utopia the Lightning local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure: 3 Level 5 LIGHT monsters OR 1 Rank 4 "Utopia" monster you control Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_LIGHT),5,3,s.ovfilter,aux....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: Special Summon 1 Level 4 or lower "Batteryman" monster from your Deck, except "Batteryman Micro-Cell". After this card has been flipped face-up, when it is destroyed by battle and sent to the Graveyard, draw 1 card.
--電池メン-ボタン型 --Batteryman Micro-Cell local s,id=GetID() function s.initial_effect(c) --flip effect local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP) e1:SetTarget(s.target) e1:SetOperation(s.operation) c:Re...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 Level 4 LIGHT monsters You can also Xyz Summon this card by using a "Number 39: Utopia" you control as material. (Transfer its materials to this card.) You can detach 1 material from this card; it gains 500 ATK until the end of this turn, and if it does, 1 monster your opponent controls loses 1000 ATK until the end o...
--CNo.39 希望皇ホープレイ --Number C39: Utopia Ray local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure: 3 Level 4 LIGHT monsters / 1 "Number 39: Utopia" Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_LIGHT),4,3,s.ovfilter,aux.Stringid(id,0)) --Make this card ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this face-up card is sent from the field to the GY: You can draw 1 card. * The above text is unofficial and describes the card's functionality in the OCG.
--引きガエル --Poison Draw Frog local s,id=GetID() function s.initial_effect(c) --draw local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_DRAW) e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e2:SetProperty(EFFECT_FLAG_DAMAGE_STEP) e2:SetRange(LOCATION_MZONE) e2:SetCod...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate by sending 2 cards from your hand to the Graveyard while your opponent has more than 3000 Life Points. Inflict 2000 damage to your opponent. If this card is in the Graveyard, you can add it to your hand instead of conducting your normal draw during your Draw Phase.
--メテオ・プロミネンス --Meteor Flare 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) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(s.damcon) e1:SetCost(s.damcost) e1:SetTarg...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Ritual Summon this card with "Meteonis Drytron". Other "Drytron" monsters you control cannot be destroyed by your opponent's card effects. Twice per turn, when your opponent activates a monster effect (Quick Effect): You can banish "Drytron" monsters (min. 1) from your GY whose total ATK equal or exceed the ori...
--竜儀巧-メテオニス=DAD --Drytron Meteonis DA Draconids --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Other "Drytron" monsters you control cannot be destroyed by your opponent's card effects local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_INDESTR...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target Spells/Traps your opponent controls, up to the number of "Witchcrafter" monsters you control; return those targeted cards to the hand. During your End Phase, if you control a "Witchcrafter" monster, while this card is in your GY: You can add this card to your hand. You can only use 1 "Witchcrafter Draping" effec...
--ウィッチクラフト・ドレーピング --Witchcrafter Draping --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --to hand local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1,id)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When using this card as Synchro Material, the other Synchro Material(s) must be Level 4 or lower Warrior or Machine-Type monsters, and they are treated as Level 1.
--モノ・シンクロン --Mono Synchron local s,id=GetID() function s.initial_effect(c) --synchro custom local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SYNCHRO_MATERIAL_CUSTOM) e1:SetOperation(s.synop) c:RegisterEffect(e1) lo...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Witch of the Black Forest" + "Lady of Faith"
--音楽家の帝王 --Musician King local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,78010363,17358176) end
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During either player's turn: You can banish this card; Special Summon 1 Level 3 or higher "Kozmo" monster from your hand. You can only use this effect of "Kozmo Strawman" once per turn. Once per turn: You can pay 500 LP, then target 1 of your banished "Kozmo" monsters; Special Summon it, but its effects are negated, al...
--Kozmo-フォルミート --Kozmo Strawman 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_QUICK_O) e1:SetCode(EVENT_FREE_CHAIN) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1,id)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 10 monsters Once per turn: You can detach 1 material from this card; inflict 2000 damage to your opponent.
--超弩級砲塔列車グスタフ・マックス --Superdreadnought Rail Cannon Gustav Max local s,id=GetID() function s.initial_effect(c) --Xyz Summon Xyz.AddProcedure(c,nil,10,2) c:EnableReviveLimit() --Burn for 2000 LP local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DAMAGE) e1:SetProperty(EFF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 face-up monster you control; it gains 200 ATK/DEF for each card your opponent currently has in their hand, until the end of this turn.
--エナジー・ドレイン --Energy Drain local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(TIMING_DAMAGE_STE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 "Blue-Eyes" monster you control; this turn, that face-up monster is unaffected by card effects, except its own, it cannot be destroyed by battle, also any opponent's monster it battles is destroyed at the end of the Damage Step. While this card is in your GY, if you Normal or Special Summon a "Blue-Eyes White ...
--強靭!無敵!最強! --The Ultimate Creature of Destruction local s,id=GetID() function s.initial_effect(c) --Apply various lingering effects to your "Blue-Eyes White Dragon" local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
After damage calculation: Destroy any opponent's monster that battles this card.
--紋章獣バシリスク --Heraldic Beast Basilisk 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_F) e1:SetCode(EVENT_BATTLED) e1:SetCondition(s.condition) e1:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If it is not the first turn of the Duel and there are no cards on the field, you can Normal Summon this card without Tributing. You can destroy all Field Spell Cards on the field. This card cannot attack the turn you activate this effect.
--グラヴィティ・ベヒモス --Gravity Behemoth local s,id=GetID() function s.initial_effect(c) --Normal summon it with no tributes local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SUMMON_PROC) e1:SetCondition(s.ntcon) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
The equipped monster cannot attack. Once per turn, during your Standby Phase: Inflict 500 damage to the controller of the equipped monster.
--呪魂の仮面 --Mask of the Accursed local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c) --The equipped monster cannot attack local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_EQUIP) e1:SetCode(EFFECT_CANNOT_ATTACK) c:RegisterEffect(e1) --Inflict 500 damage to the controller of the equipped m...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Special Summoned: You can add 1 "Dinowrestler" monster or 1 "World Dino Wrestling" from your Deck to your hand. During the End Phase, if this card is in the GY because it was sent there this turn, and your opponent controls more monsters than you do: You can target 1 "Dinowrestler" monster in your GY, e...
--ダイナレスラー・システゴ --Dinowrestler Systegosaur --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Add 1 "Dinowrestler" monster or 1 "World Dino Wrestling" from your Deck to your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a Spellcaster-Type monster: You can reveal 1 other "Spellbook" card in your hand, then target 1 "Spellbook" Normal Spell Card in your Graveyard, except "Spellbook of the Master"; this card's effect becomes that target's effect. You can only activate 1 "Spellbook of the Master" per turn.
--セフェルの魔導書 --Spellbook of the Master local s,id=GetID() function s.initial_effect(c) --copy a "Spellbook" Spell local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetCondition(s.condition) e1:SetCost(s.cost) e1:SetTarget...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a Spell/Trap Card, or monster effect, is activated, while you control an "Eldlich" monster: Tribute 1 Zombie monster; negate the activation, and if you do, destroy that card. You can only activate 1 "Golden Land Forever!" per turn.
--永久に輝けし黄金郷 --Golden Land Forever! --Scripted by ahtelel local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_CHAINING) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetCond...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When your opponent would Normal or Special Summon a monster: Discard 1 "Watt" monster; negate the Summon and destroy it.
--エレキャンセル --Wattcancel local s,id=GetID() function s.initial_effect(c) --Activate(summon) local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DISABLE_SUMMON+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_SUMMON) e1:SetCondition(s.condition) e1:SetCost(s.cost) e1:SetTarget(s.target) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your Standby Phase, select 1 random card from your opponent's hand. Call the type of card (Monster, Spell, or Trap). If you call it right, inflict 700 points of damage to your opponent's Life Points. You can use this effect only once per turn.
--不吉な占い --Ominous Fortunetelling 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:SetHintTiming(0,TIMING_END_PHASE) c:RegisterEffect(e1) --call & damage local e2=Effect.CreateEffect(c) e2:SetDescription(a...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Chain this card to an opponent's card effect that would inflict damage to you. That damage is negated, and you gain Life Points equal to the amount you would have taken.
--エネルギー吸収板 --Energy-Absorbing Monolith local s,id=GetID() function s.initial_effect(c) --reflect local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_CHAINING) e1:SetCondition(s.condition) e1:SetOperation(s.operation) c:RegisterEffect(e1) end function s.condition(e,tp,eg,ep,ev,re,r,r...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can target 1 Level 4 LIGHT Thunder-Type monster with 1600 or less ATK in your Graveyard, except "Sishunder"; banish that target. During the End Phase of this turn, add that card to your hand.
--ONeサンダー --Sishunder 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_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card's name becomes "Armed Dragon LV3" while on the field or in the GY. You can only use each of the following effects of "Armed Dragon Thunder LV3" once per turn. You can send 1 monster from your hand to the GY; send this card from the field to the GY, and if you do, Special Summon 1 Level 5 or lower "Armed Drago...
--アームド・ドラゴン・サンダー LV3 --Armed Dragon Thunder LV3 --Scripted by AlphaKretin Duel.LoadCardScript("c980973.lua") local s,id=GetID() function s.initial_effect(c) --This card's name becomes "Armed Dragon LV3" while on the field or in the GY local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 5 monsters Cannot attack unless it has material. Once per turn: You can detach 1 material from this card, then target 1 monster on the field; destroy it. This is a Quick Effect if this card has "Super Quantum Red Layer" as material. Once per turn: You can attach 1 "Super Quantum" monster from your hand or field...
--超量機獣マグナライガー --Super Quantal Mech Beast Magnaliger local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure: 2 Level 5 monsters Xyz.AddProcedure(c,nil,5,2) --Cannot attack unless it has Xyz Material local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card inflicts battle damage to your opponent, at the end of that Damage Step: Destroy the 1 face-up monster on the field that has the lowest ATK (your choice, if tied), and if you do, this card loses 800 ATK.
--ズバババスター --Zubaba Buster local s,id=GetID() function s.initial_effect(c) --destroy local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e1:SetCode(EVENT_BATTLE_DAMAGE) e1:SetOperation(s.damop) c:RegisterEffect(e1) local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(i...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 3 Rock-Type monsters This card is unaffected by other monsters' effects. Once per turn, during either player's turn: You can detach 1 Xyz Material from this card; it gains 1000 DEF until the end of this turn, and if it does, you take no effect damage from your opponent's card effects this turn.
--鋼鉄の巨兵 --Giant Soldier of Steel local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_ROCK),3,2) c:EnableReviveLimit() --immune local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_IMMUNE_EFFECT) e1:SetProperty(EFFE...
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 face-up monster your opponent controls; negate its effects. When your opponent activates a card or effect (Quick Effect): You can shuffle this card from the field into the Deck, and if you do, Special Summon 1 "Blue-Eyes White Dragon" from your Deck. You can ...
--ブルーアイズ・ソリッド・ドラゴン --Blue-Eyes Solid Dragon local s,id=GetID() function s.initial_effect(c) --negate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DISABLE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetProperty(EFFECT_F...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Normal Summoned/Set. Must be Special Summoned with "Release Restraint". Each time an Equip Card(s) is equipped to this card: Target 1 monster your opponent controls; destroy that target.
--剣聖-ネイキッド・ギア・フリード --Gearfried the Swordmaster local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() c:AddMustBeSpecialSummoned() --Destroy 1 monster your opponent controls local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYP...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Special Summon 1 "Infernoid" monster from your hand, ignoring its Summoning conditions, but its effects are negated until the end of this turn.
--蒼焔の煉獄 --Eye of the Void 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:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) end s.listed_series={...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, you can equip this card to a "Soitsu" you control, OR unequip it to Special Summon this card in face-up Attack Position. When equipped to a monster by this card's effect, that monster gains 2500 ATK. (A monster can only be equipped with 1 Union Monster at a time. If the equipped monster would be destroye...
--ドイツ --Doitsu local s,id=GetID() function s.initial_effect(c) aux.AddUnionProcedure(c,aux.FilterBoolFunction(Card.IsCode,60246171),true) --atk up local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_EQUIP) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetValue(2500) e1:SetCondition(aux.IsUnionState) c:RegisterEffect(e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can only activate this card when your Life Points are at least 2000 lower than your opponent's. Skip your opponent's next Battle Phase.
--魂の氷結 --Frozen Soul 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:SetHintTiming(0,TIMING_MAIN_END) e1:SetCondition(s.condition) e1:SetOperation(s.activate) c:RegisterEffect(e1) end function s.condition...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send "Gimmick Puppet" monsters with different names from your Deck to the GY, up to the number of monsters your opponent controls that were Special Summoned from the Extra Deck +1. You can banish this card from your GY, then target 1 Machine Xyz Monster you control; it cannot be destroyed by your opponent's card effect...
--コンドーレンス・パペット --Condolence Puppet --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Send "Gimmick Puppet" monsters from deck to GY local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOGRAVE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id) e1:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is activated: You can add 1 Level 4 or lower Beast-Warrior monster from your Deck to your hand. All Beast-Warrior monsters you control gain 100 ATK. You can only activate 1 "Fire Formation - Tenki" per turn.
--炎舞-「天璣」 --Fire Formation - Tenki local s,id=GetID() function s.initial_effect(c) 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:SetOperation(s.activate) c:RegisterEffe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
● Attack Position: Once per turn: You can target 1 "Morphtronic" monster in your GY; banish that target, and if you do, add 1 "Morphtronic" monster with the same Level as the target from your Deck to your hand. ● Defense Position: Once per turn: You can send 1 "Morphtronic" monster from your hand to the GY, and if you ...
--D・リモコン --Morphtronic Remoten local s,id=GetID() function s.initial_effect(c) --search local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_REMOVE+CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can only use the 1st of the following effects of "Therion "Duke" Yul" once per turn. ● You can target 1 "Therion" monster or 1 Psychic monster in your GY; Special Summon this card from your hand, and if you do, equip that monster to this card. ● While you control an Equip Card, "Therion" monsters you control cannot...
--セリオンズ“デューク”ユール --Therion "Duke" Yul --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Special Summon self local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can activate this card the turn it was Set, by banishing 1 face-up "Maliss" monster you control. Special Summon 1 "Maliss" monster from your Deck, or if your opponent controls 3 or more cards, you can Special Summon 1 "Maliss" Link Monster from your Extra Deck instead. For the rest of this turn, that Summoned monst...
--M∀LICE<C>TB-11 --Maliss <C> TB-11 --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Special Summon 1 "Maliss" monster from your Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVEN...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When an opponent's monster declares an attack: Target the attacking monster; negate the attack, and 1 face-up LIGHT monster you control gains ATK equal to that target's ATK, until your next End Phase.
--光子化 --Lumenize local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetCondition(s.condition) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card on the field is destroyed and sent to the GY: For the rest of this turn, you take no battle damage.
--ハネクリボー --Winged Kuriboh local s,id=GetID() function s.initial_effect(c) local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_TO_GRAVE) e1:SetCondition(s.con) e1:SetOperation(s.op) c:RegisterEffect(e1) end function s.con(e,tp...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ FIRE Effect Monsters If this card is Link Summoned using "Salamangreat Raging Phoenix" as material: You can add 1 "Salamangreat" card from your Deck to your hand. If a face-up FIRE monster(s) you control is destroyed by battle or card effect while this card is in your GY: You can target 1 of those monsters; Special ...
--転生炎獣レイジング・フェニックス --Salamangreat Raging Phoenix --Scripted by Satella local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() aux.EnableCheckReincarnation(c) --Link Summon procedure Link.AddProcedure(c,s.matfilter,2) --Add 1 "Salamangreat" card from your Deck to your hand local e1=Effect.CreateEffe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 "Red-Eyes" monster you control; equip this card to it. It can make up to 2 attacks on monsters during each Battle Phase. You can send this Equip Card to the GY, then target 1 Effect Monster on the field; equip that target to the monster this card was equipped to, and if you do, while a monster is equipped to i...
--鎖付き真紅眼牙 --Red-Eyes Fang with Chain local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCost(aux.RemainFieldCost) e1:SetTarget(s.targ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a monster(s) with 1000 or less ATK is Summoned: Banish that monster(s) with 1000 or less ATK, then your opponent banishes all cards with the same name as that card(s) from their hand and Deck.
--連鎖除外 --Chain Disappearance local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_REMOVE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) local e2=e1:Clone() ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a monster that is not a "Burning Abyss" monster, destroy this card. You can only use 1 of these effects of "Cir, Malebranche of the Burning Abyss" per turn, and only once that turn. ● If you control no Spell/Trap Cards: You can Special Summon this card from your hand. ● If this card is sent to the Gravey...
--彼岸の悪鬼 ガトルホッグ --Cir, Malebranche of the Burning Abyss local s,id=GetID() function s.initial_effect(c) --self destroy local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_SELF_DESTROY) e1:SetCondition(s.sdcon) c:Reg...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Rock monster in your GY + 1 Level 7 or higher monster Must first be Special Summoned with "Fossil Fusion". While you control this Fusion Summoned card, all monsters your opponent controls lose ATK equal to their original DEF. This card can make up to 3 attacks on monsters during each Battle Phase. When this card dest...
--古生代化石マシン スカルコンボイ --Fossil Machine Skull Convoy --Logical Nonsense --Substitute ID local s,id=GetID() function s.initial_effect(c) --Susion summon procedure Fusion.AddProcMix(c,true,true,s.ffilter,aux.FilterBoolFunctionEx(Card.IsLevelAbove,7)) --Must be properly summoned before reviving c:EnableReviveLimit() --Cl...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send 1 card from your hand to the GY; add 1 Level 4 or lower Cyberse monster from your Deck to your hand. You can only activate 1 "Cynet Mining" per turn.
--サイバネット・マイニング --Cynet Mining --scripted by Larry126 --Substitute ID 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...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Destroy all tokens on the field. Increase your Life Points by the number of tokens destroyed x 800 points.
--トークン収穫祭 --Token Thanksgiving local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_RECOVER) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) end fu...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Select 1 face-up "Naturia" monster you control. Its ATK becomes 3000, and its effects are negated, until the End Phase.
--ガオドレイクのタテガミ --Leodrake's Mane local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DISABLE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperat...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a card(s) is banished from the hand and/or field to activate a monster effect (except during the Damage Step): You can apply 1 of the following effects based on 1 of the card types banished. ● Monster: Negate the effects of 1 face-up Spell/Trap on the field until the end of this turn. ● Spell: Draw 2 cards. ● Trap: ...
--断影烈破 --Shadow Severing Strike --scripted by Naim 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) --Apply 1 of the following effects based on 1 of the card types banished local e1=Effect...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, you can select 1 face-up Tuner monster on the field. The selected monster's name is treated as "Genex Controller" until the End Phase.
--A・ジェネクス・リモート --Genex Ally Remote local s,id=GetID() function s.initial_effect(c) --cos local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetTarget(s.costg) e1:SetOpe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 Synchro Monster your opponent controls; Special Summon 1 Synchro Monster that is 1 Level higher than it from your Extra Deck, but it cannot activate its effects this turn. You can only activate 1 "Synchro Transcend" per turn.
--シンクロ・トランセンド --Synchro Transcend --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --Special summon 1 synchro monster from extra deck local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetProperty(EFFECT...
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) by Tributing 1 "Flower Cardian" monster, except "Flower Cardian Peony with Butterfly". If this card is Special Summoned: Draw 1 card, and if you do, show it, then, if it is a "Flower Cardian" monster, look at the top 3 cards of your opponent...
--花札衛-牡丹に蝶- --Flower Cardian Peony with Butterfly local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Must first be Special Summoned (from your hand) by Tributing 1 "Flower Cardian" monster, except "Flower Cardian Peony with Butterfly" local e0=Effect.CreateEffect(c) e0:SetDescription(aux.String...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Turn the top card of your opponent's Deck face-up, then your opponent shuffles their Deck. When your opponent draws the face-up card, immediately send it to the Graveyard.
--墓場からの誘い --Grave Lure local s,id=GetID() function s.initial_effect(c) Duel.EnableGlobalFlag(GLOBALFLAG_DECK_REVERSE_CHECK) --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:SetOperat...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Ritual Summon this card with any "Gishki" Ritual Spell Card. Once per turn: You can discard 1 "Gishki" monster to target 1 face-up card your opponent controls; shuffle that target into the Deck.
--イビリチュア・ソウルオーガ --Evigishki Soul Ogre local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --return to deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TODECK) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You cannot Summon the turn you activate this card. Activate at the end of the Damage Step, if a Spellcaster-Type monster you control attacked and destroyed an opponent's monster by battle. That monster can attack again (immediately).
--未来王の予言 --Enlightenment local s,id=GetID() function s.initial_effect(c) --chain attack local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_BATTLE_DESTROYING) e1:SetCondition(s.condition) e1:SetCost(s.cost) e1:SetOperation(s.operation) c:RegisterEffect(e1) end function s.condition(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
At the end of the Damage Step, if this card battled a Warrior or Spellcaster monster: Destroy that monster.
--龍骨鬼 --Ryu Kokki 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_F) e1:SetCode(EVENT_DAMAGE_STEP_END) e1:SetCondition(s.descon) e1:SetTarget(s.destg...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 Level 5 or higher monsters Cannot be used as Link Material. This Link Summoned card is unaffected by other monsters' effects. You can only use each of the following effects of "World Gears of Theurlogical Demiurgy" once per turn. ● During your Main Phase, if you control this card that was Link Summoned using 3 monste...
--星神器デミウルギア --World Gears of Theurlogical Demiurgy --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Link.AddProcedure(c,aux.FilterBoolFunction(Card.IsLevelAbove,5),3,3) --cannot link material local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetPropert...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send 1 "Therion" card, except "Therion Charge", or 1 "Endless Engine Argyro System" from your hand or your face-up Spell & Trap Zone to the GY; draw 2 cards. You can only activate 1 "Therion Charge" per turn.
--セリオンズ・チャージ --Therion Charge --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) 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:
1 Zombie-Type Tuner + 1 or more non-Tuner Zombie-Type monsters Once per turn, during either player's turn: You can target 1 of your banished Zombie-Type monsters; shuffle it into the Deck, and if you do, change to Defense Position all monsters your opponent controls with ATK less than or equal to that monster's. If thi...
--刀神-不知火 --Shiranui Samuraisaga local s,id=GetID() function s.initial_effect(c) c:SetSPSummonOnce(id) --synchro summon Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_ZOMBIE),1,1,Synchro.NonTunerEx(Card.IsRace,RACE_ZOMBIE),1,99) c:EnableReviveLimit() --pos local e1=Effect.CreateEffect(c) e1:SetD...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a monster(s) is Special Summoned from the Extra Deck (except during the Damage Step): You can Tribute this card; send that monster(s) to the GY. You can only use each of the following effects of "World Legacy - "World Chalice"" once per turn. ● If this face-up Normal Summoned/Set card leaves the field: You can Speci...
--星遺物-『星杯』 --World Legacy - "World Chalice" local s,id=GetID() function s.initial_effect(c) --send to grave local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOGRAVE) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetProperty(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Special Summon 1 "Nemleria" monster or 1 Level 10 Beast monster from your hand or Deck in Defense Position, but return it to the hand during the End Phase. You can banish this card from your GY, then target 1 face-up monster your opponent controls; it loses 100 ATK/DEF for each of your currently face-down banished card...
--ネムレリア・ルーヴ --Nemleria Louve --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Special Summon 1 "Nemleria" monster or 1 Level 10 Beast from your hand or Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIV...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Take 1 "Amazoness" card from your Deck, except "Amazoness Call", and either add it to your hand or send it to the GY. During your Main Phase: You can banish this card from your GY, then target 1 "Amazoness" monster you control; this turn, that monster can attack all monsters your opponent controls, once each, also othe...
--アマゾネスの叫声 --Amazoness Call 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:SetHintTiming(0,TIMING_END_PHASE) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 "Number" Xyz Monsters with the same name and Rank Once per turn: You can detach 1 material from this card; this card gains ATK equal to the combined Ranks of all Xyz Monsters currently on the field x 1000, until the end of your opponent's turn. When this card is destroyed by card effect: You can destroy as many monst...
--No.100 ヌメロン・ドラゴン --Number 100: Numeron Dragon local s,id=GetID() function s.initial_effect(c) --Xyz Summon Xyz.AddProcedure(c,s.xyzfilter,nil,2,nil,nil,nil,nil,false,s.xyzcheck) c:EnableReviveLimit() --Gains ATK equal to the combined Ranks of all Xyz monsters on the field x 1000 local e1=Effect.CreateEffect(c) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When an Xyz Monster you control is destroyed by battle: Pay 1000 Life Points; you reveal 1 Xyz Monster from the Extra Deck with a Rank less than or equal to that destroyed monster's, and so can your opponent (simultaneously). The player who revealed the monster with lower ATK takes damage equal to the difference betwee...
--エクシーズ熱戦!! --Xyz Xtreme !! 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:SetCode(EVENT_BATTLE_DESTROYED) e1:SetCondition(s.condition) e1:SetCost(Cost.PayLP(1000)) e1:SetTarget(s.target) e1:SetOpera...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate 1 of the following effects. For the rest of this turn after this card resolves, you cannot Special Summon monsters, except WATER monsters. ● Target 1 non-Link "Marincess" monster in your GY; Special Summon it. ● If "Marincess Battle Ocean" is in your Field Zone: Special Summon 1 "Marincess" monster from your D...
--海晶乙女の潜逅 --Marincess Dive --Scripted by Neo Yuno 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:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetTarget(s.target) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: Your opponent cannot Special Summon for the rest of this turn.
--ガード・ドッグ --Guard Dog local s,id=GetID() function s.initial_effect(c) --flip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP) e1:SetOperation(s.operation) c:RegisterEffect(e1) end function s.operation(e,tp,eg,ep,ev,re,r,rp) local e1=Effect.Crea...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control 2 or more "Lightsworn" monsters with the same Type but different names: Banish 2 "Lightsworn" monsters from your GY, then target 2 cards on the field; banish them. If this card is sent from the Deck to the GY by a "Lightsworn" monster's effect: You can Special Summon 1 "Lightsworn" monster from your hand...
--トワイライト・イレイザー --Twilight Eraser local s,id=GetID() function s.initial_effect(c) --activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_REMOVE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER_E) e1:SetCond...