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: | Inflict 100 damage to your opponent for each card in their Graveyard. | --セメタリー・ボム
--Cemetary Bomb
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_TOGRAVE|TIMING_END_PHASE)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can pay 500 Life Points to Special Summon this card when "Pyramid of Light" is on the field. This card cannot attack during the turn that it is Normal Summoned or Special Summoned. This card cannot be Special Summoned from the Graveyard. If this card destroys a Defense Position monster as a result of battle, inflic... | --スフィンクス・テーレイア
--Sphinx Teleia
local s,id=GetID()
function s.initial_effect(c)
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_GRAVE)
e1:SetCode(EFFECT_SPSUMMON_CO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned, except by its own effect. After this face-up card on the field is destroyed and sent to the Graveyard, during the Standby Phase of the next turn: You can discard 1 card; Special Summon this card from the Graveyard. | --The supremacy SUN
--The Supremacy Sun
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)
e1:SetValue(aux.FALSE)
c:RegisterE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Level 1 monster: Add 1 Level 1 monster from your Deck to your hand. During the End Phase of this turn, take 2000 damage if you did not Normal Summon the added monster, or a card with the same name, after activating this card. | --ワンチャン!?
--Where Arf Thou?
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:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Fallen of Albaz" + 1 Beast, Beast-Warrior, or Winged Beast monster When a Fusion, Synchro, Xyz, or Link Monster's effect is activated (Quick Effect): You can negate that effect, then you can return 1 monster from the field to the hand. During your opponent's turn, while this card is in your GY (Quick Effect): You can ... | --撃鉄竜リンドブルム
--Rindbrumm the Striking Dragon
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials
Fusion.AddProcMix(c,true,true,CARD_ALBAZ,aux.FilterBoolFunctionEx(Card.IsRace,RACES_BEAST_BWARRIOR_WINGB))
--Negate the effect of a Fusion/Synchro/Xyz/Link monster
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Add 1 "Noble Knight" monster or 1 "Noble Arms" card from your Deck or GY to your hand. If your "Noble Knight" monster equipped with a "Noble Arms" Equip Spell is destroyed by battle and sent to the GY, while this card is in your GY: You can add this card to your hand. You can only use 1 "Heritage of the Chalice" effect... | --聖杯の継承
--Heritage of the Chalice
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Noble Knight" monster or "Noble Arms" card from deck
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Chronomaly" monster: You can discard this card to the Graveyard; add 1 "Chronomaly" monster from your Deck or Graveyard to your hand, except "Chronomaly Crystal Skull". You can only use this effect of "Chronomaly Crystal Skull" once per turn. | --先史遺産クリスタル・スカル
--Chronomaly Crystal Skull
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_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCondi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner Synchro Monster + 1 or more non-Tuner Synchro Monsters During either player's turn, when your opponent activates a Spell/Trap Card that targets this face-up card: You can send 1 card from your hand to the Graveyard; negate the effect. Once per turn, during your opponent's turn: You can banish 1 "T.G." monster f... | --TG ブレード・ガンナー
--T.G. Blade Blaster
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_SYNCHRO),1,1,Synchro.NonTunerEx(Card.IsType,TYPE_SYNCHRO),1,99)
c:EnableReviveLimit()
--Negate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Inflict 500 damage to your opponent. If this card was activated as Chain Link 2 or 3, add this card to the Deck and shuffle it. If this card was activated as Chain Link 4 or higher, return this card to the hand. | --チェーン・ブラスト
--Chain Detonation
local s,id=GetID()
function s.initial_effect(c)
--damage
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.damtg)
e1:SetOperation(s.damop)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Negate all other Trap effects on the field. | --王宮のお触れ
--Royal Decree
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)
--Negate traps
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can target 1 "Goblin" monster in your GY, except "Goblin Biker Clatter Sploder"; Special Summon it. During your opponent's Main Phase, if this card is in your GY (Quick Effect): You can detach 1 Xyz Material from a monster on either field, and if you do, Special Summon th... | --百鬼羅刹 爆音クラッタ
--Goblin Biker Clatter Sploder
--Scripted by Satellaa
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Goblin" monster from your GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish this card from your GY, then target 1 Reptile monster you control and 1 face-up monster your opponent controls, to activate 1 of these effects; ● Change those monsters to face-down Defense Position. ● Destroy that monster you control, and if you do, change the ATK of the other monster to 0 until the end ... | --ヤモイモリ
--Yamorimori
--scripted by Rundas
local s,id=GetID()
function s.initial_effect(c)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_GRAVE)
e1:SetCountLimit(1,id)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Cyberse monsters You can Tribute this card; return 1 Fusion Monster from your GY to the Extra Deck, then Fusion Summon that Fusion Monster from your Extra Deck, by banishing Fusion Materials listed on it from your GY. If this card is banished from your GY: You can make Special Summoned monsters your opponent currentl... | --クロック・リザード
--Clock Lizard
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_CYBERSE),2)
--Fusion Summon
local e1=Fusion.CreateSummonEff({handler=c,location=LOCATION_GRAVE,fusfilter=s.lizardcheck,matfilter=aux... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a Spell Card is activated, gain 500 LP immediately after it resolves. | --魔法吸収
--Spell Absorption
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)
--LP up
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e0:SetCode(EVENT_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 face-up Trap Card on the field and destroy it. | --罠はずし
--Remove Trap
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:RegisterEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 3 Fiend-Type monsters Once per turn, during either player's turn: You can detach 1 Xyz Material from this card, then target 1 "Dark Contract" card you control; destroy it, and if you do, draw 1 card. If this card battles an opponent's monster, during damage calculation: You can detach 1 Xyz Material from this c... | --DDD磐石王ダリウス
--D/D/D Stone King Darius
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_FIEND),3,2)
--Destroy and Draw
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 Normal Monster or 1 "Magikey" monster in your GY; add it to your hand, then you can apply 1 of these effects. ● Fusion Summon 1 "Magikey" Fusion Monster from your Extra Deck in Defense Position, using monsters from your hand or field as Fusion Material. ● Ritual Summon 1 "Magikey" Ritual Monster from y... | --繋がれし魔鍵
--Magikey Duo
--Scripted by edo9300
local s,id=GetID()
function s.initial_effect(c)
--Activate
local fparams={fusfilter=aux.FilterBoolFunction(Card.IsSetCard,SET_MAGIKEY),sumpos=POS_FACEUP_DEFENSE}
local rparams={filter=aux.FilterBoolFunction(Card.IsSetCard,SET_MAGIKEY),lvtype=RITPROC_GREATER,sumpos=POS_FAC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Ritual Summoned, except by "Dogmatikalamity" or another "Dogmatika" card effect. "Dogmatika" monsters you control are unaffected by the activated effects of your opponent's Fusion, Synchro, Xyz, and Link Monsters. During your Main Phase: You can make your opponent choose and apply 1 of these effects ('you' in... | --凶導の白き天底
--Dogmatika Alba Zoa
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Cannot be special summoned
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CON... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, if you have a "Magician" card in your other Pendulum Zone: You can discard 1 Pendulum Monster, then target 1 Spell/Trap Card on the field; destroy it. ---------------------------------------- [ Flavor Text ] This gifted magician can awaken the energy stored in the deep places of the e... | --竜穴の魔術師
--Dragonpit Magician
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--destroy
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_DESTROY)
e2:SetProperty(EFFECT_FLAG_CARD_TARGET)
e2:SetType(EFFECT_TYPE_IGNITION)
e2:S... |
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: Destroy the monster that destroyed this card. | --黄泉へ渡る船
--Yomi Ship
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetCondition(s.condition)
e1:SetTarget(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 10 monsters You can also Xyz Summon this card by discarding 1 "Rank-Up-Magic" Spell Card and using a "Utopia" monster you control as the Xyz Material. (Xyz Materials attached to that monster also become Xyz Materials on this card.) Once per turn: You can target 1 "Number" monster in your Graveyard; Special Summ... | --No.99 希望皇龍ホープドラグーン
--Number 99: Utopic Dragon
local s,id=GetID()
function s.initial_effect(c)
--Xyz summon
Xyz.AddProcedure(c,nil,10,3,s.ovfilter,aux.Stringid(id,0),3,s.xyzop)
c:EnableReviveLimit()
--Special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,1))
e1:SetCategory(CATEGORY_SP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 5 face-up "Inzektor" cards you control to the Graveyard; destroy all cards your opponent controls, also, during the Battle Phase of this turn, your opponent cannot activate monster effects that activate in the hand or Graveyard. | --ファイナル・インゼクション
--Final Inzektion
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:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish this card from your Graveyard; all face-up "Laval" monsters you currently control gain 400 ATK. | --灼熱工の巨匠カエン
--Kayenn, the Master Magma Blacksmith
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_IGNITION)
e1:SetRange(LOCATION_GRAVE)
e1:SetCost(Cost.SelfBanish)
e1:SetTarget... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent controls a monster, you can Special Summon this card from your hand. When this card is Special Summoned this way, select 1 face-up "Scrap" monster you control, and destroy it. | --スクラップ・ブレイカー
--Scrap Breaker
local s,id=GetID()
function s.initial_effect(c)
--Special Summon procedure
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:SetValue(1)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy as many WATER monsters you control as possible, then you can Special Summon WATER monsters from your hand, up to the number of monsters destroyed by this effect. | --大波小波
--Big Wave Small Wave
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you have no cards in your hand, this face-up card cannot be destroyed by battle or by card effects. | --インフェルニティ・ガーディアン
--Infernity Guardian
local s,id=GetID()
function s.initial_effect(c)
--cannot destroy
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.condition)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Predaplant" monster + 1 DARK monster whose original Level is 8 or higher Must first be Fusion Summoned. Once per turn: You can target 1 face-up monster on the field; until the end of this turn, change that target's ATK to 0, also that target has its effects negated. If this card is destroyed and sent to the Graveyar... | --グリーディー・ヴェノム ・フュージョン・ドラゴン
--Greedy Venom Fusion Dragon
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_PREDAPLANT),s.ffilter2)
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_... |
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 Insect monster from your GY. You can only Special Summon "Beetrooper Assault Roller" once per turn this way. Gains 200 ATK for each Insect monster you control, except this card. When this card is destroyed by battle: You can add 1 "Beetrooper" monster fro... | --騎甲虫アサルト・ローラー
--Beetrooper Assault Roller
--Scripted by Zefile
local s,id=GetID()
function s.initial_effect(c)
--Special Summon procedure
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:SetCountLi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up "Photon" monster you control; until the End Phase, it gains 700 ATK, and if it attacks a Defense Position monster, inflict piercing Battle Damage to your opponent. When it inflicts Battle Damage to your opponent this turn: You can target 1 Spell/Trap Card on the field; destroy that target. | --フォトン・トライデント
--Photon Trident
local s,id=GetID()
function s.initial_effect(c)
--Targeted "Photon" monster gains 700 ATK, also inflict piercing damage
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon this card in Attack Position as a Normal Monster (Warrior/DARK/Level 3/ATK 0/DEF 0). (This card is NOT treated as a Trap.) During your turn, except the turn this card was sent to the GY: You can banish this card from your GY, then target 1 face-up Trap your opponent controls; negate its effects until the... | --幻影騎士団トゥーム・シールド
--The Phantom Knights of Tomb Shield
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:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute 1 Effect Monster: Special Summon this card from your hand, then Special Summon 1 "Epigonos Token" (Level 1/ATK 0/DEF 0) with the same Type and Attribute as the Tributed monster's original Type and Attribute. You can only use this effect of "Epigonen, the Impersonation Invader" once per turn. | --模拘撮星人 エピゴネン
--Epigonen, the Impersonation Invader
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon self and Token
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card inflicts Battle Damage to your opponent's Life Points, you can return 1 Continuous Spell Card from your Graveyard to the top of your Deck. | --ヌビアガード
--Nubian Guard
local s,id=GetID()
function s.initial_effect(c)
--todeck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DAMAGE)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute this card; Special Summon 1 "Machina" monster from your hand or Deck, except "Machina Megaform". If a face-up "Machina Fortress" you control is sent to your GY while this card is in your GY (except during the Damage Step): You can banish that "Machina Fortress" from the GY; Special Summon this card. You... | --マシンナーズ・メガフォーム
--Machina Megaform
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,id)
e1:SetCost(Cost.SelfTrib... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you Ritual Summon exactly 1 " Nekroz " Ritual Monster with a card effect that requires use of monsters, this card you control can be used as the entire Tribute . When this card is Normal Summoned : You can Special Summon 1 "Nekroz" monster from your Deck , except "Avance, Swordsman of the Nekroz". If this card is Tr... | --影霊依の魔剣士 アバンス
--Avance, Swordsman of the Nekroz
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Nekroz" monster from your Deck, except "Avance, Swordsman of the Nekroz"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 face-up Level 8 or higher monster you control; draw 2 cards. | --アドバンスドロー
--Advance Draw
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Normal Summon/Set this card without Tributing, but its original ATK and DEF become halved. | --可変機獣 ガンナードラゴン
--Fusilier Dragon, the Dual-Mode Beast
local s,id=GetID()
function s.initial_effect(c)
--summon & set with no tribute
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card declares an attack: It gains 600 ATK. (Quick Effect): You can target 1 face-up monster your opponent controls; it loses ATK equal to this card's current ATK until the end of this turn, then banish this card until the Standby Phase of the next turn. You can only use this effect of "Diabound Kernel" once p... | --ディアバウンド・カーネル
--Diabound Kernel
local s,id=GetID()
function s.initial_effect(c)
--atk up
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:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetOperation(s.atkop1)
c:Re... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 Effect Monsters on the field, including a "Madolche" monster; return those Effect Monsters to the hand/Extra Deck, then you can Special Summon 1 "Madolche" monster from your hand or Extra Deck with ATK less than or equal to the total original ATK of those returned monsters. If a "Madolche" card(s) is shuffled ... | --マドルチェ・デセール
--Madolche Dessert
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Return 2 Effect monsters, including a "Madolche" monster, to the hand/Extra Deck and Special Summon 1 "Madolche" monster from the hand/Extra Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 monster equipped with a "Bamboo Sword" Equip Spell Card. If it inflicts Battle Damage to your opponent while equipped with a "Bamboo Sword" card, they skip their next Draw Phase. Destroy this card during your second Standby Phase after activation. | --魂を吸う竹光
--Soul Devouring Bamboo Sword
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
--skip... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 Wyrm monster; add 1 Wyrm monster from your Deck to your hand, or if you Tributed a non-Effect Monster to activate this card, you can Special Summon it instead, but negate its effects. During your Main Phase, if you control a face-up non-Effect Monster: You can banish this card from your GY; add 1 "Tenyi" card... | --天幻の龍輪
--Heavenly Dragon Circle
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Add to your hand, or Special Summon, 1 Wyrm monster 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:SetCountLi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster your opponent controls; equip this card to that target. It gains 500 ATK/DEF. If this card is sent to the GY because the equipped monster has left the field: Draw 1 card, or if you activated this card this turn, draw 2 cards then discard 1 card, instead. You can only use this effect of "Revenge... | --捲怒重来
--Revenge Rally
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Equip to opponent's monster, it gains 500 ATK/DEF
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reveal 3 Level 1 monsters with different names from your Deck, your opponent adds 1 to their hand, you add 1 to your hand, and you shuffle the third into the Deck. You can only activate 1 "Jack-In-The-Hand" per turn. | --ジャック・イン・ザ・ハンド
--Jack-In-The-Hand
--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:SetCountLimit(1,i... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this face-up card you control is banished: You can banish 1 Psychic-Type monster with 1500 or less ATK from your Deck. Then, during your next Standby Phase, if this card is still banished: Special Summon that monster banished by this effect. | --テレポンD.D.
--D.D. Telepon
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:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up Spell your opponent controls; this turn, negate the activated effects of that Spell and all Spells on the field with that same original name. If the targeted card would be sent to the opponent's GY this turn, it is added to their hand instead. You can only activate 1 "Blizzard" per turn. | --ブリザード
--Blizzard
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have no cards in your hand: Target 1 "Infernity" card in your Graveyard and 1 card your opponent controls; banish the first target, and if you do, destroy the second target. | --インフェルニティ・ブレイク
--Infernity Break
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card and 1 "Darklord" card, then target 1 "Darklord" card in your Graveyard; add it to your hand. During either player's turn: You can pay 1000 LP, then target 1 "Darklord" Spell/Trap Card in your Graveyard; apply that target's effect, then shuffle that target into the Deck. You can only use each e... | --堕天使アムドゥシアス
--Darklord Amdusc
local s,id=GetID()
function s.initial_effect(c)
c:SetSPSummonOnce(id)
--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:SetRange(LOCATION_HAND)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters Once per turn: You can detach 1 Xyz Material from this card, then target 1 face-up monster your opponent controls with ATK less than or equal to this card's; send it to the Graveyard, and if you do, inflict 1000 damage to your opponent. This card cannot attack the turn you activate this effect. | --No.50 ブラック・コーン号
--Number 50: Blackship of Corn
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 4 monsters
Xyz.AddProcedure(c,nil,4,2)
--Send 1 monster your opponent controls to the GY, and if you do, inflict 1000 damage to them
local e1=Effect.CreateEffect(c)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can only be activated at the start of Main Phase 1. During the Main Phases and Battle Phase of this turn, neither player can Summon monsters. | --カーム・マジック
--Calming Magic
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.operation)
c:RegisterEffect(e1)
end
function s.condition(e,tp,eg,ep,ev,re,r,rp)
retur... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Lunalight" monsters Cannot be destroyed by battle. Once per turn, during your Main Phase 1: You can Tribute 1 other "Lunalight" monster; for the rest of this turn, the first time each monster your opponent controls would be destroyed by battle, it is not destroyed, also this card can attack all monsters your opponen... | --月光舞猫姫
--Lunalight Cat Dancer
local s,id=GetID()
function s.initial_effect(c)
--fusion material
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_LUNALIGHT),2)
c:EnableReviveLimit()
--battle indestructable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Red Dragon Archfiend" you control; if that monster you control battles an opponent's monster this turn, apply these effects until the end of the Damage Step. ● It gains 1000 ATK. ● Your opponent cannot activate cards or effects. ● If it attacks a Defense Position monster, inflict piercing battle damage to you... | --アブソリュート・パワーフォース
--Absolute Powerforce
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Apply effects when the targeted "Red Dragon Archfiend" you control battles an opponent's monster this turn
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: | During your Main Phase: You can destroy 1 card in your hand, and if you do, Special Summon 1 Level 4 or lower "Nephthys" monster from your hand, except "Defender of Nephthys". During your next Standby Phase after this card was destroyed by card effect and sent to the GY: You can destroy 1 "Nephthys" monster in your Dec... | --ネフティスの護り手
--Defender of Nephthys
local s,id=GetID()
function s.initial_effect(c)
--Destroy 1 card in your hand, and if you do, Special Summon 1 Level 4 or lower "Nephthys" monster from your hand, except "Defender of Nephthys"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can reveal this card and 1 other Level 8 Dragon monster in your hand; Special Summon both in Defense Position, but negate their effects, also you cannot Normal or Special Summon monsters for the rest of this turn, except LIGHT or DARK Dragon monsters. You can banish this card from your GY, then target 1 Level 4 LIG... | --星雲龍ネビュラ
--Nebula Dragon
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 4 "Ancient Gear" monsters Must be Fusion Summoned and cannot be Special Summoned by other ways. Unaffected by Spell/Trap effects. Your opponent's monsters cannot activate their effects during the Battle Phase. This card can attack all monsters your opponent controls, once each. If this card attacks a Defense Position m... | --古代の機械混沌巨人
--Chaos Ancient Gear Giant
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_ANCIENT_GEAR),4)
--special summon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 2 cards from the Graveyard(s), and shuffle them into their owner's Deck(s). After activation, remove this card from play instead of sending it to the Graveyard. You can only activate 1 "Pot of Benevolence" per turn. | --無欲な壺
--Pot of Benevolence
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTarget(... |
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 2 or more face-up "X-Saber" monsters, and cannot be Special Summoned by other ways. Once per turn: You can target 1 Level 4 or lower "X-Saber" monster in your Graveyard; Special Summon that target. | --XX-セイバー フォルトロール
--XX-Saber Faultroll
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetValue(a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can Tribute 1 "Raidraptor" monster, then target 1 "Rank-Up-Magic" Spell Card in your Graveyard; add it to your hand, also you cannot Xyz Summon for the rest of this turn, except with the effect of a "Rank-Up-Magic" Spell Card. | --RR-ネクロ・ヴァルチャー
--Raidraptor - Necro Vulture
local s,id=GetID()
function s.initial_effect(c)
--tohand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 7 monsters You can also Xyz Summon this card by using a Rank 2 monster you control with 5 or more materials. (Transfer its materials to this card.) During your Main Phase: You can detach 1 material from this card, and if you do, negate the effects of all face-up monsters your opponent currently controls, until ... | --エクスピュアリィ・ハピネス
--Expurrely Happiness
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon Procedure
Xyz.AddProcedure(c,nil,7,2,s.ovfilter,aux.Stringid(id,0))
--Negate the opponent's monsters' effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stri... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, you can select 1 "Genex" monster in your Graveyard. Until the End Phase, this card's name is treated as the selected monster's name. | --リサイクル・ジェネクス
--Genex Recycled
local s,id=GetID()
function s.initial_effect(c)
--name change
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(s.target)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Guardian of the Labyrinth" + "Protector of the Throne" | --魔導騎士ギルティア
--Giltia the D. Knight
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,89272878,10071456)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can add 1 "Gem-Knight" card from your Deck to your hand, except "Gem-Knight Nepyrim", also any effect damage your opponent takes during the Main Phase this turn is halved. During your Main Phase, you can: Immediately after this effect resolves, Normal Summon 1 "Gem-" mons... | --ジェムナイト・ネピリム
--Gem-Knight Nepyrim
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Gem-Knight" card from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 1500 ATK while you have no cards in your hand nor in your Spell & Trap Zones. | --ナイトメアテーベ
--Theban Nightmare
local s,id=GetID()
function s.initial_effect(c)
--atk
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.atkcon)
e1:SetValue(1500)
c:RegisterEffect(e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a Spell/Trap Card while you control a "Dragunity" Synchro Monster: Negate the activation, and if you do, banish that card, then if you control a Level 10 "Dragunity" monster, you can have 1 "Dragunity" monster you control gain 100 ATK for each face-up card that is currently banished. You ca... | --ドラグニティ・ヴォイド
--Dragunity Oubliette
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_REMOVE+CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_O... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Level 10 monster, you can Special Summon this card (from your hand). You can only Special Summon "Finis Terrae, Tower of the Necroworld" once per turn this way. If this card is sent to the GY: You can target 1 face-up card on the field; that card cannot be destroyed by card effects this turn. You can o... | --屍界塔フィニステラ
--Finis Terrae, Tower of the Necroworld
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon it from the hand if you control a Level 10 monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_U... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn, when your opponent activates a Trap Card while you control a Plant-Type monster: You can send this card from your hand to the Graveyard; negate the activation, and if you do, destroy it. | --薔薇の聖弓手
--Rose Archer
local s,id=GetID()
function s.initial_effect(c)
--Negate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DAMA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish 1 "Junk" monster from your Graveyard; this card gains 400 ATK until the end of this turn. | --ジャンク・ブレーダー
--Junk Blader
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_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(s.cost)
e1:SetOperation(s.operation)
c:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster with a Predator Counter leaves the field while this card is face-up on the field: Add 1 "Predap" card from your Deck to your hand. You can only use this effect of "Predaplanet" once per turn. You can banish this card from your Graveyard; Fusion Summon 1 Fusion Monster from your Extra Deck, using monsters f... | --捕食惑星
--Predaplanet
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)
--register when a card leaves the field
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the Graveyard: Banish 1 Level 7 or higher LIGHT or DARK Dragon-Type monster from your Deck. If this card is banished from your Graveyard: You can add the monster banished by this card's effect to your hand. | --エクリプス・ワイバーン
--Eclipse Wyvern
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_TO_GRAVE)
e1:SetTarget(s.target)
e1:SetOperation(s.o... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Utopia" monster: You can draw 1 card. If a monster(s) you control is banished during the Battle Phase (except during the Damage Step): You can banish this card from the field, then target 1 of those banished monsters; Special Summon that target, and if you do, banish 1 monster your opponent controls t... | --ZS-幻影賢者
--ZS - Vanish Sage
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_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,id)
e1:SetCondition(s.condition)
e1:SetTarget(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be used as a Synchro Material Monster, except for the Synchro Summon of an EARTH monster. You can target 1 EARTH monster on the field; reduce its Level by 1. You can use the effect of "Mystic Macrocarpa Seed" up to twice per turn. | --幻妖種ミトラ
--Mystic Macrocarpa Seed
local s,id=GetID()
function s.initial_effect(c)
--synchro limit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_BE_SYNCHRO_MATERIAL)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetValue(s.synlimit)
c:RegisterEffect... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card's name becomes "Jinzo" while on the field or in the GY. You can Tribute this card; add 1 "Jinzo" monster from your Deck to your hand, except "Jinzo - Jector", then reveal all Set cards in your opponent's Spell & Trap Zones, and if there are Traps among them, you can Special Summon "Jinzo" monsters from your h... | --人造人間-サイコ・ジャッカー
--Jinzo - Jector
local s,id=GetID()
function s.initial_effect(c)
--change name
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_CHANGE_CODE)
e1:SetRange(LOCATION_MZONE|LOCATION_GRAVE)
e1:SetValue(CARD_JINZO)
c:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your hand or GY: You can target 1 face-up Spell/Trap your opponent controls; return it to the hand, and if you do, Special Summon this card. You can only use this effect of "Magical Hound" once per Duel. | --マジカル・ハウンド
--Magical Hound
--Scripted by Hel
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_HAND|LOCATION_GR... |
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, you can add 1 Level 3 or lower Dragon-Type monster from your Deck to your hand. | --ドレッド・ドラゴン
--Dread Dragon
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetCondition(s.condi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If all monsters you control are "Raidraptor" monsters (min. 1): You can Special Summon this card from your hand. You can banish this card from your GY, then target 1 "Raidraptor" Spell/Trap in your GY; add it to your hand. You can only use each effect of "Raidraptor - Heel Eagle" once per turn. | --RR-ヒール・イーグル
--Raidraptor - Heel Eagle
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)
e1:SetCountLimit(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Tribute Summoned: Target 1 monster on the field; destroy that target. | --雷帝ザボルグ
--Zaborg the Thunder 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)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_SUMM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 Fairy-Type monsters You can detach 1 Xyz Material from this card; draw 1 card. You can only use this effect of "Fairy Cheer Girl" once per turn. | --フェアリー・チア・ガール
--Fairy Cheer Girl
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_FAIRY),4,2)
c:EnableReviveLimit()
--draw
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card gains 500 ATK for each face-up WIND monster you control. While you control another face-up WIND monster, your opponent cannot select this card as an attack target. | --ハンター・アウル
--Hunter Owl
local s,id=GetID()
function s.initial_effect(c)
--cannot be attacked
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_BE_BATTLE_TARGET)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.atcon)
e1:SetValue(aux.imv... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent Special Summons a monster(s) in Defense Position: Banish those monster(s) that were Summoned in (and are currently in) Defense Position. * The above text is unofficial and describes the card's functionality in the OCG. | --姑息な落とし穴
--Double Trap Hole
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.filte... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You take no Battle Damage from battles involving this card. When this attacking card is destroyed by battle and sent to the Graveyard, Special Summon 2 "Rockstone Tokens" (Rock-Type/EARTH/Level 1/ATK 0/DEF 0). These Tokens cannot be Tributed for a Tribute Summon. | --ロックストーン・ウォリアー
--Rockstone Warrior
local s,id=GetID()
function s.initial_effect(c)
--Special summon 2 tokens to your field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent's monster attacks, at the start of the Damage Step: You can send this card from your hand or field to the GY, then target 1 Level 8 Fiend monster in your GY; Special Summon it, but its effects are negated, and if you do, change the attack target to it and perform damage calculation. If a Level 8 Fiend ... | --抹殺の邪悪霊
--Dark Spirit of Banishment
--scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon a target
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay half your LP; Special Summon up to 2 "Dinomorphia" monsters from your GY whose total Levels equal 8 or less, but you cannot declare an attack with them this turn, also you cannot Special Summon for the rest of this turn, except "Dinomorphia" monsters. When your opponent activates a card or effect, while your LP are... | --ダイノルフィア・アラート
--Dinomorphia Alert
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can target monsters on the field with Spell Cards or effects, except this one. Once per turn: You can discard 1 Spell; equip 1 Equip Spell from your hand, Deck, or GY to this card, but return that Equip Spell to the hand during the End Phase. | --妖精伝姫-シンデレラ
--Fairy Tail - Rella
local s,id=GetID()
function s.initial_effect(c)
--cannot be target
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE+EFFECT_FLAG_SET_AVAILABLE)
e1:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetTarge... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Elemental HERO Bubbleman" + "Elemental HERO Clayman" Must be Fusion Summoned and cannot be Special Summoned by other ways. | --E・HERO マッドボールマン
--Elemental HERO Mudballman
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,79979666,84327329)
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While this card is face-up on the field, it cannot be Tributed, except for the Tribute Summon of a Warrior-Type monster. During your Standby Phase, if this card is in your Graveyard and all the monsters in your Graveyard are Warrior-Type: You can Special Summon this card. You must also control no monsters to activate a... | --不死武士
--The Immortal Bushi
local s,id=GetID()
function s.initial_effect(c)
--release limit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_UNRELEASABLE_SUM)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetValue(s.recon)
c:RegisterEffect(e1)
local e2=... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand) by banishing 1 "Infernoid" monster from your hand or Graveyard while the total Levels and Ranks of all Effect Monsters you control are 8 or lower, and cannot be Special Summoned by other ways. Once per turn: You can target 1 monster on the field; ... | --インフェルノイド・ルキフグス
--Infernoid Harmadik
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
Infernoid.RegisterSummonProcedure(c,1)
--Destroy 1 monster on the field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent Special Summons a monster(s) face-up (except during the Damage Step): You can discard this card, then target 1 of those face-up monsters; negate its effects until the end of this turn, also if that face-up monster leaves the field this turn, its controller takes damage equal to its original ATK. You ca... | --朔夜しぐれ
--Ghost Mourner & Moonlit Chill
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
local g=Group.CreateGroup()
g:KeepAlive()
--Negate effects of a Special Summoned monster and inflict damage if it leaves the field this turn
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.String... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 300 ATK/DEF for each "Harpie Lady" on the field. | --ハーピィズペット竜
--Harpie's Pet Dragon
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_MZONE)
e1:SetValue(s.val)
c:RegisterEffect(e1)
local e2=e1:Clon... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with any "Nekroz" Ritual Spell. Must be Ritual Summoned, without using any Level 9 monsters. You can only use each of these effects of "Nekroz of Trishula" once per turn. ● When a card or effect is activated that targets a "Nekroz" monster(s) you control (Quick Effect): You can discard t... | --トリシューラの影霊衣
--Nekroz of Trishula
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetValue(aux.ri... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by battle with a monster that has 1900 or more ATK. | --翻弄するエルフの剣士
--Obnoxious Celtic Guard
local s,id=GetID()
function s.initial_effect(c)
--indes
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(s.indes)
c:RegisterEffect(e1)
end
function s.indes(e,c)
return c:GetAttack()>=1900
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute this card, then target 1 monster your opponent controls; banish it until the End Phase. If this card is in your GY: You can target 1 "Time Thief" monster you control, except "Time Thief Temporwhal"; return that monster to the hand, and if you do, Special Summon this card, but banish it when it leaves th... | --クロノダイバー・テンプホエーラー
--Time Thief Temporwhal
--scripted by Rundas
local s,id=GetID()
function s.initial_effect(c)
--Banish 1 monster until the End Phase
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYP... |
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 or Graveyard) by sending 4 face-up Level 1 monsters you control to the Graveyard, and cannot be Special Summoned by other ways. Other monsters you control cannot attack. During either player's Battle Step, once per battle involving this card: You c... | --絶望神アンチホープ
--Dystopia the Despondent
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--special summon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:RegisterE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Standby Phase: Inflict 600 damage to your opponent. | --ボーガニアン
--Bowganian
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_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_PHASE|PHASE_STANDBY)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Switch the original ATK and DEF of all face-up monsters currently on the field, until the end of this turn. | --右手に盾を左手に剣を
--Shield & Sword
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Elemental HERO Neos" in your Monster Zone; shuffle that "Elemental HERO Neos" into the Deck, and if you do, destroy all cards on the field. | --ラス・オブ・ネオス
--Wrath of Neos
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can substitute this card for any 1 Fusion Material Monster, but the other Fusion Material Monster(s) must be correct. You can Tribute Fusion Material Monsters on the field, including this face-up card; Special Summon 1 corresponding DARK Fusion Monster from your Extra Deck. | --融合呪印生物-闇
--The Dark - Hex-Sealed Fusion
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetLabel(0)
e1:SetCost(s.cost)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send the top card of your Deck to the GY; add 1 Equip Spell from your Deck or GY to your hand. You cannot Normal Summon/Set the turn you activate this card. | --アームズ・ホール
--Hidden Armory
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:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Look at up to 5 cards from the top of your Deck, then place them on the top of the Deck in any order. You can Tribute Summon 1 monster in addition to your Normal Summon/Set this turn. (You can only gain this effect once per turn.) | --カード・アドバンス
--Card Advance
local s,id=GetID()
function s.initial_effect(c)
--Look at up to 5 cards from the top of your Deck, then place them on the top of the Deck in any order
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
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: | 2 Effect Monsters This linked card and monsters it points to cannot be destroyed by your opponent's card effects. If this card points to 2 monsters: You can switch control of those monsters. You can only use this effect of "Geonator Transverser" once per turn. | --転晶のコーディネラル
--Geonator Transverser
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2)
--This linked card and monsters it points to cannot be destroyed by your opponent's car... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, at the end of the Battle Phase: Return this card from the field to the hand. You can only use each of the following effects of "Gen the Diamond Tiger" once per turn. During your Main Phase: You can Special Summon 1 "Ken the Warrior Dragon" from your hand or Deck to your opponent's field in Defense Positi... | --虎菱之玄
--Gen the Diamond Tiger
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Return itself to the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_PHASE|PHASE_BATTL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 2 face-up monsters you control (1 Synchro Monster and 1 non-Synchro monster). Until the End Phase of this turn, reduce the ATK of the Synchro Monster to 0, and the other monster gains ATK equal to the Synchro Monster's original ATK. | --シンクロ・ギフト
--Synchro Gift
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when your opponent activates a Trap Card. During your Standby Phase: Inflict 1000 damage to your opponent. Your opponent must control a face-up Trap Card for you to activate and resolve this effect. During your 3rd End Phase after activation, send this card to the Graveyard. | --爆弾ウニ-ボム・アーチン-
--Explosive Urchin
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
c:RegisterEffect(e1)
--damage
local e2=Effect.CreateEffect(c)
e2:SetDesc... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.