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:
If all monsters you control are Rock-Type monsters (min. 1) while this card is in your Graveyard: You can Special Summon this card. You can only use this effect of "Sentry Soldier of Stone" once per turn.
--岩石の番兵 --Sentry Soldier of Stone 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_GRAVE) e1:SetCountLimit(1,id) e1:SetCondition(s.s...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a monster(s) would be Special Summoned, OR a Spell/Trap Card is activated: Banish 1 face-up Fusion Monster you control; negate the Special Summon or activation, and if you do, destroy that card, also during your 2nd End Phase, return the banished Fusion Monster to your field in face-up Attack Position.
--パラドックス・フュージョン --Paradox Fusion 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_SPSUMMON) e1:SetCondition(s.condition1) e1:SetCost(s.cost) e1:SetTarget(s.target1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you have 2 or more "Salamangreat" monsters in your GY: You can Special Summon this card from your hand. If a "Salamangreat" Ritual, Fusion, Synchro, Xyz, or Link Monster(s) is Special Summoned to your field, while this card is in your GY (except during the Damage Step): You can target 1 other "Salamangreat" monster ...
--転生炎獣ウィーゼル --Salamangreat Weasel --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Special Summon this card from your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Select a monster you control and a monster with an A-Counter(s) your opponent controls. Switch control of those monsters.
--亜空間ジャンプ装置 --Interdimensional Warp local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_CONTROL) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER_E) e1:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: Pick up and see 1 face-down Defense Position Monster Card on your opponent's side of the field. If it is an Effect Monster, destroy it (its Flip Effect is not activated), and if the card is not, return it to its original position.
--爆弾かめ虫 --Bombardment Beetle local s,id=GetID() function s.initial_effect(c) --flip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP) e1:SetTarget(s.target) e1:SetOperation(s.operation) c:RegisterEffect(e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 Dragon monster you control and 1 card your opponent controls or in their GY; return them to the hand. You can banish this card from your GY; Special Summon 1 "Dragonmaid" monster from your hand or GY in Defense Position, but return it to the hand during the End Phase. You can only use 1 "Dragonmaid Tidying" ef...
--ドラゴンメイドのお片付け --Dragonmaid Tidying --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Return targets to hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can reveal this card and 1 WATER monster in your hand; Special Summon 1 of them and discard the other. You can only use this effect of "Fishborg Harpooner" once per turn. If this card is sent to the GY as material for a WATER Synchro Monster: You can negate the effects of 1 Effect Monster your opponent controls, un...
--フィッシュボーグ-ハープナー --Fishborg Harpooner local s,id=GetID() function s.initial_effect(c) --Special Summon and discard this card and 1 other WATER monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_HANDES) e1:SetType(EFFECT_TYPE_IGNITION) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is in your Graveyard: You can target 1 Level 5 or higher monster you control; reduce its Level by 1, and if you do, Special Summon this card. This face-up card on the field cannot be Tributed, except for a Tribute Summon.
--レベル・スティーラー --Level Eater 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:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_GRAVE) e1:SetTarget(s....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Fusion Summon 1 "HERO" Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Material. You can also use up to 2 monsters in your Spell & Trap Zone that are being treated as Continuous Traps as Fusion Material, by banishing them. You can only activate 1 "Vision Fusion" per turn.
--幻影融合 --Vision Fusion local s,id=GetID() function s.initial_effect(c) --Fusion Summon 1 "HERO" Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Material local e1=Fusion.CreateSummonEff({handler=c,fusfilter=function(c) return c:IsSetCard(SET_HERO) end,extrafil=s.fextra,extraop=s.e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Discard 1 Level 5 or higher "Danger!" monster; add 1 Level 4 or lower "Danger!" monster from your Deck to your hand. You cannot Special Summon monsters for the rest of this turn after this card resolves, except "Danger!" monsters. You can only activate 1 "Danger! Excitement! Mystery!" per turn.
--魅惑の未界域 --Danger! Excitement! Mystery! --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_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, if your opponent controls a monster and you control no monsters, you can Special Summon 1 Level 4 or lower Gemini monster from your hand.
--金剛真力 --Herculean Power local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] Xyz Monsters you control gain 100 ATK for each Xyz Material on the field. You can target 1 "Materiactor" Xyz Monster you control; attach this card to it as material, then draw 1 card. You can only use this effect of "Prima Materiactor" once per turn. ---------------------------------------- [ Monste...
--プリマ・マテリアクトル --Prima Materiactor --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) --Pendulum Summon procedure Pendulum.AddProcedure(c) --Xyz Monsters you control gain 100 ATK for each material attached to monsters on the field local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 7 monsters Cannot attack unless it has material. Once per turn: You can detach 1 material from this card, then target 1 Effect Monster on the field; negate that face-up monster's effects until the end of this turn. This is a Quick Effect if this card has "Super Quantum White Layer" as material. Once per turn: Y...
--超量機獣ラスターレックス --Super Quantal Mech Beast Lusterrex --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure: 2 Level 7 monsters Xyz.AddProcedure(c,nil,7,2) --Cannot attack unless it has Xyz Material local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYP...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a monster(s) is Special Summoned from your GY (except during the Damage Step): You can Special Summon this card from your hand. If you have a Synchro Monster with "Warrior", "Synchron", or "Stardust" in its original name on your field or GY: You can make this card's Level become 4 until the end of this turn. You can...
--サテライト・シンクロン --Satellite Synchron 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_FIELD+EFFECT_TYPE_TRIGGER_O) e1:SetRange(LOCATION_HAND) e1:SetProperty(EFFECT_FLAG_DAM...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 Dragon monster on the field; equip this card to it. It gains 400 ATK/DEF, also it can make up to 2 attacks on monsters during each Battle Phase. Once per turn, during the End Phase, if the monster equipped with this card by this effect attacked an opponent's monster this turn: Destroy this card.
--タイラント・ウィング --Tyrant Wing 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:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(TIMING_DAMAGE_STEP) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is sent to the GY: You can send 1 "Skull Servant" and 1 "The Lady in Wight" from your hand and/or Deck to the GY. You can banish 2 "Skull Servant(s)" and this card from your GY; Special Summon 1 "King of the Skull Servants" from your Deck. This card's name becomes "Skull Servant" while in the GY.
--ワイトプリンス --Wightprince local s,id=GetID() function s.initial_effect(c) --Name becomes "Skull Servant" while in GY local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_GRAVE) e1:SetCode(EFFECT_CHANGE_CODE) e1:SetValue(CARD_SKULL_SERVANT) c:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Edge Imp Chain" + 1 "Fluffal" monster If this card battles, your opponent's cards and effects cannot be activated until the end of the Damage Step. If this card is destroyed by battle and sent to the Graveyard, or if this card in your possession is destroyed by an opponent's card effect and sent to your Graveyard: You...
--デストーイ・チェーン・シープ --Frightfur Sheep local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,61173621,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_FLUFFAL)) --actlimit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FL...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card battles with a DARK monster, increase the ATK of this card by 500 points during the Damage Step.
--太陽の戦士 --Luminous Soldier local s,id=GetID() function s.initial_effect(c) local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetCondition(s.condtion) e1:SetValue(500) c:RegisterEffect(e1) end fu...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During damage calculation, if your Attack Position monster battles an opponent's Attack Position monster with higher ATK: The controller of the battling monster with lower ATK can pay 500 LP for that monster to gain 500 ATK during damage calculation only, then keep repeating this effect until a player chooses not to pa...
--ぶつかり合う魂 --Clashing Souls 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:SetCode(EVENT_PRE_DAMAGE_CALCULATE) e1:SetCondition(s.condition) e1:SetOperation(s.activate) c:RegisterEffect(e1) end funct...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During damage calculation, if your "Number" Xyz Monster that has a number between "101" and "107" in its name, or your Xyz Monster that has any such monsters as material, battles: Banish that monster you control (also banish its materials). During the End Phase of the turn you activated this card, Special Summon 1 Rank...
--七皇転生 --Reincarnation of the Seventh Emperors --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_REMOVE+CATEGORY_SPECIAL_SUMMON+CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 WATER monster in your GY; apply 1 of these effects, also you cannot Special Summon monsters for the rest of this turn, except WATER monsters. ● (Only if the target has a Level) until the End Phase, this card's Level, also its name, become the same as that monster's. ● (Only if "Umi" is on the field), S...
--海神の依代 --Yorishiro of the Aqua --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) --Add 1 "Umi" from GY to hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If your opponent Normal or Special Summons a monster(s) (except during the Damage Step), or if an opponent's monster targets this card for an attack: You can return this card to the hand, then you can Special Summon 1 Beast monster from your hand, except "Melffy Fenny". During your End Phase: You can Special Summon thi...
--メルフィー・フェニィ --Melffy Fenny --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --Return itself to hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e1:SetCode...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 "Marincess" card you control; Special Summon this card from your hand, and if you do, it gains this effect. ● While this card is in the Monster Zone, the targeted card cannot be destroyed by your opponent's card effects. You can banish this card from your GY, then target 1 "Marincess" Link Monster you ...
--海晶乙女スリーピーメイデン --Marincess Sleepy Maiden --Scripted by The Razgriz 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:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Each time a card is Set on your side of the field, place 1 Worm Counter on this card. You can remove 2 Worm Counters from this card to select 1 card your opponent controls, and destroy it.
--ワーム・イリダン --Worm Illidan local s,id=GetID() function s.initial_effect(c) c:EnableCounterPermit(0xf) --add counter local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetCode(EVENT_MSET) e1:SetRange(LOCATION_MZONE) e1:SetCondition(s.accon1) e1:SetOperation(s.acop) c:Register...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card is treated as a Normal Monster while face-up on the field or in the Graveyard. While this card is face-up on the field, you can Normal Summon it to have it be treated as an Effect Monster with this effect: ● The original DEF of this card becomes 2300.
--サンライズ・ガードナー --Dawnbreak Gardna local s,id=GetID() function s.initial_effect(c) Gemini.AddProcedure(c) --Original DEF becomes 2300 local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetCode(EFFECT_SET_BASE_DEFENSE) e1:SetRange(LOCATION_MZONE) e1:SetCondit...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this face-up card in the Field Zone is sent to the GY or banished: Destroy all monsters you control. You can only use 1 of the following effects of "Fire King Island" per turn, and only once that turn. ● During your Main Phase: You can destroy 1 monster in your hand or field, and if you do, add 1 "Fire King" monster...
--炎王の孤島 --Fire King Island local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --destroy local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_DESTRO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 3 "Mikanko" monsters If this card is Special Summoned: You can add 1 Equip Spell from your Deck or GY to your hand. You can only use this effect of "Uzuhime the Manifested Mikanko" once per turn. Cannot be destroyed by battle, also your opponent takes any battle damage you would have taken from battles involvin...
--ウズヒメの御巫 --Uzuhime the Manifested Mikanko --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon procedure: 2 Level 3 "Mikanko" monsters Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_MIKANKO),3,2) --Add 1 Equip Spell from your Deck or GY to your han...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, you can select 1 other face-up monster you control and increase its Level by 1.
--デルタフライ --Delta Flyer local s,id=GetID() function s.initial_effect(c) --lvchange local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_LVCHANGE) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn, during your Standby Phase: You gain 200 LP. This card must be in the Graveyard to activate and to resolve this effect.
--堕天使マリー --Darklord Marie 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_FIELD+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_PHASE|PHASE_STA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can only activate this card while your Life Points are lower than your opponent's Life Points and the difference is 7000 points or more. Both players' Life Points become 0.
--自爆スイッチ --Self-Destruct Button local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(s.condition) e1:SetOperation(s.activate) c:RegisterEffect(e1) end function s.condition(e,tp,eg,ep,ev,re,r,rp) r...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 "Melodious" monsters During either player's turn: You can target up to 3 cards in any Graveyard(s); banish them, and if you do, this card gains 200 ATK for each. This effect can only be used once while this card is face-up on the field.
--幻奏の音姫マイスタリン・シューベルト --Schuberta the Melodious Maestra local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_MELODIOUS),2) --remove local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_REMOVE+CATEGORY_A...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 "Armed Dragon" monster you control; it gains 1000 ATK for each "Armed Dragon" monster in your GY with an equal or lower Level than it and with different names from each other, but for the rest of this turn, it cannot inflict Battle Damage to your opponent. You can banish this card from your GY, then target 1 "...
--武装竜の万雷 --Armed Dragon Thunderbolt --scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Increase ATK local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be destroyed by battle. If this card is in face-up Defense Position, destroy it. If this card declares an attack: Change the battle positions of all face-up monsters, except "Cloudian" monsters.
--雲魔物-アイ・オブ・ザ・タイフーン --Cloudian - Eye of the Typhoon local s,id=GetID() function s.initial_effect(c) --battle indestructable local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE) e1:SetValue(1) c:RegisterEffect(e1) --selfdes local e2=Effect.CreateEffect(c) e2:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal or Flip Summoned: You can add 1 Ritual Spell from your Deck to your hand.
--ソニックバード --Sonic Bird local s,id=GetID() function s.initial_effect(c) --effect 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:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(s.tg) e1:SetOpe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] You can target 1 other Spell/Trap on the field; destroy both it and this card. You can only use this effect of "Archfiend Eccentrick" once per turn. ---------------------------------------- [ Monster Effect ] You can Tribute this card, then target 1 monster on the field; destroy it. You can only use...
--エキセントリック・デーモン --Archfiend Eccentrick local s,id=GetID() function s.initial_effect(c) --pendulum summon Pendulum.AddProcedure(c) --Destroy spell & trap local e2=Effect.CreateEffect(c) e2:SetCategory(CATEGORY_DESTROY) e2:SetType(EFFECT_TYPE_IGNITION) e2:SetRange(LOCATION_PZONE) e2:SetProperty(EFFECT_FLAG_CARD_T...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is in your hand: You can discard up to 2 monsters, except "Fabled Marcosia", but including another "Fabled" monster, and if you do, Special Summon this card. If Summoned this way, this card gains 200 ATK for each monster discarded. If this card is discarded to the GY: Add 1 "Fabled" Spell/Trap from your De...
--魔轟神マルコシア --Fabled Marcosia --Scripted by Naim local s,id=GetID() function s.initial_effect(c) --Discard and Special Summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_HANDES+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is in your hand and all monsters you control are face-up Reptile monsters (min. 1): You can target 1 face-up monster your opponent controls; change its ATK to 0, and if you do, Special Summon this card, then take damage equal to that monster's original ATK. If this card is sent to the GY as Synchro Materia...
--レプティレス・ヒュドラ --Reptilianne Lamia --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_SPECIAL_SUMMON+CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetRange(LOCA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card is treated as a Normal Monster while face-up on the field or in the Graveyard. While this card is a Normal Monster on the field, you can Normal Summon it to have it become an Effect Monster with this effect. ● Once per turn: You can send 1 face-up Spell/Trap Card you control to the Graveyard; destroy all Spel...
--ダークストーム・ドラゴン --Darkstorm Dragon local s,id=GetID() function s.initial_effect(c) Gemini.AddProcedure(c) --Destroy all Spell/Trap cards local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountL...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal or Special Summoned: You can target up to 2 cards on the field; destroy those targets, and if you do, each player can draw 1 card for each of the cards they controlled that was destroyed by this effect. This card cannot attack during the turn it is Normal or Special Summoned.
--光帝クライス --Kuraz the Light Monarch local s,id=GetID() function s.initial_effect(c) --destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card can only attack if you control exactly 3 "Noble Knight" monsters (and no other monsters). When this card is Normal Summoned: You can Special Summon up to 2 "Noble Knight" monsters from your hand, also you cannot Special Summon monsters for the rest of this turn, except "Noble Knight" monsters. Once per turn: ...
--聖騎士の三兄弟 --Noble Knight Brothers local s,id=GetID(c) local s,id=GetID() function s.initial_effect(c) --atk limit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_CANNOT_ATTACK) e1:SetCondition(s.atcon) c:RegisterEffect(e1) --special summon local e2=Effect.CreateEffect(c) e2:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 6 monsters You can also Xyz Summon this card by detaching 1 Xyz Material from a Rank 5 Xyz Monster you control, then using that Xyz Monster as the Xyz Material. (Xyz Materials attached to that monster also become Xyz Materials on this card.) This card gains 1000 ATK for each Xyz Material attached to it. Once pe...
--No.21 氷結のレディ・ジャスティス --Number 21: Frozen Lady Justice local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Xyz.AddProcedure(c,nil,6,2,s.ovfilter,aux.Stringid(id,0),2,s.xyzop) --atk local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_SINGLE) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetProperty(EFF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand) by controlling a Spirit monster. You can only Special Summon "Konohanasakuya" once per turn this way. Once per turn, during the End Phase, if this card was Special Summoned this turn: Return it to the hand. Once per turn, during the End Phase: You...
--木花咲弥 --Konohanasakuya --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() c:AddCannotBeSpecialSummoned() Spirit.AddProcedure(c,EVENT_SPSUMMON_SUCCESS) --Must be Special Summoned (from your hand) by controlling a Spirit monster local e0=Effect.CreateEffect(c) e0:SetDescriptio...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 DARK monster with 1000 or less ATK; your opponent takes no damage until the end of the next turn after this card resolves, also, you look at your opponent's hand and all monsters they control, and if you do, destroy the monsters among them with 1500 or more ATK, then your opponent can destroy up to 3 monsters...
--死のデッキ破壊ウイルス --Crush Card Virus 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:SetHintTiming(0,TIMING_TOHAND) e1:SetCost(s.cost) e1:SetTarget(s.target) e1:SetOperation(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Special Summoned by the effect of a "Gladiator Beast" monster: Target 1 "Gladiator Beast" card in your GY; add that target to your hand. At the end of the Battle Phase, if this card battled: You can shuffle it into the Deck; Special Summon 1 "Gladiator Beast" monster from your Deck, except "Gladiator Be...
--剣闘獣エクイテ --Gladiator Beast Equeste local s,id=GetID() function s.initial_effect(c) --Add 1 "Gladiator Beast" card from your GY to your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
To activate this card, you must draw it for your normal draw in your Draw Phase, reveal it, and keep it revealed until the start of Main Phase 1. At the start of your Main Phase 1 that same turn, you can: Special Summon, from your Extra Deck or GY, 1 "Number" monster that has a number between "101" and "107" in its nam...
--RUM-七皇の剣 --Rank-Up-Magic - The Seventh One local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e1:SetCode(EVENT_DRAW) e1:SetCondition(s.regcon) e1:SetOperation(s.regop) c:RegisterEffect(e1) local e2=Effect.CreateEffec...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
The equipped monster cannot be destroyed by card effects. You can only use each of the following effects of "Mikanko Dance - Mayowashidori" once per turn. At the end of the Damage Step, if your "Mikanko" monster battled: You can target 1 card on the field; return it to the hand. If this card is in your GY: You can targ...
--御巫舞踊-迷わし鳥 --Mikanko Dance - Mayowashidori --Scripted by Satella local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c) --Prevent destruction by effects local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_EQUIP) e1:SetCode(EFFECT_INDESTRUCTABLE_EFFECT) e1:SetValue(1) c:RegisterEffect(e1) -...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During each of your Standby Phases, inflict damage to your opponent equal to the number of face-up Continuous Spell Cards on the field x 300.
--ジェムフラッシュエナジー --Gem Flash Energy 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) --damage local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Str...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Requires 3 Tributes to Normal Summon (cannot be Normal Set). To Tribute Summon this card face-up, you can Tribute Continuous Spell/Trap Card(s) you control, as well as monsters. Unaffected by the effects of cards with the same card type (Monster, Spell, and/or Trap) as the original card type of the cards Tributed for i...
--真竜機兵ダースメタトロン --Metaltron XII, the True Dracombatant local s,id=GetID() function s.initial_effect(c) --summon with s/t local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_ADD_EXTRA_TRIBUTE) e1:SetTargetRange(LOCATION_S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Tribute this card; excavate the top 3 cards of your Deck, add 1 excavated "Altergeist" card to your hand, also send the rest to the GY. You can only use this effect of "Altergeist Pixiel" once per turn.
--オルターガイスト・ピクシール --Altergeist Pixiel local s,id=GetID() function s.initial_effect(c) --Excavate the top 3 cards from your Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_DECKDES) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand) by having 4 or more "Lightsworn" monsters with different names in your GY. You can pay 1000 LP; destroy all other cards on the field. Once per turn, during your End Phase: Send the top 4 cards of your Deck to the GY.
--裁きの龍 --Judgment Dragon local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_HAND) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is activated: You can Set 1 "Fabled" Spell/Trap from your Deck, except "Fabled Realm's Revival". Your opponent cannot activate cards or effects when you Synchro Summon a "Fabled" Synchro Monster. Once per turn: You can discard 1 "Fabled" card, then activate 1 of these effects; ● Draw 1 card. ● Special Su...
--魔轟神界の復活 --Fabled Realm's Revival --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) --Set 1 "Fabled" Spell/Trap from your Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_C...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] You cannot Pendulum Summon monsters, except "Ritual Beast" and "Zefra" monsters. This effect cannot be negated. ---------------------------------------- [ Monster Effect ] When this card is Normal or Pendulum Summoned: You can target 1 "Ritual Beast" or "Zefra" monster in your Graveyard, except "Rit...
--英霊獣使い-セフィラムピリカ --Ritual Beast Tamer Zeframpilica local s,id=GetID() function s.initial_effect(c) c:SetSPSummonOnce(id) --pendulum summon Pendulum.AddProcedure(c) --splimit local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetRange(LOCATION_PZONE) e2:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON) e2:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Special Summon 1 "Gagaga" monster from your hand as a Level 4 monster.
--ガガガウィンド --Gagagawind 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={SET...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can banish 1 DARK monster from your Graveyard to target 1 Level 4 or lower LIGHT monster your opponent controls; equip it to this card. (You can only equip 1 monster at a time to this card with this effect.) If this card on the field would be destroyed, the monster equipped to it with this effect is ...
--闇魔界の戦士長 ダークソード --Dark Blade the Captain of the Evil World 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_MZ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Special Summoned. Must be Normal Summoned/Set by Tributing 3 monsters. This card's ATK/DEF are equal to the number of cards your opponent controls x 1000. During your Main Phase: You can destroy this card. If this card is destroyed and sent to the GY: Destroy all cards on the field.
--邪神イレイザー --The Wicked Eraser local s,id=GetID() function s.initial_effect(c) --summon with 3 tribute local e1=aux.AddNormalSummonProcedure(c,true,false,3,3) local e2=aux.AddNormalSetProcedure(c,true,false,3,3) --cannot special summon local e3=Effect.CreateEffect(c) e3:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFEC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 of your "Ritual Beast Tamer" monsters and 1 of your "Spiritual Beast" monsters that are banished and/or in your Graveyard; Special Summon them in Defense Position. After this card is activated, you cannot Special Summon monsters, except "Ritual Beast" monsters, for the rest of this turn. You can only activate ...
--霊獣の騎襲 --Ritual Beast Ambush 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:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Winged Beast monsters you control cannot be targeted by your opponent's card effects, or their monsters' attacks, except your Winged Beast monster(s) with the highest ATK. You can send to the GY, this card and 2 "Simorgh" monsters you control with different original Attributes whose original Levels are 7 or higher; ret...
--神鳥の烈戦 --Simorgh Sky Battle --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) c:RegisterEffect(e1) --Limit battle target local e2=Effect.CreateEffect(c) e2:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card is treated as a Normal Monster while face-up on the field or in the Graveyard. While this card is face-up on the field, you can Normal Summon it to have it be treated as an Effect Monster with this effect: ● Once per turn, you can select 1 face-up Level 4 or lower DARK monster you control. It can attack your ...
--シャドウ・ダイバー --Shadow Delver local s,id=GetID() function s.initial_effect(c) Gemini.AddProcedure(c) --1 Level 4 or lower DARK monster can attack directly local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetRange(LOCAT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a Spell/Trap Card, or monster effect, is activated, and you control a "Yang Zing" card: Negate the activation, and if you do, shuffle that card into the Deck, then destroy 1 other "Yang Zing" card you control.
--竜星の九支 --Nine Pillars of Yang Zing local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_NEGATE+CATEGORY_TODECK+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_CHAINING) e1:SetCondition(s.condition) e1:SetTarget(s.target) e1:SetOp...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can banish this card from your GY; Special Summon 1 "Orcust" monster from your Deck, except "Orcust Harp Horror", also you cannot Special Summon monsters for the rest of this turn, except DARK monsters. You can only use this effect of "Orcust Harp Horror" once per turn.
--オルフェゴール・ディヴェル --Orcust Harp Horror 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_GRAVE) e1:SetCountLimit(1,id) e1:SetCost(Cost....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During the turn a face-up Xyz Monster you control was destroyed, if you control no monsters: Target 1 Xyz Monster in your Graveyard that was destroyed this turn and 1 monster in your Graveyard with ATK less than or equal to that Xyz Monster's; Special Summon these targets, but they are destroyed during the End Phase.
--エクシーズ・ダブル・バック --Xyz Double Back local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(s.condition) e1:SetTarget(s.t...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is destroyed by battle and sent to the GY: You can Special Summon 1 WATER monster with 1500 or less ATK from your Deck, in Attack Position.
--グリズリーマザー --Mother Grizzly local s,id=GetID() function s.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_BATTLE_DESTROYED) e1:SetCondition(s.cond...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is destroyed by battle and sent to the Graveyard, inflict 500 damage to your opponent. You can also Special Summon up to 2 "Nimble Musasabi" from your Deck to your opponent's side of the field in face-up Attack Position. This card cannot be Tributed for a Tribute Summon.
--素早いムササビ --Nimble Musasabi local s,id=GetID() function s.initial_effect(c) --battle destroyed local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DAMAGE+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATTLE_DESTROYED) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card's ATK/DEF become its Level x 200. Once per turn, during your Standby Phase: Increase this card's Level by 1 (max. 12). You can target 1 "Fortune Lady" monster you control; banish any number of other Spellcaster monsters from your hand, field, and/or GY, and if you do, increase or reduce that monster's Level b...
--フォーチュンレディ・パスティー --Fortune Lady Past --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) --Increase ATK/DEF by 200 per Level local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_SET_ATTACK) e1:...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 attacking monster; that target loses 700 ATK until the end of this turn.
--弱体化の仮面 --Mask of Weakness 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:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP) e1:SetHintTiming(TIMING_DAMAGE_ST...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 of your banished Cyberse monsters; Special Summon it. During your Main Phase, if your LP are 2000 or less: You can banish this card from your GY, then target 2 of your banished Cyberse monsters; add them to your hand. You can only use each effect of "Cynet Rollback" once per turn.
--サイバネット・ロールバック --Cynet Rollback --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Special Summon 1 banished Cyberse monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_F...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Your opponent chooses 1 monster in your Graveyard. During the End Phase, add that monster to your hand.
--苦渋の転生 --Painful Return local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) end funct...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
After damage calculation, when this card destroys a monster by battle: Banish that monster.
--聖導騎士イシュザーク --Divine Knight Ishzark 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_F) e1:SetCode(EVENT_BATTLED) e1:SetCondition(s.condition) e1:SetTa...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Add 1 "Witchcrafter" monster from your Deck to your 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 Creation" effect per turn, and only once that turn.
--ウィッチクラフト・クリエイション --Witchcrafter Creation --Scripted by AlphaKretin 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) e1:SetTarget(s.thtg)...
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 Link Summon of a Cyberse monster: You can add 1 "Cynet" Spell/Trap from your Deck to your hand, then discard 1 card. You can banish this card from your GY; during the End Phase of this turn, shuffle 1 Cyberse monster from your GY into the Deck. You can only use each ef...
--ファイアウォール・ファントム --Firewall Phantom --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Add 1 "Cynet" Spell/Trap to the hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_HANDES) e1:SetType(EFFECT_TYPE_SINGLE+EFFEC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is Special Summoned: You can target 1 other face-up monster on the field; equip that face-up monster to this card. At the start of the Damage Step, if this card battles an opponent's monster with the same Type and Attribute as the Monster Card equipped by this card's effect: You can destroy that opponent's...
--ロック・スケイル --Rock Scales --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Equip 1 other face-up monster local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_DELAY+E...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a monster is Special Summoned from your Graveyard, you can draw 1 card.
--生還の宝札 --Card of Safe Return 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) --draw local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_DRAW) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your Main Phase: You can target 1 "Wind-Up" monster in your Graveyard; change this face-up Attack Position card you control to face-up Defense Position, and Special Summon that target in face-up Defense Position. This effect can only be used once while this card is face-up on the field.
--ゼンマイネズミ --Wind-Up Rat 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:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_NO_TURN_RESET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 Fish monster you control; it is treated as a Tuner this turn. When an opponent's monster declares an attack: You can discard 1 Fish monster; change all monsters your opponent controls to Defense Position. If your Fish monster is destroyed by battle or sent to your GY: You can send this face-up card fro...
--白の仲裁 --Arbitration of White --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) --Treat a Fish monster as a Tuner local e2=Effect.CreateEffect(c) e2:SetDescription(aux.S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During the Main Phase: Target 1 "Drytron" monster or 1 Ritual Monster you control, and 1 face-up monster your opponent controls; your monster loses exactly 1000 ATK until the end of your opponent's turn, and if it does, destroy that opponent's monster. You can only activate 1 "Drytron Asterism" per turn.
--星彩の竜輝巧 --Drytron Asterism --Scripted by Naim local s,id=GetID() function s.initial_effect(c) local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_ATKCHANGE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CH...
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 Level 8 or lower monster. You can reveal this card and 1 monster in your hand; Special Summon 1 of the 2, and if you do, banish the other, also for the rest of this turn, you cannot Special Summon from the Extra Deck, except Synchro Monsters, and ca...
--ブルーミー --Broomy --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Cannot be used as Synchro Material, except for the Synchro Summon of a Level 8 or lower monster local e0=Effect.CreateEffect(c) e0:SetType(EFFECT_TYPE_SINGLE) e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e0:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Pay half your LP; send 1 monster from your Extra Deck to the GY. You can only activate 1 "Extra-Foolish Burial" per turn. You cannot Set Spells/Traps during the turn you activate this card.
--おろかな重葬 --Extra-Foolish Burial local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOGRAVE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetCost(s.cost) e1:SetTarget(s.target) e1:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If only your opponent controls a monster, you can Special Summon this card (from your hand). If Summoned this way, its Level becomes 4. When this card is Tribute Summoned: You can target 1 "Dododo" monster in your GY; Special Summon that target in Defense Position.
--ドドドバスター --Dododo Buster local s,id=GetID() function s.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_HAND) e1:SetCondition(s.spcon) e1:SetOperation(s.spop) c:Register...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Warrior monsters If this card is Link Summoned: You can target 1 "Destiny HERO" monster in your GY; Special Summon it. You can Tribute 1 "Destiny HERO" monster; add 1 "HERO" monster with a different name from your Deck to your hand. You can only use each effect of "Xtra HERO Cross Crusader" once per turn, also you ca...
--X・HERO クロスガイ --Xtra HERO Cross Crusader local s,id=GetID() function s.initial_effect(c) --link summon Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WARRIOR),2,2) c:EnableReviveLimit() --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card is changed to Defense Position when it is Normal Summoned or Flip Summoned. Monsters with A-Counters cannot declare an attack.
--エーリアン・サイコ --Alien Psychic local s,id=GetID() function s.initial_effect(c) --to defense local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_TRIGGER_F+EFFECT_TYPE_SINGLE) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(s.potg) e1:SetOperat...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During damage calculation, if a player would take battle damage: You can make neither player take any battle damage from that battle, and if you do, send 1 Level 4 or lower Insect monster from your Deck to the GY, then, if you sent a Normal Monster this way, you can Special Summon any number of monsters with the same n...
--G・ボールパーク --Giant Ballpark --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) --Prevent damage and send 1 Insect monster from the Deck to the GY local e2=Effect.Cre...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Until your opponent's second End Phase, your opponent shows you all cards that they draw before adding them to their hand.
--ピケルの読心術 --Pikeru's Second Sight 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:SetOperation(s.activate) c:RegisterEffect(e1) end function s.activate(e,tp,eg,ep,ev,re,r,rp) local e1=Effect.CreateEffect(e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] You cannot Pendulum Summon monsters, except "Shaddoll" and "Zefra" monsters. This effect cannot be negated. ---------------------------------------- [ Monster Effect ] If this card is Pendulum Summoned or sent to the GY: You can target 1 card in either player's Pendulum Zone; return it to the hand. ...
--イェシャドール-セフィラナーガ --Shaddoll Zefranaga local s,id=GetID() function s.initial_effect(c) --pendulum summon Pendulum.AddProcedure(c) --splimit local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetRange(LOCATION_PZONE) e2:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON) e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET+...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 Spell/Trap in your GY that mentions "Visas Starfrost"; Set it, and if you Set a Trap or Quick-Play Spell, it can be activated this turn. You can banish this card from your GY, then target 3 Spells/Traps in your GY that mention "Visas Starfrost", except "New World Formation"; shuffle them into the Deck. You can...
--新世壊成劫 --New World Formation --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Set 1 Spell/Trap that mentions "Visas Starfrost" from your GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:Set...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ Effect Monsters Your opponent cannot target Link-4 or higher monsters you control with card effects, also they cannot be destroyed by battle. If you control a "Firewall" Link Monster (Quick Effect): You can banish Link Monsters from your GY whose combined Link Ratings equal exactly 3; Special Summon this card from y...
--プロテクトコード・トーカー --Protectcode Talker --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Link Summon procedure Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2) --Link 4 or higher monsters cannot be destroyed by battle local e1=Effect.CreateEffect(c...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you have no monsters in your GY, you can activate this card from your hand. When your opponent activates a monster effect on the field: Negate that effect, then if you have a Trap in your GY, you can add 1 "Dominus" card from your Deck to your hand. If you activated this card from your hand, you cannot activate the ...
--列王詩篇 --Songs of the Dominators --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Negate an opponent's activated monster effect on the field local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DISABLE+CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_T...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Normal Summoned/Set. Must be Special Summoned by "Commander Covington". You must pay 1000 LP to declare an attack with this card. You can send this card you control to the GY, then target 1 "Machina Soldier", "Machina Sniper", and "Machina Defender" in your GY; Special Summon those targets.
--マシンナーズ・フォース --Machina Force local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Must be Special Summoned by its own condition local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 1 monsters Once per turn, this card cannot be destroyed by battle. During either player's turn, when a card or effect is activated that targets this face-up card: You can detach 1 Xyz Material from this card; negate the activation, and if you do, destroy that card.
--シャイニート・マジシャン --Slacker Magician local s,id=GetID() function s.initial_effect(c) --Xyz Summon Xyz.AddProcedure(c,nil,1,2) c:EnableReviveLimit() --OPT, cannot be destroyed by battle local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If only your opponent controls a monster, you can Special Summon this card (from your hand). If Summoned this way, treat this card as a Tuner. You can only Special Summon "Rose Princess" once per turn this way. You can discard this card; add 1 "White Rose Cloister" from your Deck to your hand.
--ローズ・プリンセス --Rose Princess --Logical Nonsense --Substitute ID local s,id=GetID() function s.initial_effect(c) --Special Summon from hand, treated as a Tuner local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is sent to the GY: You can target 1 face-up monster on the field; place 2 A-Counters on it. During your Main Phase, except the turn this card was sent to the GY: You can banish this card from your GY, then target 1 card with an A-Counter; destroy it. You can only use each effect of "Alien Stealthbuster" on...
--エーリアン・バスター --Alien Stealthbuster --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Place 2 A-Counters local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_COUNTER) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_CARD_TAR...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 5 Machine monsters Once per turn: You can detach 1 material from this card, then target 1 "Cyber Dragon" in your GY; Special Summon that target. Once per turn (Quick Effect): You can banish 1 "Cyber Dragon" from your hand or face-up from your Monster Zone; this card gains 2100 ATK until the end of this turn. If...
--サイバー・ドラゴン・ノヴァ --Cyber Dragon Nova local s,id=GetID() function s.initial_effect(c) --Xyz Summon Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_MACHINE),5,2) c:EnableReviveLimit() --Special Summon a "Cyber Dragon" from GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is destroyed by battle with a Pyro monster and sent to the GY: Each player takes 800 damage.
--オキシゲドン --Oxygeddon local s,id=GetID() function s.initial_effect(c) --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATTLE_DESTROYED) e1:SetCondition(s.damcon) e1:SetTarget(s.dam...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 "Snake-Eye" monster + 1 Illusion monster Must be either Fusion Summoned, or Special Summoned by sending 2 face-up Monster Cards from your Spell & Trap Zone to the GY. If this card is Special Summoned: You can target 1 face-up monster on the field; place it face-up in its owner's Spell & Trap Zone as a Continuous Spel...
--蛇眼の原罪龍 --Snake-Eyes Doomed Dragon --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() c:AddMustBeFusionSummoned() --Fusion Materials: 1 "Snake-Eye" monster + 1 Illusion monster Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_SNAKE_EYE),aux.FilterBoo...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] Once per turn, before damage calculation, if your monster battles an opponent's monster: You can make your monster gain ATK equal to the opponent's monster's ATK, until the end of the Damage Step. ---------------------------------------- [ Monster Effect ] 1 DARK Tuner + 1 non-Tuner "Clear Wing" mon...
--覇王白竜オッドアイズ・ウィング・ドラゴン --Odd-Eyes Wing Dragon local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Pendulum.AddProcedure(c,false) Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_DARK),1,1,Synchro.NonTunerEx(Card.IsSetCard,SET_CLEAR_WING),1,1) --atk local e1=Effect.Create...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Choose 1 player; that player gains 200 Life Points.
--モウヤンのカレー --Mooyan Curry local s,id=GetID() function s.initial_effect(c) --recover local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCategory(CATEGORY_RECOVER) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.rectg) e1:SetOperation(s.recop) c:RegisterE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] When exactly 1 face-up Fusion, Synchro, or Xyz Monster you control that was Special Summoned from the Extra Deck is destroyed by battle, or an opponent's card effect: You can Special Summon that destroyed monster, then destroy this card. You can only use this effect of "Performapal Celestial Magicia...
--EM天空の魔術師 --Performapal Celestial Magician --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) Pendulum.AddProcedure(c) --Special summon back your destroyed monster local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYP...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card cannot be Special Summoned. When this card is Normal Summoned, draw 1 card.
--フレイム・オーガ --Flame Ogre local s,id=GetID() function s.initial_effect(c) --cannot special summon local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) c:RegisterEffect(e1) --draw local e2=Effect.Creat...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control "Ancient Warriors" monsters with 2 or more different Attributes: You can declare 1 Attribute; your opponent cannot activate the effects of monsters they currently control with that Attribute, until the end of this turn (even if this card leaves the field). If your opponent Special Summons a monster(s), o...
--戦華史略-孫劉同盟 --Ancient Warriors Saga - Sun-Liu Alliance --Scripted by AlphaKretin 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) --Declare attribute local e2=Effect.CreateEffect(c) e2:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a card or effect is activated that would destroy 2 or more cards you control: Negate the effect, and if you do, destroy that card, then you can Special Summon 1 "Stardust Dragon" from your Extra Deck.
--スターライト・ロード --Starlight Road 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+CATEGORY_DISABLE+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_CHAINING) e1:SetCondition(s.co...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During either player's turn: You can discard this card to target 1 "Blackwing" monster you control; it gains 500 ATK until the End Phase.
--BF-極夜のダマスカス --Blackwing - Damascus the Polar Night local s,id=GetID() function s.initial_effect(c) --atkup local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(TIMING_DAMAGE_STEP) ...