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: | 2+ monsters, including a Winged Beast monster Cannot be used as Link Material. Your opponent cannot target this card or a Winged Beast monster(s) this card points to with card effects. If this card would be destroyed by battle, you can destroy 1 other "Simorgh" card you control instead. During the End Phase: You can Sp... | --王神鳥シムルグ
--Simorgh, Bird of Sovereignty
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Link Summon
c:EnableReviveLimit()
Link.AddProcedure(c,nil,2,3,s.lcheck)
--Cannot be Link Material
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_D... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control 3 or more "Super Quantum" monsters with different names: Shuffle as many cards your opponent controls as possible into the Deck, then your opponent Special Summons 1 monster from their Extra Deck, ignoring its Summoning conditions. You can banish this card and 1 "Super Quantal Fairy Alphan" from your Gra... | --超量必殺アルファンボール
--Super Quantal Alphan Spike
local s,id=GetID()
function s.initial_effect(c)
--Shuffle as many cards your opponent controls as possible into the Deck, then your opponent Special Summons 1 monster from their Extra Deck, ignoring its Summoning conditions
local e1=Effect.CreateEffect(c)
e1:SetDescription... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Effect Monsters If your linked monster attacks a Defense Position monster, inflict piercing battle damage to your opponent. | --ペンテスタッグ
--Pentestag
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2,2)
--pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_PIERCE)
e1:SetRange(LOCATION_MZO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a "Six Samurai" monster(s) is Normal or Special Summoned, place 1 Bushido Counter on this card (max. 2). You can send this card to the GY; draw 1 card for each Bushido Counter on this card. | --六武衆の結束
--Six Samurai United
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(COUNTER_BUSHIDO)
c:SetCounterLimit(COUNTER_BUSHIDO,2)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--add counter
local e2=Effect.C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned by the effect of a "Metaphys" monster: You can banish all Set Spells and Traps on the field. If this card is banished, during the Standby Phase of the next turn: You can shuffle this banished card into the Deck; add 1 "Metaphys" card from your Deck to your hand, except "Metaphys Nephthy... | --メタファイズ・ネフティス
--Metaphys Nephthys
local s,id=GetID()
function s.initial_effect(c)
--remove
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_DELA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control 2 or more face-up Xyz Monsters: Detach 2 Xyz Materials from a monster you control and draw 2 cards. | --エクシーズ・ギフト
--Xyz Gift
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:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
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: | Once per turn: You can change this card to face-down Defense Position. When this card is flipped face-up: You can destroy any number of Spell/Trap Cards on the field, up to the number of other "Geargia" monsters you control. | --ギアギアタッカー
--Geargiattacker
local s,id=GetID()
function s.initial_effect(c)
--turn set
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:Regis... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 DARK Dragon-Type monster + 1 Beast-Type monster Must be either Fusion Summoned, or Special Summoned by Tributing the above cards you control (in which case you do not use "Polymerization"), and cannot be Special Summoned by other ways. If this card destroys a monster by battle: Inflict damage to your opponent equal t... | --ビーストアイズ・ペンデュラム・ドラゴン
--Beast-Eyes Pendulum Dragon
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,s.ffilter,aux.FilterBoolFunctionEx(Card.IsRace,RACE_BEAST))
Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit,nil,nil,nil,false)
--damage... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Add 1 "Gishki" monster from your Deck to your hand. During the End Phase, if you control a WATER Ritual Monster: You can banish this card from your GY; Set 1 "Aquamirror" Spell/Trap directly from your Deck or GY, except "Focused Aquamirror". You can only use this effect of "Focused Aquamirror" once per turn. | --儀水鏡の集光
--Focused Aquamirror
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Gishki" monster to the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, when an opponent's monster declares an attack: You can target 1 "D/D/D" Synchro Monster you control; destroy as many monsters your opponent controls as possible with DEF less than or equal to the targeted monster's ATK, and if you do, inflict 1000 damage to your opponent for each mons... | --DDD超死偉王ホワイテスト・ヘル・アーマゲドン
--D/D/D Super Doom King Bright Armageddon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--1 "D/D" Tuner + 1+ non-Tuner "D/D/D" monsters
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_DD),1,1,Synchro.NonTunerEx(Card.IsSetCard,SET_DDD),1,99)
--Pend... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can declare 1 card name; reveal the top card of your Deck, and if it is the declared card, add it to your hand. Otherwise, return it to the top of the Deck. | --リチュア・ディバイナー
--Gishki Diviner
local s,id=GetID()
function s.initial_effect(c)
--announce
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_MZONE)
e1:SetCountLimit(1)
e1:SetTarget(s.target)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control "Necrovalley": Both players discard any monsters in their hands. | --王家の生け贄
--Royal Tribute
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_HANDES+CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(function(e,tp) return Duel.IsEnvironment(CARD_NECROVALLEY,tp) end)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 3 monsters You can detach 1 material from this card; either Special Summon 1 "Materiactor" monster from your Deck, or add 1 "Materiactor" Spell/Trap from your Deck to your hand. If your opponent Normal or Special Summons a monster(s) (except during the Damage Step): You can add up to 2 materials from this card... | --マテリアクトル・エクサガルド
--Materiactor Exagard
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2+ Level 3 monsters
Xyz.AddProcedure(c,nil,3,2,nil,nil,Xyz.InfiniteMats)
--Special Summon 1 "Materiactor" monster from your Deck, OR add 1 "Materiactor" Spell/Trap ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your Graveyard and you control "Toy Vendor": You can banish this card from your Graveyard, then target 1 "Fluffal" monster in your Graveyard; banish it, and if you do, draw 1 card, then you can send 1 "Toy Vendor" you control to the Graveyard, and if you do, draw 1 card. You can only use this effect ... | --ファーニマル・ウィング
--Fluffal Wings
local s,id=GetID()
function s.initial_effect(c)
--Banish 1 "Fluffal" monatsers and draw 1 card
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_DRAW+CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "End of the World". You can pay 2000 LP; destroy all other cards on the field. | --終焉の王デミス
--Demise, King of Armageddon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--destroy
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(s.cost)
e1:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Target 1 monster on the field; destroy it, and if you do, this card gains ATK equal to that monster's original ATK, then you can change this card's Type to that monster's original Type. Cannot be destroyed by battle. Cannot be destroyed by the effects of monsters with its same Type. | --擬態する人喰い虫
--Mimicking Man-Eater Bug
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Flip
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_SINGLE+EFFECT_TY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute this card, then target 1 face-up monster your opponent controls; destroy that target. | --ヴェルズ・オランタ
--Evilswarm O'lantern
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(Cost.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Special Summon 1 "Gusto" Tuner monster from your Deck. | --ガスタの希望 カムイ
--Kamui, Hope of Gusto
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned by "Silent Magician LV4" and cannot be Special Summoned by other ways. Unaffected by your opponent's Spell effects. | --サイレント・マジシャン LV8
--Silent Magician LV8
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--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(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned, or sent to the GY: You can target 1 monster in your GY, or 1 face-up monster your opponent controls; discard 1 card, and if you do, place that monster in its owner's Spell & Trap Zone as a face-up Continuous Trap. During either player's turn, if this car... | --エニグマスター・パックビット
--Enigmaster Packbit
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Place 1 monster from your GY or your opponent's field in the Spell & Trap Zone as a Continuous Trap
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is used to Ritual Summon "Lycanthrope". You must also Tribute monsters whose total Levels equal 6 or more from the field or your hand. | --合成魔術
--Synthesis Spell
local s,id=GetID()
function s.initial_effect(c)
Ritual.AddProcGreaterCode(c,6,nil,84385264)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent's LP is 4000 or higher, your LP become 1000 less than theirs. You can only activate 1 "Loss Time" per turn. | --ロスライム
--Loss Time
--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:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCondition(s.condition)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 Fusion Monster from your Extra Deck, by banishing Fusion Materials listed on it from your GY. Only Pendulum Monsters can be used as Fusion Material for this card's effect. You can only activate 1 "Dowsing Fusion" per turn. | --ダウジング・フュージョン
--Dowsing Fusion
--Scripted by edo9300
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Fusion.CreateSummonEff(c,nil,aux.FALSE,s.fextra,Fusion.BanishMaterial,nil,nil,nil,nil,nil,nil,nil,nil,nil,s.extratg)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
c:RegisterEffect(e1)
end
functi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by returning 1 "U.A." monster you control to the hand, except "U.A. Midfielder". You can only Special Summon "U.A. Midfielder" once per turn this way. During either player's turn: You can target 1 other "U.A." monster you control; return that face-up monster to the hand... | --U.A.ファンタジスタ
--U.A. Midfielder
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each turn, 1 Level 5 or higher Fiend monster you Normal Summon can be Summoned without Tributing. If exactly 1 Normal Summoned/Set Level 5 or higher Fiend monster (and no other cards) would be destroyed, you can send this card to the GY instead. | --悪魔の憑代
--Sinister Yorishiro
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--decrease tribute
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can activate 1 of these effects; ● Add 1 "Magistus" Spell/Trap from your Deck to your hand. ● Return 1 of your banished Level 4 or lower Spellcaster monsters to your GY. You can banish this card from your GY, then target 1 "Magistus" monster you control; equip it with 1 "... | --結晶の大賢者サンドリヨン
--Rilliona, the Magistus of Verre
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate 1 of these effects
local e1a=Effect.CreateEffect(c)
e1a:SetDescription(aux.Stringid(id,0))
e1a:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1a:SetProperty(EFFECT_FLAG_DELAY)
e1a:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your Graveyard: You can target 1 "Utopia" Xyz Monster you control; attach this card from the Graveyard to it as an Xyz Material. You can only use the effect of "Xyz Agent" once per Duel. | --エクシーズ・エージェント
--Xyz Agent
local s,id=GetID()
function s.initial_effect(c)
--material
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_GRAVE)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_DUEL)
e1:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is being attacked by a LIGHT monster, its DEF is halved during damage calculation only. | --闇の芸術家
--Dark Artist
local s,id=GetID()
function s.initial_effect(c)
--defdown
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_SET_DEFENSE_FINAL)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.defcon)
e1:SetValue(s.defval)
c:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Effect Monsters If a monster(s) is Special Summoned to a zone(s) this card points to: Banish as many of those monster(s) as possible, also as many Spells/Traps on the field as possible, and if you do, inflict 500 damage to your opponent for each of their cards banished by this effect. | --トポロジック・トゥリスバエナ
--Topologic Trisbaena
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2)
--banish
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_DAMAGE)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no monsters: Special Summon 3 Level 2 or lower Beast Effect Monsters with different names from your Deck, but their effects are negated, also they are destroyed during the End Phase. For the rest of this turn after this card resolves, you cannot Special Summon monsters, except Beast monsters. | --魔獣の懐柔
--Obedience Schooled
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:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 2 Dragon monsters; Special Summon 1 Level 8 Dragon monster from your Deck. | --ドラゴニック・タクティクス
--Dragonic Tactics
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Fusion Monster on the field or in either GY; return it to the Extra Deck, then you can Special Summon 1 "Fallen of Albaz" from your GY to your field and 1 monster from your opponent's GY to their field. You can only activate 1 "Light of the Branded" per turn. | --烙印の光
--Light of the Branded
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Return a Fusion monster to the Extra Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOEXTRA+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetPropert... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 100 ATK for each monster your opponent controls. During a Battle Phase in which your EARTH Warrior monster battled (Quick Effect): You can target 1 Level 5 or lower Warrior monster in your GY; Special Summon it, also all "War Rock" monsters you currently control gain 200 ATK until the end of your opponent's turn,... | --ウォークライ・スキーラ
--War Rock Skyler
local s,id=GetID()
function s.initial_effect(c)
--Gains 100 ATK per opponent's monsters
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(s.atkval)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a Trap Card: Discard 1 Spell/Trap; Special Summon 1 Level 6 DARK Machine monster from your Deck. | --サイコ・ショックウェーブ
--Psychic Shockwave
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_CHAINING)
e1:SetCondition(s.condition)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Litmus Doom Ritual". It is unaffected by Trap effects and cannot be destroyed by battle. Gains 3000 ATK/DEF while a Trap is on the field. If this Ritual Summoned card in its owner's control is destroyed by your opponent's card: You can target 1 Trap in either GY; Set it to your Spe... | --リトマスの死の剣士
--Litmus Doom Swordsman
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Unaffected by Trap effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_IMMUNE_EFFECT)
e1:SetValue(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Downgrade the monster equipped with this card by 2 Levels. | --降格処分
--Demotion
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--Decrease the equipped monster's Level by 2
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_UPDATE_LEVEL)
e1:SetValue(-2)
c:RegisterEffect(e1)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 LIGHT or DARK Dragon monster + 1 Dragon monster If this card is Fusion Summoned: You can target cards your opponent controls, up to the number of your LIGHT and DARK monsters used as this card's material; destroy them. If this card is banished: You can target 1 Level 4 LIGHT or DARK Dragon monster you control; its Le... | --空隙の原星竜
--Khaos Starsource Dragon
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: 1 LIGHT or DARK Dragon monster + 1 Dragon monster
Fusion.AddProcMix(c,true,true,s.matfilter,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DRAGON))
--Destroy cards your opponent... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If all the monsters in your GY are EARTH: You can Tribute this card, then target 2 Level 4 or lower Rock monsters in your GY, except "Block Golem"; Special Summon those Rock monsters, but their effects that activate on the field cannot be activated this turn. | --ブロック・ゴーレム
--Block Golem
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_MZONE)
e1:SetCondition(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you control no cards and this is the only card in your hand, when an opponent's monster declares an attack: You can discard this card; destroy as many cards as possible your opponent controls, then you can Special Summon 1 monster from your Deck. | --煌々たる逆転の女神
--Goddess of Sweet Revenge
local s,id=GetID()
function s.initial_effect(c)
--Destroy opponent's cards and Special summon from the Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 2 monsters, then target 2 face-up monsters your opponent controls; take control of both targets until your End Phase. | --ダブルマジックアームバインド
--Double Magical Arm Bind
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_CONTROL)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Negate any monster effects that target this 1 card. | --カオス・マジシャン
--Chaos Command Magician
local s,id=GetID()
function s.initial_effect(c)
--disable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_DISABLE)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE)
e1:SetTarget(s.distg)
c:RegisterEffect(e1)
--disab... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gemini monsters you control that are being treated as Effect Monsters cannot be destroyed by card effects. | --エナジー・ブレイブ
--Energy Bravery
local s,id=GetID()
function s.initial_effect(c)
--Gemini monsters cannot be destroyed by effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_INDESTRUCTABLE_EFFECT)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarget(functio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. Your opponent cannot Special Summon monsters. | --虚無の統括者
--Vanity's Ruler
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:RegisterEffect(e1)
--d... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Shuffle 3 cards into the Deck (any combination of "D/D" monsters in your hand, field, or Graveyard, and/or "D/D" cards in your Pendulum Zone), then you can add 2 "D/D" monsters from your Deck to your hand. | --DDDの人事権
--D/D/D Human Resources
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK+CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a Pendulum Monster's effect, or an effect of a card that is already face-up in the Pendulum Zone: Negate the activation, and if you do, banish that card. * The above text is unofficial and describes the card's functionality in the OCG. | --揺るがぬ絆
--Unwavering Bond
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DAMAGE_CAL)
e1:SetCondition(s.conditi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 LIGHT or DARK monster in either GY; banish it, and if you do, Special Summon this card from your hand. This is a Quick Effect if your opponent controls a monster. If your opponent Special Summons a Ritual, Fusion, Synchro, Xyz, and/or Link Monster(s) (except during the Damage Step): You can Tribute 1 o... | --深淵の獣バルドレイク
--Bystial Baldrake
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the hand (Ignition)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your next Standby Phase after this card was sent from the field to the Graveyard by the effect of a Continuous Spell Card: Special Summon this card from the Graveyard. | --怨念のキラードール
--Malice Doll of Demise
local s,id=GetID()
function s.initial_effect(c)
--register
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetOperation(s.regop)
c:RegisterEffect(e1)
end
function s.regop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 x "Crimson Nova the Dark Cubic Lord" Must be Fusion Summoned with the above Fusion Materials and cannot be Special Summoned by other ways. Cannot be targeted, or destroyed by, your opponent's card effects. When this card declares an attack: Halve your opponent's LP. When this card destroys a monster by battle: You ca... | --暗黒方界邪神クリムゾン・ノヴァ・トリニティ
--Crimson Nova Trinity the Dark Cubic Lord
local s,id=GetID()
function s.initial_effect(c)
--Fusion summon procedure
c:EnableReviveLimit()
Fusion.AddProcMixN(c,false,false,30270176,3)
--Special Summon condition
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetProperty(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned by another Effect Monster's effect. Unaffected by "Venom Swamp". Gains 500 ATK for each Reptile monster in your GY. When this card is destroyed by battle and sent to the GY: You can banish 1 other Reptile monster from your GY; Special Summon this card. | --毒蛇王ヴェノミノン
--Vennominon the King of Poisonous Snakes
local s,id=GetID()
function s.initial_effect(c)
--spsummon 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)
e1:SetValue(s.splimit)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Mayakashi" card, other than "Yuki-Musume, the Ice Mayakashi" while this card is in your hand or GY: You can Special Summon this card, then send 1 Zombie monster from your Deck to the GY. You can only use this effect of "Yuki-Musume, the Ice Mayakashi" once per turn. You cannot Special Summon monsters ... | --氷の魔妖-雪娘
--Yuki-Musume, the Ice Mayakashi
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+CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_GRAVE|LOCATION_HAND)
e1:SetCou... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is added to your hand, except by drawing it: You can Special Summon this card. You can Tribute this card; Special Summon 1 "Tachyon" monster from your Deck or GY, except "Tachyon Cloudragon". If you Special Summon a Dragon Xyz Monster(s) (except during the Damage Step): You can target 1 of them; attach thi... | --時空の雲篭
--Tachyon Cloudragon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself when added to the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase, if this card was Normal or Special Summoned this turn: You can send 1 "Odd-Eyes" monster from your Deck to the Graveyard; this card's name becomes the sent monster's original name, until the End Phase. | --EMボットアイズ・リザード
--Performapal Bot-Eyes Lizard
local s,id=GetID()
function s.initial_effect(c)
--copy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCondition(s.copycon)
e1:SetCost(s.copycost)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to "White Magician Pikeru" or "Ebon Magician Curran"; it gains 800 ATK. During a turn that the equipped monster destroyed a Level 5 or higher monster by battle, you can Tribute the equipped monster and this card to Special Summon from your hand or Deck: 1 "Princess Pikeru" if you Tributed "White Magician Pik... | --王女の試練
--Trial of the Princesses
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsCode,81383947,46128076))
--Atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(800)
c:RegisterEffect(e2)
--equ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If exactly 1 monster is banished from your Graveyard (and no other cards are banished at the same time), except during the Damage Step: You can send, from your Deck to the Graveyard, 1 monster that has a different Attribute from that banished monster. You can only use the effect of "Jewels of the Valiant" once per turn... | --星邪の神喰
--Jewels of the Valiant
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_TOGRAVE)
e2:SetType... |
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 any number of "Assault Dog" from your Deck. | --アサルト・ガンドッグ
--Assault Dog
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.condi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This face-up card on the field cannot be used as a Synchro Material. If this card is in the Graveyard: You can target 1 non-Tuner "Blackwing" monster in your Graveyard; banish both this card and that target, and if you do, Special Summon 1 "Blackwing" Synchro Monster from your Extra Deck whose Level equals the total Le... | --BF-大旆のヴァーユ
--Blackwing - Vayu the Emblem of Honor
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+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] If you have a "Magician" or "Performapal" card in your other Pendulum Zone: You can destroy this card, and if you do, place 1 "Magician" Pendulum Monster from your Deck in your Pendulum Zone, except "Wisdom-Eye Magician". ---------------------------------------- [ Monster Effect ] You can discard th... | --慧眼の魔術師
--Wisdom-Eye Magician
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--pendulum set
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_DESTROY)
e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_PZONE)
e2:SetCondition(s.pencon)
e2:SetTarget(s.pentg)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 1 card from your hand to the Graveyard. Change the battle positions of all monsters your opponent controls. (Face-down Defense Position monsters are flipped to face-up Attack Position.) | --カード・フリッパー
--Card Rotator
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
fu... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All Rock-Type monsters on the field gain 500 ATK. If a "Triamid" monster you control battles, your opponent's cards and effects cannot be activated until the end of the Damage Step. If this face-up card in the Field Zone is sent to the Graveyard: You can Special Summon 1 "Triamid" monster from your hand. You can only u... | --トラミッド・キングゴレム
--Triamid Kingolem
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a WATER monster and your opponent has a monster on their field or GY: Take 1 "Icejade" monster from your Deck, and either send it to the GY or Special Summon it. If a face-up "Icejade" monster you control leaves the field by an opponent's card, except by being destroyed (and except during the Damage Step... | --氷水大剣現
--Icejade Manifestation
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon, or send to the GY, 1 "Icejade" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control 2 or more Thunder monsters and this card is in your hand or GY: You can Special Summon this card, but banish it when it leaves the field. You can target 1 Xyz Monster you control; attach 2 Level 4 LIGHT Thunder monsters from your hand, face-up field, and/or GY to it as material, including this card you c... | --OToNaRiサンダー
--Otonari Thunder
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND|LOCATION_GRAVE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 WIND monsters During your Main Phase, you can: Immediately after this effect resolves, Normal Summon 1 WIND monster, also you cannot Special Summon monsters from the Extra Deck for the rest of this turn, except Synchro Monsters. You can banish 1 WIND Synchro Monster from your Extra Deck; reveal 2 "Speedroid" monsters... | --HSR-GOMガン
--Hi-Speedroid Rubber Band Shooter
--Scripted by Naim and Eerie Code
local s,id=GetID()
function s.initial_effect(c)
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WIND),2,2)
c:EnableReviveLimit()
--Normal Summon 1 WIND monsters
local e1=Effect.CreateEffect(c)
e1:SetDescription... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can send 1 "Elementsaber" monster from your hand to the GY; send 1 "Elementsaber" or "Elemental Lord" monster from your Deck to the GY, except "Elementsaber Malo". Once per turn, if this card is in the GY: You can declare 1 Attribute; this card in the GY becomes that Attribute until the end of this t... | --エレメントセイバー・マロー
--Elementsaber Malo
local s,id=GetID()
function s.initial_effect(c)
--to grave
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(s.sgcost)
e1:SetTarge... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 "Chronomaly" monster from your hand, and if you do, this card's Level becomes the current Level of that Special Summoned monster. | --先史遺産ゴルディアス・ユナイト
--Chronomaly Gordian Knot
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If "Advanced Dark" is not in a Field Zone, send this monster to the GY. All "Advanced Crystal Beast" monsters you control gain 400 ATK/DEF, also monsters your opponent controls lose 400 ATK/DEF. If this face-up card is destroyed in a Monster Zone, you can place it face-up in your Spell & Trap Zone as a Continuous Spell... | --A宝玉獣トパーズ・タイガー
--Advanced Crystal Beast Topaz Tiger
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
Duel.EnableGlobalFlag(GLOBALFLAG_SELF_TOGRAVE)
--Send itself to the GY if "Adanced Dark" is not face-up in the Field Spell Zone
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: | Neither player can Special Summon LIGHT monsters. | --A・O・J D.D.チェッカー
--Ally of Justice Quarantine
local s,id=GetID()
function s.initial_effect(c)
--disable spsummon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetTargetRange(1,1)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 Level 1 LIGHT Tuner from your hand. You can target 1 Effect Monster you control; send it to the GY, and if you do, Special Summon 1 "Blue-Eyes" monster from your hand. You can only use this effect of "Protector with Eyes of Blue" once per turn. | --青き眼の護人
--Protector with Eyes of Blue
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.sptg)
e1:SetOperation(s.spop)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 2 Winged Beast Xyz Monsters you control; attach 1 of those monsters to the other as material. (Transfer its materials to that monster.) If you control an Xyz Monster with 3 or more materials: You can draw 1 card. You can only use each effect of "Lyrilusc - Bird Sanctuary" once per turn. | --LL-バード・サンクチュアリ
--Lyrilusc - Bird Sanctuary
--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)
--Attach
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Strin... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ monsters, including a Zombie monster If this card is Link Summoned: You can target 1 monster in your opponent's GY; Special Summon it to your field in Defense Position, also you cannot Special Summon monsters for the rest of this turn, except Zombie monsters. You can Tribute 1 "Vampire" monster, then target 1 monste... | --ヴァンパイア・ファシネイター
--Vampire Fascinator
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--2+ monsters, including a Zombie monster
Link.AddProcedure(c,nil,2,3,s.lcheck)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Lord of the Lamp" + "Invader from Another Dimension" | --ソウル・ハンター
--Soul Hunter
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,99510761,28450915)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by card effects. You can only use each of the following effects of "Dark Hole Dragon" once per turn. If a monster(s) on the field is destroyed by a card effect that does not target it (except during the Damage Step): You can Special Summon this card from the GY (if it was there when the monster was ... | --ブラック・ホール・ドラゴン
--Dark Hole Dragon
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Cannot be destroyed by effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_INDESTRUCTABLE_EFFECT)
e1:SetRange(LOCATION_MZONE)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 4 "Crystal Beast" cards from your Spell & Trap Zone to the GY; send as many cards on the field as possible to the GY, then Special Summon as many "Crystal Beast" monsters as possible from your GY, up to the number of cards sent from your opponent's field to the GY by this card's effect. | --宝玉の氾濫
--Crystal Abundance
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by sending 1 face-up "Infinite Machine" from your Spell & Trap Zone to the GY. This face-up card cannot be destroyed by your opponent's card effects. Neither player can target "Timelord" monsters you control with card effects, or return "Timelord" monsters from the field to the Deck. Once per turn, i... | --無限光アイン・ソフ・オウル
--Infinite Light
--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)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCost(s.actcost)
e1:SetTarget(s.acttg)
c:RegisterEffect(e1)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when your opponent's monster declares an attack targeting a monster. Negate the attack and remove from play the attack target monster until the next Standby Phase. | --フォーチュン・スリップ
--Slip of Fortune
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Both players discard as many cards as possible from their hands, then each player draws the same number of cards they discarded. | --手札抹殺
--Card Destruction
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_HANDES+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 DARK Tuner + 1 or more non-Tuner monsters Once per turn, if you have no cards in your hand, you can select 1 monster your opponent controls. Destroy that monster and inflict damage to your opponent equal to half its ATK. This card cannot attack during the same turn you activate this effect. | --インフェルニティ・デス・ドラゴン
--Infernity Doom Dragon
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Synchro summon procedure
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_DARK),1,1,Synchro.NonTuner(nil),1,99)
--Destroy 1 of you... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can send 1 face-up Continuous Spell Card you control to the Graveyard to destroy 1 Spell or Trap Card your opponent controls. | --マグナ・スラッシュドラゴン
--Magna-Slash Dragon
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned, unless you control a "Ghostrick" monster. Once per turn: You can change this card to face-down Defense Position. When this card is flipped face-up: Inflict 100 damage to your opponent for each Set card on the field. You can only use this effect of "Ghostrick Warwolf" once per turn. | --ゴーストリック・ワーウルフ
--Ghostrick Warwolf
local s,id=GetID()
function s.initial_effect(c)
--summon limit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_SUMMON)
e1:SetCondition(s.sumcon)
c:RegisterEffect(e1)
--turn set
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stri... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters Gains 400 ATK for each Plant monster you control, except this card. During your Main Phase: You can Special Summon 1 Level 5 or higher Plant monster from your hand or GY in Defense Position, except "Periallis, Empress of Blossoms". You can only use this effect of "Periallis, Empress of B... | --瓔珞帝華-ペリアリス
--Periallis, Empress of Blossoms
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Synchro summon procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Gains 400 ATK for each of your other plant mo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Elemental HERO Neos" + 1 Warrior monster Must be Fusion Summoned. Gains ATK equal to half the original ATK of the Warrior Fusion Material used for its Fusion Summon, except "Elemental HERO Neos". Can make a second attack during each Battle Phase. Your opponent takes no battle damage from attacks involving this card. | --E・HERO ネオス・ナイト
--Elemental HERO Neos Knight
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,CARD_NEOS,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WARRIOR))
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares an attack on a "Blackwing" monster you control: Banish all face-up Attack Position monsters your opponent controls. If you control exactly 3 "Blackwing" monsters (and no other monsters), you can activate this card from your hand. | --ブラック・ソニック
--Black Sonic
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_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a "Mermail" monster. It gains 800 ATK. When a Spell effect that was activated on your opponent's side of the field resolves, negate that effect, then send this card to the Graveyard. | --アビスケイル-ミヅチ
--Abyss-scale of the Mizuchi
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsSetCard,SET_MERMAIL))
--Atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(800)
c:RegisterEffect(e2)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Rock monster in your GY; Special Summon it in Defense Position, then, if you Special Summoned an "Adamancipator" monster by this effect, you can take 1 Level 4 or lower Rock monster from your Deck and place it on top of your Deck. | --魔救の息吹
--Adamancipator Signs
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon 1 rock monster from GY in defense position
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Machine monster + 1 Dragon monster If this card is destroyed and sent to the GY: You can target 1 card on the field; destroy it. | --重装機甲 パンツァードラゴン
--Panzer Dragon
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsRace,RACE_MACHINE),aux.FilterBoolFunctionEx(Card.IsRace,RACE_DRAGON))
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 1 monsters Gains 500 ATK for each material attached to it. If your opponent Special Summons a monster(s) (except during the Damage Step): You can detach 1 material from this card, then target 1 of those Special Summoned monsters; return it to the hand. If this card in your possession is sent to your GY by an o... | --LL-アンサンブルー・ロビン
--Lyrilusc - Ensemblue Robin
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Procedure: 2+ Level 1 monsters
Xyz.AddProcedure(c,nil,1,2,nil,nil,Xyz.InfiniteMats)
--This card gains 500 ATK for each material attached to it
local e1=Effect.CreateEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must first be Special Summoned (from your hand) by banishing 1 LIGHT and 1 DARK monster from your GY. Once per turn, you can activate 1 of these effects. ● Target 1 monster on the field; banish it. This card cannot attack the turn this effect is activated. ● If this attacking card destroy... | --カオス・ソルジャー -開闢の使者-
--Black Luster Soldier - Envoy of the Beginning
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Special summon procedure (from hand)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While this card is the only monster on the field, it gains 1000 ATK for each card in the Spell & Trap Card Zones. | --ジェスター・ロード
--Jester Lord
local s,id=GetID()
function s.initial_effect(c)
--
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.atkcon)
e1:SetValue(s.atkval)
c:RegisterEffect(e1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be Normal Summoned or Set. This card can only be Special Summoned by removing from play 1 WIND monster in your Graveyard. When this card is destroyed as a result of battle and sent to the Graveyard, your opponent discards 1 random card from their hand. | --シルフィード
--Silpheed
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
e1:SetTarget(s.spt... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While your opponent controls 2 or more face-up monsters, all of the same Type, you can send 1 card from your hand to the Graveyard to select and destroy 1 face-up monster your opponent controls. | --黒羽を狩る者
--Hunter of Black Feathers
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_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetConditio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when an effect that inflicts damage is activated. Negate its activation and effect, and randomly send 1 Fusion Monster from your Extra Deck to the Graveyard. | --フュージョン・ガード
--Fusion Guard
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you have 2 or less cards in your hand, all face-up "Fabled" monsters you control gain 400 ATK. | --魔轟神ウルストス
--Fabled Urustos
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetCondition(s.con)
e1:SetTarget(s.tg)
e1:SetValue(400)
c:RegisterEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster you control and 1 Xyz Monster in your GY; equip that monster from your GY to that monster on the field as an Equip Spell with these effects. ● Change the equipped monster's ATK to this card's ATK. ● The equipped monster gains this card's Attribute. ● At the end of the Damage Step, if the equipp... | --アーマード・エクシーズ
--Armored Xyz
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Equip 1 Xyz monster to another monster on the field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster on the field; it cannot be destroyed by battle this turn, also its ATK is halved until the end of this turn. | --ハーフ・シャット
--Half Shut
local s,id=GetID()
function s.initial_effect(c)
--Targeted monster cannot be destroyed by battle, also halve its ATK
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetProperty(EFFECT_FLAG_CARD_TARGE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is used to Ritual Summon "Shinobaroness Peacock" or "Shinobaron Peacock". You must also Tribute monsters from your hand or field and/or banish Spirit monsters from your GY, whose total Levels equal or exceed the Level of the Ritual Monster you Ritual Summon. | --霊魂の降神
--Shinobird's Calling
local s,id=GetID()
function s.initial_effect(c)
--Activate
Ritual.AddProcGreater{handler=c,filter=s.ritualfil,extrafil=s.extrafil,extratg=s.extratg}
end
s.fit_monster={25415052,52900000} --should be removed in hardcode overhaul
s.listed_names={25415052,52900000}
s.listed_card_types={TYPE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can send 1 "Ice Barrier" monster from your hand to the GY; neither player can activate Spell Cards until the end of your next turn, while this monster is face-up on the field. | --氷結界の封魔団
--Spellbreaker of the Ice Barrier
local s,id=GetID()
function s.initial_effect(c)
--Apply activation restriction
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCost(aux.IceBarrierDiscardCost(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can activate this card when 1 or more of your Spell Cards are destroyed and sent from the field to the Graveyard by a card effect your opponent controls. Destroy 1 Spell or Trap Card on the field. | --突風
--Gust
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_TO_GRAVE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters During your Main Phase: You can excavate the top 5 cards of your Deck, and if you do, you can Special Summon 1 excavated Rock monster in Defense Position, also place the rest on the bottom of your Deck in any order. During your opponent's turn, if a WIND monster is in your GY (Quick Effe... | --魔救の奇跡-ラプタイト
--Adamancipator Risen - Raptite
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Synchro Summon procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--Excavate the top 5 cards of your Deck
local e1=Effect.CreateEffect(c)
e1:SetDescript... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 8 monsters If you use a monster(s) with a Level that is owned by your opponent for the Xyz Summon of this card, treat it as Level 8. Neither player can target this card with effects of Special Summoned monsters, except those Special Summoned from the GY. You can detach 1 material from this card; each player se... | --真血公ヴァンパイア
--The Zombie Vampire
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Xyz.AddProcedure(c,nil,8,2,nil,nil,Xyz.InfiniteMats)
--lv change
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_XYZ_LEVEL)
e1:SetProperty(EFFECT_FLAG_SE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Special Summoned: You can declare 1 Attribute; this card gains the following effect. ● All face-up monsters become that Attribute. You can target 1 monster in your opponent's Main Monster Zone; your opponent must send 1 card from among its adjacent Monster Zones or Spell ... | --いろはもみじ
--Maple Maiden
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon Procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Change Attribute
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned and 2 or more Wyrm monsters are in your GY and/or banishment: You can add 1 Field Spell from your Deck to your hand. You can only use this effect of "Tenyi Spirit - Mula Adhara" once per turn. While a non-Effect Monster is face-up on the field, this card ... | --天威龍-ムーダ・アーダラ
--Tenyi Spirit - Mula Adhara
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Add 1 Field Spell from your Deck to your hand
local e1=Effect... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.