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:
1 Tuner + 1+ non-Tuner monsters You can only control 1 "Oboro-Guruma, the Wheeled Mayakashi". You can only use each of these effects of "Oboro-Guruma, the Wheeled Mayakashi" once per turn. ● If a Synchro Monster in your possession whose original Level is 5 is destroyed by battle or an opponent's card effect while this ...
--轍の魔妖-朧車 --Oboro-Guruma, the Wheeled Mayakashi local s,id=GetID() function s.initial_effect(c) c:SetUniqueOnField(1,0,id) --synchro summon Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) c:EnableReviveLimit() --mill local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: You can target 1 Level 4 or lower Spellcaster monster in your GY; Special Summon that target.
--マジカル・アンダーテイカー --Magical Undertaker local s,id=GetID() function s.initial_effect(c) --flip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a monster you control declares an attack: Until the End Phase, that monster gains 700 ATK, also, if it attacks a Defense Position monster, inflict piercing battle damage to your opponent.
--ストライク・ショット --Strike Slash 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:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) end function s...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card can only be Ritual Summoned with the Ritual Spell Card, "Ritual of Destruction". When this card is Ritual Summoned, destroy all other face-up monsters on the field with DEF less than or equal to this card's ATK. This card gains 100 ATK for each monster destroyed by this effect.
--破滅の魔王ガーランドルフ --Garlandolf, King of Destruction local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --destroy local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetCode(EVENT_SPSUMMON_SU...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 face-up monster your opponent controls that has a Level; Tribute it, and if you do, Special Summon 1 "Vendread Token" (Zombie/DARK/ATK 0/DEF 0) with a Level equal to the Tributed monster's original Level. While the Token Special Summoned by this effect is on the field, you cannot Normal or Special Summon monst...
--ヴェンデット・リボーン --Vendread Reorigin local s,id=GetID() function s.initial_effect(c) --activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetTarget(s.target) e1:SetO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Each time card(s) are discarded from your hand to the Graveyard by the effect of a card controlled by your opponent, increase your Life Points by 1000 points.
--ナイルの恵み --Blessings of the Nile 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) --recover local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetType(EFFECT_TYPE_F...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 monsters, including a WIND monster (This card is always treated as a "Familiar-Possessed" card.) You can target 1 WIND monster in your opponent's GY; Special Summon it to your zone this card points to. If this Link Summoned card is destroyed by battle, or is destroyed by an opponent's card effect while in its owner's...
--蒼翠の風霊使いウィン --Wynn the Wind Charmer, Verdant --Scripted by ahtelel local s,id=GetID() function s.initial_effect(c) --Link summon Link.AddProcedure(c,nil,2,2,s.lcheck) c:EnableReviveLimit() --Special Summon local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_SPECIAL_SUMM...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If "Obsidim, the Ashened City" is in the Field Zone, you can Special Summon this card (from your hand). You can only Special Summon "Hero of the Ashened City" once per turn this way. During the Main Phase (Quick Effect): You can target 1 Pyro monster on the field; destroy it, then if you destroyed "Veidos the Eruption ...
--灰滅せし都の英雄 --Hero of the Ashened City --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Special Summon this card (from your hand) local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control an "Adventurer Token": You can Special Summon this card from your hand. You can banish this card from your hand or GY; add 1 "Rite of Aramesir" from your Deck or GY to your hand. If you control an "Adventurer Token": You can place 1 Field Spell that mentions "Adventurer Token" from your Deck face-up in y...
--聖殿の水遣い --Water Enchantress of the Temple --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Special Summon itself from the hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 Defense Position monster on the field; destroy that target.
--シールドクラッシュ --Shield Crush 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:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:Regis...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Level 4 or lower "Marincess" monster If this card is Link Summoned: You can add 1 "Marincess" Spell from your Deck to your hand. You can only Link Summon "Marincess Sea Angel" once per turn.
--海晶乙女シーエンジェル --Marincess Sea Angel local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Link.AddProcedure(c,s.mfilter,1,1) --splimit local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e1:SetCode(EVENT_SPSUMMON_SUCCESS)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Tribute Summoned: Roll a six-sided die, and this card gains ATK equal to the result x 200.
--マキシマム・シックス --Maximum Six local s,id=GetID() function s.initial_effect(c) --dice local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DICE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetCondition(s.condition) e1:SetTarget(s....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 Level 8 monsters You can detach 1 material from this card; draw 1 card and reveal it, then if it was a monster, inflict 800 damage to your opponent. You cannot conduct your Battle Phase the turn you activate this effect. You can only use this effect of "Coach King Giantrainer" up to thrice per turn.
--熱血指導王ジャイアントレーナー --Coach King Giantrainer local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure: 3 Level 8 monsters Xyz.AddProcedure(c,nil,8,3) --Draw 1 card and reveal it, then if it was a monster, inflict 800 damage to your opponent local e1=Effect.CreateEffect(c) e1:SetD...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Effect Monsters, including an "Orcust" monster This linked card cannot be destroyed by battle. You can target 1 of your banished Machine monsters; shuffle it into the Deck, then you can Set 1 "Orcust" Spell/Trap directly from your Deck. You can only use this effect of "Galatea, the Orcust Automaton" once per turn.
--オルフェゴール・ガラテア --Galatea, the Orcust Automaton local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2,nil,s.matcheck) --Cannot be destroyed by battle while it is linked local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SING...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Change as many monsters on the field as possible to face-down Defense Position, then, if either player controls a face-up monster(s), they must send all face-up monsters they control to the GY.
--魔砲戦機ダルマ・カルマ --Destructive Daruma Karma Cannon --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_POSITION+CATEGORY_TOGRAVE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 "Destiny HERO" monster + 1 DARK Effect Monster (Quick Effect): You can discard 1 card; send 1 "Destiny HERO" monster from your hand or Deck to the GY, and if you do, "Destiny HERO" monsters you control gain 200 ATK for each "Destiny HERO" monster in your GY until the end of this turn. You can only use this effect of ...
--D-HERO デッドリーガイ --Destiny HERO - Dangerous local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_DESTINY_HERO),s.ffilter) --atk local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1 or more non-Tuner monsters Once per turn, during your opponent's Standby Phase: You can inflict 300 damage to your opponent for each card your opponent controls. Each time your opponent Sets a Spell or Trap Card(s): Inflict 300 damage to your opponent.
--ブラッド・メフィスト --Blood Mefist local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) c:EnableReviveLimit() --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_FIEL...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
(This card is always treated as a "Barian's" card.) "Number" monsters you control with a number between "101" and "107" in their name, as well as "CXyz" monsters and "Number C" monsters you control, cannot be destroyed by your opponent's card effects, and your opponent cannot target them with card effects. Once per tur...
--冀望郷-バリアン- --Barian Untopia --Scripted by The Razgriz 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) --"Number" monsters between "101" and "107", "CXyz" monsters, and "Number C" monsters...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a face-up non-Effect Monster is on the field: You can Special Summon this card from your hand. During your Main Phase, if you Synchro Summoned this turn: You can banish this card from your GY; Special Summon 1 "Hundred Apples Token" (Wyrm/LIGHT/Level 2/ATK 100/DEF 100). The player who Summoned it can treat it as a T...
--百檎龍-リンゴヴルム --Ringowurm, the Dragon Guarding the Hundred Apples --Scripted by Larry126 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_IGNITION) e1:SetRa...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, you can discard 1 card to add 1 "Iron Core of Koa'ki Meiru" from your Deck to your hand.
--コア転送ユニット --Core Transport Unit local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --search local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_T...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Gains 100 ATK for each monster in your GY.
--シャドウ・グール --Shadow Ghoul local s,id=GetID() function s.initial_effect(c) local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetValue(s.value) c:RegisterEffect(e1) end function s.value(e,c) retur...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Choose 3 "Flower Cardian" monsters with different names from your Deck, and place them on top of your Deck in any order. During your Main Phase, except the turn this card was sent to the Graveyard: You can banish this card from your Graveyard, then target 1 "Flower Cardian" monster in your Graveyard; add it to your han...
--花積み --Flower Stacking local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) --add to hand local e2=...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Special Summon this card (from your hand) by banishing 1 LIGHT Dragon-Type monster and 1 Dragon-Type Normal Monster from your Graveyard. If this face-up card on the field would be destroyed, you can Tribute 1 face-up "Hieratic" monster instead, except this card.
--聖刻龍-ウシルドラゴン --Hieratic Dragon of Asar local s,id=GetID() function s.initial_effect(c) --spsummon from hand local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_FIELD) e1:SetRange(LOCATION_HAND) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetCondition(s.hspcon) e1:SetTarget(s.h...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Neither player can target "Exosister" monsters you control with effects of monsters that were Special Summoned from the GY. You can only use each of the following effects of "Exosister Carpedivem" once per turn. If you Xyz Summon an "Exosister" monster: You can declare 1 card name; negate the activated effects and effe...
--エクソシスター・カルペディベル --Exosister Carpedivem --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --Cannot be target local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYP...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card inflicts battle damage to your opponent: Special Summon 1 "Mecha Phantom Beast Token" (Machine-Type/WIND/Level 3/ATK 0/DEF 0). This card's Level is increased by the total Levels of all "Mecha Phantom Beast Tokens" you control. While you control a Token, this card cannot be destroyed by battle or card eff...
--幻獣機レイステイルス --Mecha Phantom Beast Stealthray local s,id=GetID() function s.initial_effect(c) --Gains the levels of all "Mecha Phantom Beast Token" local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_UPDATE_LEVEL) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ Effect Monsters This card's name becomes "Decode Talker" while on the field. Gains 500 ATK for each monster it points to. During your Battle Phase, if a monster this card points to is destroyed by battle or sent to the GY: You can activate this effect; this card can make a second attack during each Battle Phase this...
--デコード・トーカー・エクステンド --Decode Talker Extended --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --Must be properly summoned before reviving c:EnableReviveLimit() --Link summon procedure Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2) --Name becomes "Decode Talker" whi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can target 1 "Attraction" Trap in your GY and 1 face-up monster your opponent controls; equip that Trap to your opponent's monster. (Quick Effect): You can target 1 of your "Attraction" Traps equipped to a monster; equip it to 1 "Amazement" monster you control or 1 face-up monster...
--驚楽園の大使 <Bufo> --Amazement Ambassador Bufo --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --equip local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a monster(s) is Special Summoned while this card is face-up on the field: Change that monster(s) to face-up Attack Position, also it must attack this turn, if able. * The above text is unofficial and describes the card's functionality in the OCG.
--召喚制限-猛突するモンスター --All-Out Attacks 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) --pos local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_PO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Until the end of this turn, all Normal Summoned/Set "Qli" monsters currently on the field gain 300 ATK, but are unaffected by other Spell/Trap effects, also their effects are negated.
--起動する機殻 --Qlipper Launch local s,id=GetID() function s.initial_effect(c) --All your normal summoned/set "Qli" monsters gain 300 ATK, have their effects negate, and unaffected by spells/traps local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetHintTiming(TIMING...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your Battle Phase, this card cannot be destroyed by battle, also you take no damage from battles involving this card. If this card attacks a monster, after damage calculation: That attack target loses 500 ATK until the end of this turn.
--ロケット戦士 --Rocket Warrior local s,id=GetID() function s.initial_effect(c) --invincible local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE) e1:SetCondition(s.ivcon) e1:SetValue(1) c:RegisterEffect(e1) local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_SING...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 5 or higher "Gladiator Beast" monsters Must first be Special Summoned (from your Extra Deck) by shuffling the above cards you control into the Deck. (You do not use "Polymerization".) Cannot be used as Fusion Material. Once per turn: You can Special Summon 1 "Gladiator Beast" Fusion Monster from your Extra Deck...
--剣闘獣総監エーディトル --Gladiator Beast Tamer Editor local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Fusion.AddProcMixN(c,true,true,s.matfilter,2) Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit) --cannot be fusion material local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_SINGLE) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Pay 1000 Life Points. Negate the Summon of a monster that has the same Type as a monster on the field, and destroy it.
--方舟の選別 --The Selection local s,id=GetID() function s.initial_effect(c) --Activate 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(Cost.PayLP(1000)) e1:SetTarget(s.target) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Tribute Summon this card face-up by Tributing 1 "Magical Musket" monster. During either player's turn, you can activate "Magical Musket" Spell/Trap Cards from your hand. Once per turn, during your opponent's End Phase: You can draw cards equal to the number of "Magical Musket" Spell/Trap Cards you activated thi...
--魔弾の悪魔 ザミエル --Magical Musket Mastermind Zakiel --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Can be tribute Summoned using 1 "Magical Musket" monster local e1=aux.AddNormalSummonProcedure(c,true,true,1,1,SUMMON_TYPE_TRIBUTE,aux.Stringid(id,0),s.otfilter) --"Magical Musket" Spell/Traps c...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, during your Standby Phase, if "Light Barrier" is not in your Field Zone: Toss a coin. If tails, the following effects are negated until your next Standby Phase. ● Fairy monsters you control gain 300 ATK/DEF. ● You can discard 1 card; add 2 "Arcana Force" monsters with different names from your Deck to yo...
--光の波動 --Light Force --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) --Toss a coin during the Standby Phase if you do not have "Light Barrier" in your Field Zone local ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Special Summoned: Draw 1 card.
--聖鳥クレイン --Sacred Crane local s,id=GetID() function s.initial_effect(c) --draw local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can reveal this card in your hand; send the top card of your Deck to the GY, also, after that, if it was a monster in the Deck, inflict damage to your opponent equal to that monster's original Level x 200, also Special Summon this card. Otherwise, destroy this card. * The above text is unofficial and describes the ...
--星見獣ガリス --Gallis the Star Beast local s,id=GetID() function s.initial_effect(c) --Send the top card of your Deck to the GY, also, after that, if it was a monster in the Deck, inflict damage to your opponent equal to that monster's Level x 200, also Special Summon this card, otherwise destroy this card local e1=Effec...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Your opponent draws 1 to 3 cards, then you gain 2000 LP for each card they drew with this effect.
--副作用? --Side Effects? local s,id=GetID() function s.initial_effect(c) --activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DRAW+CATEGORY_RECOVER) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetTarget(s.target) e1:SetOperation(s.activa...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Special Summoned by the effect of a "Fire Fist" monster: You can add 1 "Fire Fist" monster from your Deck to your hand. You can only use this effect of "Brotherhood of the Fire Fist - Rooster" once per turn. Once per turn: You can send 1 face-up "Fire Formation" Spell/Trap you control to the GY; Set 1...
--立炎星-トウケイ --Brotherhood of the Fire Fist - Rooster local s,id=GetID() function s.initial_effect(c) --search local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_DAMAGE_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During each of your End Phases, destroy this card unless you send 1 "Iron Core of Koa'ki Meiru" from your hand to the Graveyard or reveal 1 Beast-Warrior-Type monster in your hand. Once per turn, you can reveal 1 "Iron Core of Koa'ki Meiru" in your hand to Special Summon 1 Level 4 or lower "Koa'ki Meiru" monster from y...
--コアキメイル・ウルナイト --Koa'ki Meiru Urnight local s,id=GetID() function s.initial_effect(c) --cost local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE) e1:SetCode(EVENT_PHASE+PHASE_END) e1:SetCountLimit(1) e1:SetRange(LOC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Add 1 "Argostars" monster from your Deck to your hand, then immediately after this effect resolves, if a Continuous Trap is in your Monster Zone, or a Continuous Trap with an effect that Special Summons itself as a monster is in your Spell & Trap Zone, you can Normal Summon 1 Warrior monster. During your Main Phase: Yo...
--ARG☆S-GiantKilling --Argostars - Giantslaying --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Add 1 "Argostars" monster from your Deck to your hand, then, immediately after this effect resolves, you can Normal Summon 1 Warrior monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Strin...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is sent to the GY as Link Material: You can have that Link Monster lose 500 ATK, then draw 1 card. You can only use this effect of "Swap Cleric" once per turn.
--スワップリースト --Swap Cleric --fixed by Larry126 local s,id=GetID() function s.initial_effect(c) --Draw local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DRAW+CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_BE_MATERIAL) e1:SetPrope...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate this card by targeting 1 "SPYRAL" monster in your Graveyard; Special Summon it, and if you do, equip this card to it. It cannot be destroyed by battle. You can only activate 1 "SPYRAL GEAR - Big Red" per turn.
--SPYRAL GEAR-ビッグ・レッド --SPYRAL GEAR - Big Red local s,id=GetID() function s.initial_effect(c) --Special Summon 1 "SPYRAL" monster from the GY and equip it with this card local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned: You can Special Summon 1 Level 2 or lower Tuner from your GY. During the Main Phase (Quick Effect): You can Tribute this card; Special Summon 1 "Stardust Dragon" from your Extra Deck (this is treated as a Synchro Summon), then, immediately after this eff...
--アクセルシンクロ・スターダスト・ドラゴン --Accel Synchro Stardust Dragon local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Synchro Summon procedure: 1 Tuner + 1+ non-Tuner monsters Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) --Special Summon 1 Level 2 or lower Tuner from your GY local e1=Effect....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ Plant monsters If this card is Special Summoned: You can add 1 "Aroma" card from your Deck to your hand. If you gain LP, even during the Damage Step: You can Special Summon up to 3 "Aroma" monsters from your hand to your zones this card points to. You can Tribute 1 monster this card points to, then target 1 card on ...
--アロマリリス-ローズマリー --Aromalilith Rosemary --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_PLANT),2) --Add 1 "Aroma" card from the Deck to the hand local e1=Effect.CreateEffect(c) e1:SetDescr...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 "Appliancer" monster in your GY; Special Summon it, but place it on the bottom of the Deck when it leaves the field.
--機塊リユース --Appliancer Reuse --Anime version scripted by pyrQ, updated by Larry126 local s,id=GetID() function s.initial_effect(c) --Special summon 1 "Appliancer" from GY local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Excavate the top card of your opponent's Deck, and if it is a monster that can be Normal Summoned/Set, Special Summon it to your field. Otherwise, add that card to your opponent's hand.
--徴兵令 --Conscription local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.operation) c:RegisterEffe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card can be used to Ritual Summon any "Dogmatika" Ritual Monster. You must also Tribute monsters from your hand or field, whose total Levels exactly equal the Level of the Ritual Monster you Ritual Summon, or send 1 monster from your Extra Deck to the GY, whose Level equals the Level of the Ritual Monster you Ritu...
--凶導の福音 --Dogmatikalamity --scripted by edo9300 local s,id=GetID() function s.initial_effect(c) local e1=Ritual.CreateProc({handler=c,lvtype=RITPROC_EQUAL,filter=aux.FilterBoolFunction(Card.IsSetCard,SET_DOGMATIKA),extrafil=s.extragroup, extraop=s.extraop,stage2=s.stage2,forcedselection=s.ritcheck}) e1:SetCou...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is activated: If you control no other cards, you can add 1 "Synchron" monster from your Deck to your hand. Once per turn, during your Standby Phase: Place 1 Signal Counter on this card. You can remove 2 Signal Counters from your field and send this face-up card to the GY; draw 2 cards, then send 1 card f...
--ライディング・デュエル!アクセラレーション! --On Your Mark, Get Set, DUEL! local s,id=GetID() function s.initial_effect(c) --Search 1 "Synchron" monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is destroyed by battle and sent to the GY: Send 2 cards from your hand to the GY, and if you do, draw 2 cards.
--マッド・リローダー --Mad Reloader local s,id=GetID() function s.initial_effect(c) --Draw local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATTLE_DESTROYED) e1:SetCondition(s.conditio...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Each player chooses 1 monster they control and switches control of those monsters with each other. Those monsters cannot change their battle positions for the rest of this turn.
--強制転移 --Creature Swap local s,id=GetID() function s.initial_effect(c) --Each player changes control of 1 of their monsters local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_CONTROL) 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:
Once per turn, you can send 1 Dragon-Type monster from your hand to the Graveyard to add 1 Dragon-Type monster from your Graveyard to your hand. When this card is sent from the field to the Graveyard, you can return all Dragon-Type monsters from your Graveyard to your Deck.
--創世竜 --Genesis Dragon local s,id=GetID() function s.initial_effect(c) --salvage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While "Great Sand Sea - Gold Golgonda" is on the field, this card's original ATK becomes 3000. You can only use each of the following effects of "Supreme Sovereign Serpent of Golgonda" once per turn. While this card is in your hand or GY, if you control a face-up card in your Field Zone: You can Special Summon this car...
--覇蛇大公ゴルゴンダ --Supreme Sovereign Serpent of Golgonda --Logical Nonsense local s,id=GetID() function s.initial_effect(c) --Special summon itself from hand or GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If the combined ATK of all face-up monsters your opponent controls is higher than your LP: Make your opponent shuffle face-up monsters they control into the Deck (their choice), except monsters with 0 ATK, so that the combined ATK of the remaining monsters they control becomes less than or equal to your LP.
--イタチの大暴発 --Ferret Flames local s,id=GetID() function s.initial_effect(c) --Make the opponent shuffle monsters into the Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TODECK) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(s.condit...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Special Summoned. This card cannot destroy monsters by battle. If this card battles a monster, after damage calculation: Return that monster to the hand. Once per turn, during your Main Phase 1: You can have this card lose exactly 1000 ATK, and if you do, return all cards in your opponent's Spell & Trap Zone ...
--BF-激震のアブロオロス --Blackwing - Abrolhos the Megaquake local s,id=GetID() function s.initial_effect(c) --special summon limit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) e1:SetValue(aux.FALSE) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a WATER monster: You can Special Summon this card from your hand. You cannot Special Summon monsters, except WATER monsters, the turn you activate this effect. You can banish this card from your GY, then target up to 3 WATER monsters in your GY; shuffle them into the Deck. You can only use each effect of...
--サイレンス・シーネットル --Silent Sea Nettle --scripted by XyLeN 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_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLi...
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 4 or higher "Kozmo" monster from your hand. You can only use this effect of "Kozmo Farmgirl" once per turn. When this card inflicts battle damage to your opponent: You can pay 500 LP; add 1 "Kozmo" card from your Deck to your hand.
--Kozmo-ドロッセル --Kozmo Farmgirl 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:
This card is used to Ritual Summon "Dokurorider". You must also Tribute monsters from your hand or field whose total Levels equal 6 or more.
--スカルライダーの復活 --Revival of Dokurorider local s,id=GetID() function s.initial_effect(c) Ritual.AddProcGreaterCode(c,6,nil,99721536) end
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, during your opponent's End Phase: Place 1 "The Second Sarcophagus" or (after you've done that) "The Third Sarcophagus" from your hand or Deck in your Spell & Trap Zone face-up. Then, if you control "The First Sarcophagus", "The Second Sarcophagus", and "The Third Sarcophagus", send all of them to the GY,...
--第一の棺 --The First Sarcophagus 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) --Place "The Second Sarcophagus" or "The Third Sarcophagus" in your Spell/Trap Zone local e2=Effect.CreateEf...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When your opponent's monster declares an attack while they control 2 or more monsters: Target the attacking monster; negate that attack, and if you do, send 1 other monster they control to the Graveyard, then the targeted monster loses ATK equal to the original ATK or DEF (whichever is higher, your choice if tied) of t...
--びっくり箱 --Punch-in-the-Box local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCondition(s.condition) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:Regi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
4 Level 4 monsters You can also Xyz Summon this card by using a monster you control whose original name is "Number 69: Heraldry Crest". (Transfer its materials to this card.) When your opponent activates a monster effect on the field, or an opponent's monster declares an attack (Quick Effect): You can Special Summon fr...
--No.69 紋章神コート・オブ・アームズ-ゴッド・シャーター --Number 69: Heraldry Crest - Shatter Stream --scripted by Naim local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure: 4 Level 4 monsters OR 1 monster whose original name is "Number 69: Heraldry Crest" Xyz.AddProcedure(c,nil,4,4,s.ovfilter,aux.S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can reveal 1 other "Amazoness" monster in your hand; Special Summon this card from your hand. You can only use this effect of "Amazoness Spy" once per turn. When this card is destroyed by battle and sent to the GY: You can target 1 "Amazoness" monster in your GY, except "Amazoness Spy"; return it to the hand, or sh...
--アマゾネスの斥候 --Amazoness Spy local s,id=GetID() function s.initial_effect(c) --Special Summon this card from your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(1,id) e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Must be Fusion Summoned using any 5 "Neos", "Neo Space", "Neo-Spacian", or "HERO" monsters, including at least 1 "Neos" or "Neo Space" monster, 1 "Neo-Spacian" monster, and 1 "HERO" monster, and cannot be Special Summoned by other ways. Once per turn: You can banish 1 "Neos", "Neo Space", "Neo-Spacian", or "HERO" monst...
--E・HERO ゴッド・ネオス --Elemental HERO Divine Neos local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMixRep(c,true,true,s.ffilter,2,2,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_NEOS),aux.FilterBoolFunctionEx(Card.IsSetCard,SET_NEO_SPACIAN),aux.FilterBoolFunctionEx(Card...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: You can add 1 Ritual Spell from your Deck or GY to your hand.
--占術姫アローシルフ --Prediction Princess Arrowsylph local s,id=GetID() function s.initial_effect(c) --to hand local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_DELAY) e1:SetTarget(s.thtg) e1:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 4 monsters You can detach 2 materials from this card; Special Summon 1 "ZW -" or "ZS -" monster from your Deck, also for the rest of this turn, you can only attack with "Number" monsters, and you cannot Special Summon from the Extra Deck, except Xyz Monsters. You can only use this effect of "ZS - Utopic Sage" o...
--ZS-希望賢者 --ZS - Utopic Sage --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Xyz.AddProcedure(c,nil,4,2) --Special Summon 1 "ZW -" or "Zs -" from the Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a "Kashtira" monster: You can Special Summon this card from your hand, also you cannot Special Summon monsters from the Extra Deck for the rest of this turn, except Xyz Monsters. During your Main Phase, if this card was Normal or Special Summoned this turn: You can banish 1 "Kashtira" card from your Deck...
--クシャトリラ・ライズハート --Kashtira Riseheart --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Special Summon this card local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCoun...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card battles an opponent's monster: That monster cannot attack while it is face-up on the field.
--ライライダー --Rai Rider local s,id=GetID() function s.initial_effect(c) --A monster that battled this card cannot attack local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATTLED) e1:SetCondition(s.condition) e1:SetOperation(s...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is sent to the Graveyard as a Synchro Material Monster, select 1 face-up monster your opponent controls. The selected opponent's monster loses 1000 ATK until the End Phase.
--アタック・ゲイナー --Attack Gainer local s,id=GetID() function s.initial_effect(c) --atk change local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_BE_MATERI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During either player's turn: You can target 1 Pendulum Monster in your Monster Zone and 1 monster your opponent controls; return them to the hand(s). You can only use this effect of "Majespecter Unicorn - Kirin" once per turn. Cannot be targeted or destroyed by your opponent's card effects.
--マジェスペクター・ユニコーン --Majespecter Unicorn - Kirin local s,id=GetID() function s.initial_effect(c) --pendulum summon Pendulum.AddProcedure(c) --tohand local e2=Effect.CreateEffect(c) e2:SetCategory(CATEGORY_TOHAND) e2:SetType(EFFECT_TYPE_QUICK_O) e2:SetProperty(EFFECT_FLAG_CARD_TARGET) e2:SetCode(EVENT_FREE_CHAIN) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 "Superheavy Samurai" monster you control; equip this monster from your hand or your side of the field to that target. It gains 1200 DEF. When the monster equipped with this card by this effect is targeted for an attack: You can send this Equip Card to the Graveyard; negate that attack, but the equipped...
--超重武者装留グレート・ウォール --Superheavy Samurai Soulshield Wall local s,id=GetID() function s.initial_effect(c) --equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetRange(LOCATION_HAND|LO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Special Summon 1 "Vampire" monster from your Deck, but destroy it during the End Phase of this turn. You can only activate 1 "Vampire Awakening" per turn.
--ヴァンパイア・アウェイク --Vampire Awakening -- local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When your opponent activates a monster effect in their hand: Negate that activation, then if they have any cards in their hand, you discard 1 card from their hand (of their choice).
--XXクルージョン --XX-clusion --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Negate activation local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_NEGATE+CATEGORY_HANDES) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_CHAINING) e1:SetCondition(s.negcon) e1:SetTarget(s.negtg) e1:SetOpera...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Destroy as many cards in each player's Pendulum Zones as possible, then apply these effects, in sequence, depending on the number of cards destroyed by this effect. ● 1+: Inflict 500 damage to your opponent. ● 2+: You can add 1 Pendulum Monster from your Main Deck to your hand. ● 3+: You can banish 1 card on the field....
--揺れる眼差し --Wavering Eyes local s,id=GetID() function s.initial_effect(c) --activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DAMAGE+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Normal Monster, except a Token During your Main Phase, you can Normal Summon 1 "World Chalice" monster in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) At the start of the Damage Step, if this card battles an opponent's monster this card points to: You can destroy that opponent's ...
--星杯竜イムドゥーク --Imduk the World Chalice Dragon --scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --link summon c:EnableReviveLimit() Link.AddProcedure(c,s.matfilter,1,1) --extra summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_FIELD) e1:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control no monsters, or if all monsters you control are Dinosaur monsters: You can Special Summon this card from your hand. If this card is Normal or Special Summoned: You can add 1 "Doodlebook" Spell/Trap from your Deck to your hand, then discard 1 card. You can only use each effect of "Doodle Beast - Stego" on...
--らくがきじゅう-すてご --Doodle Beast - Stego --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Special Summon itself from the hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Normal Summoned/Set. Must be Special Summoned by card effect. During your opponent's turn (Quick Effect): You can destroy 2 other Dinosaur monsters in your hand and/or field, and if you do, Special Summon this card from your hand. If this card is Special Summoned: You can send 1 Dinosaur monster from your Dec...
--超越竜メテオロス --Transcendosaurus Meteorus --Scripted by Satella local s,id=GetID() function s.initial_effect(c) c:EnableUnsummonable() --Must be Special Summoned by a card effect local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCod...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate only during your opponent's Standby Phase. All face-up monsters your opponent controls are changed to Attack Position, and cannot change their battle positions this turn. All monsters your opponent currently controls must attack this turn, if able.
--バトルマニア --Battle Mania local s,id=GetID() function s.initial_effect(c) --Change all of opponent's monsters to attack position, must attack if able to local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMING_STANDBY_P...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card was Special Summoned by the effect of a "Gladiator Beast" monster, it can attack twice during each Battle Phase. At the end of the Battle Phase, if this card attacked or was attacked, you can return it to the Deck to Special Summon 1 "Gladiator Beast" monster from your Deck, except "Gladiator Beast Dimacar...
--剣闘獣ディカエリィ --Gladiator Beast Dimacari local s,id=GetID() function s.initial_effect(c) --double attack local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_EXTRA_ATTACK) e1:SetCondition(s.dacon) e1:SetValue(1) c:RegisterEffect(e1) --special summon local e2=Effect.CreateEffect(c) e2...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Normal or Special Summoned: You can send 1 Aqua monster from your Deck to the GY, except "Supreme Sea Mare". During your End Phase: You can Tribute this card, then target 1 Aqua monster in your GY, except "Supreme Sea Mare"; add it to your hand. You can only use each effect of "Supreme Sea Mare" once pe...
--絶海のマーレ --Supreme Sea Mare --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Send 1 Aqua monster to the GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOGRAVE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_DE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, you can select another face-up monster you control to gain Life Points equal to that monster's Level x 100.
--ヒール・ウェーバー --Healing Wave Generator 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:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetProperty(EFFECT_FLAG_CARD_T...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If 2 or more monsters are on the field, you can Special Summon this card (from your hand). When a card or effect is activated that would inflict damage to you (Quick Effect): You can place 1 Performage Counter on this card (max. 3), then make that effect damage to you 0. When the 3rd Performage Counter is placed on thi...
--Emハットトリッカー --Performage Hat Tricker local s,id=GetID() function s.initial_effect(c) c:EnableCounterPermit(0x36) c:SetCounterLimit(0x36,3) --special summon rule local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetRange(LOCATION_HAND) e1:SetProperty(EFFECT_FLAG_U...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Your opponent cannot target this card with card effects. Once per turn: You can Tribute 1 other FIRE monster; this card gains 300 ATK.
--陽炎獣 ヒッポグリフォ --Hazy Flame Hyppogrif local s,id=GetID() function s.initial_effect(c) --cannot be target 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:Registe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be destroyed by battle. After damage calculation, if this card was attacked, and was face-down at the start of the Damage Step: The attacking player takes 1000 damage.
--マシュマロン --Marshmallon local s,id=GetID() function s.initial_effect(c) --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATTLED) e1:SetCondition(s.condition) e1:SetTarget(s.target)...
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 Pyro Phoenix" as material: You can destroy all cards your opponent controls. You can only use each of the following effects of "Salamangreat Pyro Phoenix" once per turn. ● You can target 1 Link Monster in your opponent's GY; Special Summon it to ...
--転生炎獣パイロ・フェニックス --Salamangreat Pyro Phoenix --scripted by Larry126 local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() aux.EnableCheckReincarnation(c) --Link Summon procedure Link.AddProcedure(c,s.matfilter,2) --Destroy all cards your opponent controls local e1=Effect.CreateEffect(c) e1:SetDes...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a face-up Xyz Monster, you can Special Summon this card (from your hand). You can only Special Summon "Raidraptor - Singing Lanius" once per turn this way.
--RR-シンギング・レイニアス --Raidraptor - Singing Lanius local s,id=GetID() function s.initial_effect(c) --special summon rule local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetRange(LOCATION_HAND) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetCountLimit(1,id,EFFECT_COUNT_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 3 monsters When this card is Special Summoned: You can attach 1 Level 3 WATER monster from your hand or your side of the field to this card as an Xyz Material. Once per turn: You can detach 1 Xyz Material from this card, then target 1 WATER monster you control; this turn, that monster can attack your opponent d...
--No.47 ナイトメア・シャーク --Number 47: Nightmare Shark local s,id=GetID() function s.initial_effect(c) --Must first be properly summoned before reviving c:EnableReviveLimit() --Xyz Summon procedure Xyz.AddProcedure(c,nil,3,2) --Attach 1 Level 3 WATER monster from hand or field to this card local e1=Effect.CreateEffect(c...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Spellcaster monsters you control gain 500 ATK/DEF. You can send 1 card from your hand to the GY; add to your hand or Special Summon to your opponent's field, 1 "Allure Queen" monster from your Deck. You can only use this effect of "Allure Palace" thrice per turn. "Allure Queen" Effect Monsters you control gain this eff...
--魅惑の宮殿 --Allure Palace --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) --Spellcaster monsters you control gain 500 ATK/DEF local e1=Effect.CreateEffect(c) e1:SetType(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 Psychic-Type monster. Return all cards in your opponent's hand to the Deck. Then, they draw 3 cards.
--サイキック・インパルス --Psi-Impulse local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCost(s.cost) e1:SetTarget(s.target) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Skull Servant" + "Battle Warrior"
--アンデット・ウォーリアー --Zombie Warrior local s,id=GetID() function s.initial_effect(c) --Must be properly summoned before reviving c:EnableReviveLimit() --Fusion summon procedure Fusion.AddProcMix(c,true,true,CARD_SKULL_SERVANT,55550921) end s.listed_names={CARD_SKULL_SERVANT}
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a Link Monster's effect is activated that targets this face-up card on the field (Quick Effect): You can destroy this card, then each player takes 2000 damage. During the End Phase, if this card is in the GY because it was destroyed on the field by battle or card effect and sent there this turn: You can Special Su...
--エクスプロードヴァレット・ドラゴン --Exploderokket Dragon --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_CHAINING) e1:SetPro...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your opponent's turn (Quick Effect): You can Special Summon 1 "Plunder Patroll" monster from your Extra Deck with the same Attribute as a monster your opponent controls or is in their GY, and if you do, equip this card you control to it. If this card is sent from the hand or Monster Zone to the GY: You can activ...
--海造賊-白髭の機関士 --Whitebeard, the Plunder Patroll Helm --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Special summon 1 "Plunder Patroll" monster from extra deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_EQUIP) e1:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During the End Phase, if this card was sent from your side of the field to your Graveyard this turn: You can add 1 "X-Saber" monster from your Deck to your hand.
--XX-セイバー ダークソウル --XX-Saber Darksoul local s,id=GetID() function s.initial_effect(c) --to grave local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetCode(EVENT_TO_GRAVE) e1:SetOperation(s.regop) c:RegisterEffect(e1) end s.listed_se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 LIGHT Tuner + 2+ non-Tuner DARK monsters Once per turn: You can send 1 LIGHT monster from your hand to the GY, then target 1 Level 5 or higher DARK monster in your GY; Special Summon that monster, but it cannot be used as Synchro Material.
--カオス・ゴッデス-混沌の女神- --Chaos Goddess local s,id=GetID() function s.initial_effect(c) --Must be properly summoned before reviving c:EnableReviveLimit() --Synchro summon procedure Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_LIGHT),1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_DARK),2,9...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 5 monsters This card's effects can only be applied/resolved while it has Xyz Material. This card cannot be destroyed by card effects. At the end of the Battle Phase, if this card attacked or was attacked: Target 1 card your opponent controls; destroy that target. During each of your End Phases: Detach 1 Xyz Mat...
--始祖の守護者ティラス --Tiras, Keeper of Genesis local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,5,2) c:EnableReviveLimit() --indestructable by effect local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send 1 "Xyz" card from your Deck to the GY, except "Xyz Force", or if an Xyz Monster is on the field that has an Xyz Monster as material, you can add the "Xyz" card to your hand instead. During your Main Phase, except the turn this card was sent to the GY: You can banish this card from your GY; detach 1 material from a...
--エクシーズ・フォース --Xyz Force --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Send 1 "Xyz" card to the GY or add it to the hand if an Xyz monster with an Xyz monster as material is on the field local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOGRAVE+CATE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Equip only to a Warrior monster. It gains 300 ATK. During your Main Phase, if this card is in your GY: You can banish 2 Warrior monsters from your GY; add this card to your hand.
--神剣-フェニックスブレード --Divine Sword - Phoenix Blade local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsRace,RACE_WARRIOR)) --Atk up local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_EQUIP) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetValue(300) c:RegisterEffect(e2...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a Link-1 monster or a Level 2 Synchro Monster, you can Special Summon this card (from your hand). You can only Special Summon "Cupsy☆Yummy" once per turn this way. If this card is Normal or Special Summoned: You can add 1 "Yummy" card from your Deck to your hand, except "Cupsy☆Yummy", or, if this card wa...
--カプシー☆ヤミー --Cupsy☆Yummy --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --If you control a Link-1 monster or a Level 2 Synchro Monster, you can Special Summon this card (from your hand) local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_FIELD) e1:SetP...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You cannot declare attacks, except with Zombie monsters. You can only use each of the following effects of "Cursed Eldland" once per turn. ● You can pay 800 LP; add 1 "Eldlich" monster or 1 "Golden Land" Spell/Trap from your Deck to your hand. ● If this card is sent from the Spell & Trap Zone to the GY: You can send 1 ...
--呪われしエルドランド --Cursed Eldland --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 attack local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 4 monsters While you control a face-up Spell, your opponent cannot target this card for attacks. Once per turn: You can detach 1 material from this card; this turn, this card can attack your opponent directly, but other monsters cannot attack.
--No.82 ハートランドラコ --Number 82: Heartlandraco local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure: 2 Level 4 monsters Xyz.AddProcedure(c,nil,4,2) --While you control a face-up Spell, your opponent cannot target this card for attacks local e1=Effect.CreateEffect(c) e1:SetType...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is sent to the GY as material for the Fusion or Link Summon of a "Prank-Kids" monster: You can banish 1 card from your hand, and if you do, draw 1 card, then, you can Special Summon 1 "Prank-Kids" monster from your hand or Deck in Defense Position, except "Prank-Kids Rocksies". You can only use this effect...
--プランキッズ・ロック --Prank-Kids Rocksies local s,id=GetID() function s.initial_effect(c) --Banish, draw, and Special Summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_REMOVE+CATEGORY_DRAW+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: Take control of 1 face-up monster on your opponent's side of the field until the end of this turn.
--幻惑のラフレシア --Rafflesia Seduction local s,id=GetID() function s.initial_effect(c) --flip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_CONTROL) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP) e1:SetTarget(s.ctltg) e1:SetOpera...