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: | Once per turn, you can either: Target 1 face-up "Vylon" monster you control; equip this card to that target, OR: Unequip this card and Special Summon it in face-up Attack Position. While equipped by this effect, if the equipped monster destroys an opponent's monster by battle: You can target 1 card your opponent contro... | --ヴァイロン・ペンタクロ
--Vylon Pentachloro
local s,id=GetID()
function s.initial_effect(c)
aux.AddUnionProcedure(c,aux.FilterBoolFunction(Card.IsSetCard,SET_VYLON),true,false)
--destroy
local e4=Effect.CreateEffect(c)
e4:SetDescription(aux.Stringid(id,2))
e4:SetCategory(CATEGORY_DESTROY)
e4:SetType(EFFECT_TYPE_FIELD+EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During each of your Standby Phases: Inflict damage to both players. This damage begins at 200 and is doubled during each of your following Standby Phases. | --黒蛇病
--Dark Snake Syndrome
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)
--damage
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_DAMAGE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent adds a card(s) from the Graveyard to their hand: They must shuffle 1 of those cards into their Deck. | --差し戻し
--Return
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_TODECK)
e1:SetCode(EVENT_TO_HAND)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a "Stardust" monster is on the field: Target 1 card on the field; destroy that target. | --シューティング・スター
--Shooting Star
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_ATTACK,TIMINGS_CHECK_MONSTER_E|TIMING_ATTACK)
e1:SetProperty(EFFECT_FLAG_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to "Elemental HERO Neos". It gains 800 ATK. When it destroys a monster by battle and sends it to the Graveyard: Inflict damage to your opponent equal to the original ATK of the destroyed monster in the Graveyard. During the End Phase: Shuffle this card into the Deck. | --ネオス・フォース
--Neos Force
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsCode,CARD_NEOS))
--atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(800)
c:RegisterEffect(e2)
--damage
local e4=Effect.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a card with an effect that requires a die roll: You can Tribute 1 monster; Special Summon 1 monster with a monster effect that requires a die roll from your hand or Deck. * The above text is unofficial and describes the card's functionality in the OCG. | --ディメンジョン・ダイス
--Dimension Dice
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Tribute 1 monster and Special Summon 1 monster from the hand or deck with a die roll effect
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 face-up Machine-Type Fusion Monster you control and remove it from play until the End Phase of this turn. When that monster is returned to the field, double its ATK. During your next Standby Phase, destroy it. | --サイバネティック・ゾーン
--Cybernetic Zone
local s,id=GetID()
function s.initial_effect(c)
--Banish 1 Machine Fusion Monster you control 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_TYPE_AC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. While face-up on the field, this card is also DARK-Attribute. Once per Chain, when a Spell/Trap Card, or monster effect, is activated (Quick Effect): If this card has 500 or more ATK and DEF, negate that activation, and if you do, this card loses exactly 500 ATK/DEF. If this card is destroye... | --光と闇の竜
--Light and Darkness Dragon
local s,id=GetID()
function s.initial_effect(c)
c:AddCannotBeSpecialSummoned()
--While face-up on the field, this card is also DARK-Attribute
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_ADD_ATTRIBUTE)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Add 1 Level 6 or lower Dinosaur monster from your Deck to your hand. | --化石調査
--Fossil Dig
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:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.filt... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control "King's Sarcophagus", you can Special Summon this card (from your GY). You can only Special Summon "Hapi, Guidance of Horus" once per turn this way. If another card(s) you control leaves the field by an opponent's card effect, while this card is in your Monster Zone (except during the Damage Step): You c... | --ホルスの先導-ハーピ
--Hapi, Guidance of Horus
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the GY if you control "King's Sarcophagus"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be used as material for a Fusion, Synchro, Xyz, or Link Summon. If this card is Normal or Flip Summoned: Change it to Defense Position. Once per turn: You can target 1 monster in your opponent's Main Monster Zone; give your opponent control of this Defense Position card by moving it to their zone adjacent to the... | --寝ガエル
--Centerfrog
local s,id=GetID()
function s.initial_effect(c)
--Cannot be material
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_CANNOT_BE_MATERIAL)
e1:SetValue(aux.cannotmatfilter(SUMMON_TYPE_FUSION,SUMMON_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned or flipped face-up, you can Special Summon 1 "Batteryman AAA" from your hand or Graveyard. | --電池メン-単四型
--Batteryman AAA
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:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 "Magician" Pendulum Monsters Must first be Xyz Summoned with the above Xyz Materials. Once per turn: You can detach 1 Xyz Material from this card; add to your hand, 1 DARK Spellcaster-Type monster from your Deck, Graveyard, or face-up from your Extra Deck. Once per turn, if a Pendulum Monster Card(s) in your ... | --星刻の魔術師
--Timestar Magician
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Xyz.AddProcedure(c,s.matfilter,4,2,nil,nil,nil,nil,true)
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can attack your opponent directly. At the end of the Battle Phase, if this card attacked directly: Banish this card until your next Standby Phase. | --スカイオニヒトクイエイ
--Skystarray
local s,id=GetID()
function s.initial_effect(c)
--reg
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_DAMAGE_STEP_END)
e1:SetOperation(s.regop)
c:RegisterEffect(e1)
--pierce
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All "Gravekeeper's" monsters gain 500 ATK/DEF. Cards in the GY cannot be banished. Negate any card effect that would move a card in the GY to a different place. Negate any card effect that changes Types or Attributes in the GY. | --王家の眠る谷-ネクロバレー
--Necrovalley
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)
--Increase ATK/DEF
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_A... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Spell/Trap Card, or monster effect is activated: Tribute 1 "Hieratic" monster; negate the activation, and if you do, destroy it. | --反射の聖刻印
--Hieratic Seal of Reflection
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters, including a "Scrap" monster You can target 1 "Scrap" monster in your GY; Special Summon it, then destroy 1 card you control. If another face-up "Scrap" monster is destroyed by card effect, while you control this monster (except during the Damage Step): You can Special Summon 1 "Scrap" monster from your Deck... | --スクラップ・ワイバーン
--Scrap Wyvern
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2 monsters, including a "Scrap" monster
Link.AddProcedure(c,nil,2,2,s.matcheck)
--Special Summon 1 "Scrap" monster from your GY, then destroy 1 card you control
local e1=Ef... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 "Heraldic Beast" monsters Once per turn: You can target 1 face-up Xyz Monster your opponent controls; this card's name and original ATK become that monster's name and current ATK, and replace this effect with that monster's original effects, then that monster's ATK becomes 0, also its effects are negated. The... | --No.8 紋章王ゲノム・ヘリター
--Number 8: Heraldic King Genom-Heritage
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_HERALDIC_BEAST),4,2)
c:EnableReviveLimit()
--attack up
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 Dragon monster, then target 2 cards on the field; destroy them. You can only activate 1 "Guardragon Cataclysm" per turn. | --崩界の守護竜
--Guardragon Cataclysm
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Fabled" Tuner + 1+ non-Tuner monsters When this card is Synchro Summoned: You can draw until you have 2 cards in your hand. | --魔轟神レイジオン
--Fabled Ragin
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_FABLED),1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--draw
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters, including a Fiend monster During the Main Phase (Quick Effect): You can target 1 face-up card you control; destroy it, then you can apply 1 of these effects. ● Place 1 "Abyss Playhouse - Fantastic Theater" from your Deck, face-up in your Field Zone. ● Place 1 "Abyss Actor" Pendulum Monster from your Deck in... | --魔界劇団-スーパー・プロデューサー
--Abyss Actor - Super Producer
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,nil,2,2,s.lcheck)
--Destroy 1 face-up card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a "Crystal Beast" monster(s) is placed in either player's Spell & Trap Zone, place 1 Crystal Counter on this card. You can send this card to the GY; take a number of "Crystal Beast" monsters from your Deck equal to the number of Crystal Counters that were on this card, and place them face-up in your Spell & T... | --宝玉の樹
--Crystal Tree
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x6)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Place 1 Crystal Counter on this card
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase, if you control this card on the field, you can equip it to your "Dark Blade" as an Equip Spell Card, OR unequip the Union equipment and Special Summon this card in face-up Attack Position. While equipped to a monster by this card's effect, increase the ATK/DEF of the equipped mons... | --漆黒の闘龍
--Pitch-Dark Dragon
local s,id=GetID()
function s.initial_effect(c)
aux.AddUnionProcedure(c,aux.FilterBoolFunction(Card.IsCode,11321183),true)
--atk/def
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_EQUIP)
e3:SetCode(EFFECT_UPDATE_ATTACK)
e3:SetValue(400)
e3:SetCondition(aux.IsUnionState)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Genex Controller" + 1 or more non-Tuner WATER monsters When this card destroys an opponent's monster by battle and sends it to the Graveyard, gain Life Points equal to the ATK of the destroyed monster. | --ハイドロ・ジェネクス
--Hydro Genex
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterSummonCode(68505803),1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_WATER),1,99)
c:EnableReviveLimit()
--recover
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During damage calculation, if this card is attacked by your opponent's monster: You can activate this effect; this card cannot be destroyed by this battle, also you take no battle damage from it. After damage calculation, your opponent gains LP equal to the attacking monster's ATK, also return this card to your hand. *... | --クリボン
--Kuribon
local s,id=GetID()
function s.initial_effect(c)
--be target
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_RECOVER+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetCountLimit(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is used to Ritual Summon "Vennu, Bright Bird of Divinity". You must also Tribute monsters from your hand or field whose total Levels equal 8 or more. During your End Phase: You can banish this card from your Graveyard, then target 1 Ritual Monster in your Graveyard that was sent there from the field this turn... | --原初の叫喚
--Primal Cry
local s,id=GetID()
function s.initial_effect(c)
Ritual.AddProcGreaterCode(c,8,nil,10441498)
--special summon
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_PHAS... |
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. You can send this card to the GY; Special Summon 1 "Six Samurai" or "Shien" Effect Monster from your Main Deck, whose Level is less than or equal to the number of Bushido Counters on this card. | --紫炎の道場
--Shien's Dojo
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(COUNTER_BUSHIDO)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--add counter
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a face-up card(s) on the field and/or in the GY is added to your opponent's hand by an effect: Look at their hand, also banish the added card(s) and all cards with the same name, if any. | --無情なはたき落とし
--Heartless Drop Off
--
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_HANDES)
e1:SetCode(EVENT_TO_HAND)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 card, then target 1 monster on the field; place that target on the top of the Deck. | --振り出し
--Back to Square One
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:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target any number of your banished "Invoked" monsters with different names; Special Summon them in Defense Position. | --魔法名-「大いなる獣」
--Omega Summon
local s,id=GetID()
function s.initial_effect(c)
--Special Summon in Defense Position any number of banished "Invoked" monsters with different names
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is treated as a Normal Monster while face-up on the field or in the Graveyard. While this card is face-up on the field, you can Normal Summon it to have it be treated as an Effect Monster with this effect: ● This card is treated as a Tuner. | --チューンド・マジシャン
--Tuned Magician
local s,id=GetID()
function s.initial_effect(c)
Gemini.AddProcedure(c)
--Treated as Tuner
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_ADD_TYPE)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(Gemini.EffectSt... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can target 1 face-up monster your opponent controls; it loses 1000 ATK for each monster your opponent controls. | --魔筒覗ベイオネーター
--Bayonater, the Baneful Barrel
--scripted by Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--ATK down
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares a direct attack: Shuffle all your opponent's Attack Position monsters into the Deck. | --波紋のバリア -ウェーブ・フォース-
--Drowning Mirror Force
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:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.operati... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 100 ATK for each "Amazoness" monster you control. | --アマゾネスの聖戦士
--Amazoness Paladin
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)
end
s.listed_series... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, if you control no monsters: You can target 1 "Ancient Gear" monster in your Graveyard; Special Summon it, and if you do, it gains 200 ATK (even if this card leaves the field). You can only control 1 "Ancient Gear Reborn". | --古代の機械蘇生
--Ancient Gear Reborn
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--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)
--spsummon
local e2=Effect.CreateEffect(c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your EARTH Warrior monster battles an opponent's monster, during damage calculation (Quick Effect): You can pay 800 LP; your battling monster gains 800 ATK, until the end of this turn. If this card is sent from your Monster Zone to your GY by an opponent's card effect: You can Special Summon 1 Level 5 or higher "War... | --ウォークライ・ウェント
--War Rock Wento
--scripted by XyleN
local s,id=GetID()
function s.initial_effect(c)
--Gains 800 ATK
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetRange(LOCATION_M... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 3 monsters When this card destroys an opponent's monster by battle and sends it to the Graveyard: You can detach 1 Xyz Material from this card; inflict 1000 damage to your opponent. | --グレンザウルス
--Grenosaurus
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,3,2)
c:EnableReviveLimit()
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetType(EFFECT_TYPE_SINGLE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | At the start of the Damage Step, if this card attacked a face-down Defense Position monster: Destroy that monster. During the End Phase, if this card destroyed a monster by battle this turn: You can send this face-up card to the Graveyard; Special Summon 1 "Mystic Swordsman LV4" from your hand or Deck. | --ミスティック・ソードマン LV2
--Mystic Swordsman LV2
local s,id=GetID()
function s.initial_effect(c)
--battle destroy
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetOperation(s.bdop)
c:RegisterEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The equipped monster cannot be destroyed by battle. | --ミスト・ボディ
--Mist Body
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--Indes
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e2:SetValue(1)
c:RegisterEffect(e2)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can target 1 monster on the field; change it to face-up Attack Position if it is in Defense Position, also change its ATK to 0. You can only use this effect of "Subterror Behemoth Speleogeist" once per turn. When a face-up monster you control is flipped face-down, if you control no face-up monsters: You can S... | --サブテラーマリス・エルガウスト
--Subterror Behemoth Speleogeist
local s,id=GetID()
function s.initial_effect(c)
--Change 1 face-up monster on the field to face-up Attack Position if it is in Defense Position, also change its ATK to 0.
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: | [ Pendulum Effect ] Once per turn: You can roll a six-sided die. Until the end of this turn, reduce this card's Pendulum Scale by that number (min. 1). ---------------------------------------- [ Flavor Text ] The taste of victory will bowl you over. | --マイルド・ターキー
--Mild Turkey
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--scale change
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DICE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_PZONE)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 3 LIGHT monsters Once per turn: You can detach 1 Xyz Material from this card; change all monsters your opponent controls to face-up Defense Position. | --セイクリッド・ヒアデス
--Constellar Hyades
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_LIGHT),3,2)
c:EnableReviveLimit()
--pos change
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_POSITION)
e1:SetDescription(aux.Stringid(id,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control 3 or more monsters with the same name, except Tokens: Target 3 cards your opponent controls; destroy those targets. | --スリーカード
--Three of a Kind
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:SetHintTiming(0,TIMINGS_CHECK_MONSTER_E)
e1:SetCondition... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can Special Summon monsters with the same Level as those they control. Neither player can Special Summon monsters with the same Rank as those they control. | --召喚制限-ディスコードセクター
--And the Band Played On
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Cannot Special Summon monsters with the same Level/Rank
local e2=Effect.CreateEffect(c)
e2:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase, if you control this card: You can target 1 "Elemental HERO" monster in your GY that was destroyed by battle and sent there; Special Summon that target. | --摩天楼2-ヒーローシティ
--Skyscraper 2 - Hero City
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)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,1))
e2:SetCategory... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All monsters on the field, except "Amorphage" monsters, lose 100 ATK and DEF for each "Amorphage" card on the field. If a card(s) in your Pendulum Zone is destroyed (except during the Damage Step): You can place 1 "Amorphage" Pendulum Monster from your Deck in your Pendulum Zone. You can only use this effect of "Amorph... | --アモルファージ・ライシス
--Amorphage Lysis
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetCondi... |
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 EARTH monster from your GY. If this card is destroyed by battle and sent to the GY: Destroy all Spells and Traps on the field. | --ギガンテス
--Gigantes
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.sptg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Gem-Knight Lapis" + 1 "Gem-Knight" monster Must first be Fusion Summoned with the above Fusion Materials. You can only Special Summon "Gem-Knight Lady Lapis Lazuli(s)" once per turn. Once per turn: You can send 1 "Gem-Knight" monster from your Main Deck or Extra Deck to the Graveyard, and if you do, inflict 500 damage... | --ジェムナイトレディ・ラピスラズリ
--Gem-Knight Lady Lapis Lazuli
local s,id=GetID()
function s.initial_effect(c)
c:SetSPSummonOnce(id)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,false,false,99645428,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_GEM_KNIGHT))
--spsummon condition
local e1=Effect.CreateEffect(c)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish any number of "Laval" monsters from your Graveyard; Special Summon an equal number of "Laval Tokens" (Pyro-Type/FIRE/Level 1/ATK 0/DEF 0) in Defense Position. | --紅蓮の炎壁
--Searing Fire Wall
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up Xyz Monster you control; Special Summon from your Extra Deck, 1 "Number C" or "CXyz" monster with the same Type as that monster you control but 1 Rank higher, by using it as the Xyz Material. (This Special Summon is treated as an Xyz Summon. Xyz Materials attached to it also become Xyz Materials on the... | --RUM-バリアンズ・フォース
--Rank-Up-Magic Barian's Force
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:SetProperty(EFFECT_FLAG_CARD_TA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned from the Graveyard, it gains this effect. ● If this card attacks a Defense Position monster, inflict piercing battle damage to your opponent. | --堕天使エデ・アーラエ
--Darklord Edeh Arae
local s,id=GetID()
function s.initial_effect(c)
--spsum success
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetOperation(s.gete)
c:RegisterEffect(e1)
end
function s.gete(e,tp,eg,ep,ev,re,r,rp)
if e:G... |
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 add 1 excavated "Adamancipator" card to your hand, also place the rest on the bottom of your Deck in any order. During your opponent's turn, if a FIRE monster is in your GY (Quick Effect): You c... | --魔救の奇跡-レオナイト
--Adamancipator Risen - Leonite
local s,id=GetID()
function s.initial_effect(c)
--Synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--Excavate and add 1 exacavated "Adamancipator" card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: You can add 1 "Aleister the Invoker" from your Deck to your hand. The activation of your cards and effects that include an effect that Fusion Summons a Fusion Monster cannot be negated, also your opponent's cards and effects cannot activate when a monster is Fusion Summoned this way. You ca... | --暴走魔法陣
--Magical Meltdown
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetOperation(s.activate)
c:Register... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can add 1 Level 4 EARTH Machine-Type monster from your Deck to your hand, except "Geargiauger", also you cannot declare attacks, nor Special Summon monsters except Machine-Type monsters, for the rest of this turn. | --ギアギアングラー
--Geargiauger
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_SUMMON_SUCCESS)
e1:SetTarget(s.target)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, you can either: Target 1 "Decayed Commander" you control; equip this card to that target, OR: Unequip this card and Special Summon it in Attack Position. While equipped by this effect, the equipped monster gains 500 ATK/DEF. If the equipped monster destroys an opponent's monster by battle: Discard 1 rand... | --ゾンビタイガー
--Zombie Tiger
local s,id=GetID()
function s.initial_effect(c)
aux.AddUnionProcedure(c,aux.FilterBoolFunction(Card.IsCode,10209545),true)
--Atk up
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_EQUIP)
e3:SetCode(EFFECT_UPDATE_ATTACK)
e3:SetValue(500)
e3:SetCondition(aux.IsUnionState)
c:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can activate 1 of the following effects; ● Send 1 "Synchron" monster from your hand or face-up field to the GY; Special Summon 1 monster from your hand. ● Target 1 other card you control; destroy it, and if you do, Special Summon 1 "Synchron" monster with a different original name from your hand or GY. You can only... | --ンクロ・ディレンマ
--Synchro Dilemma
--scripted by Rundas
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)
--To GY + Firewall Lite
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You cannot Pendulum Summon monsters, except "Lunalight" monsters. This effect cannot be negated. Once per turn: You can Fusion Summon 1 "Lunalight" Fusion Monster from your Extra Deck, by banishing Fusion Materials listed on it from your field or Graveyard. ---------------------------------------- [... | --月光狼
--Lunalight Wolf
local s,id=GetID()
function s.initial_effect(c)
--Pendulum summon
Pendulum.AddProcedure(c)
--Prevent pendulum summon of non-"Lunalight" monsters
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_PZONE)
e1:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON)
e1:SetPropert... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner Wyrm monsters If you Synchro Summon another Wyrm monster, while this monster is on the field: You can draw 1 card. If your opponent Special Summons a monster(s) (except during the Damage Step): You can banish 1 of those monster(s), and if you do, inflict 1200 damage to your opponent. When your op... | --相剣大邪-七星龍淵
--Swordsoul Sinister Sovereign - Qixing Longyuan
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsRace,RACE_WYRM),1,99)
--Draw 1 card when a Wyrm monster is Synchro Summoned
local e1=Effect.CreateEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a monster that is not a "Burning Abyss" monster, destroy this card. You can only use 1 of these effects of "Alich, Malebranche of the Burning Abyss" per turn, and only once that turn. ● If you control no Spell/Trap Cards: You can Special Summon this card from your hand. ● If this card is sent to the Grav... | --彼岸の悪鬼 アリキーノ
--Alich, Malebranche of the Burning Abyss
local s,id=GetID()
function s.initial_effect(c)
--self destruction
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_SELF_DESTROY)
e1:SetCondition(s.sdcon)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute this card, then target 1 face-up Continuous Spell/Trap on the field; destroy that target. | --結界術師 メイコウ
--Mei-Kou, Master of Barriers
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:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters All monsters your opponent controls lose 500 ATK/DEF. You can only use each of the following effects of "Crystron Eleskeletus" once per turn. If this card is Synchro Summoned: You can add 1 "Crystron" card from your GY or banishment to your hand. If this Synchro Summoned card is destroye... | --水晶機巧-エレスケルタス
--Crystron Eleskeletus
--scripted by Naim
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)
--Monsters your opponent controls lose 500 ATK/DEF
local e1=Effect.Cr... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Elemental HERO Clayman" + "Elemental HERO Burstinatrix" Must be Fusion Summoned. This card can attack directly while in Defense Position. If it does, apply its ATK for damage calculation, and its ATK is halved during damage calculation only. | --E・HERO ランパートガンナー
--Elemental HERO Rampart Blaster
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,58932615,84327329)
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent from the field or the hand to the Graveyard: You can excavate the top card of your Deck, and if it is a Plant-Type monster, send it to the Graveyard. Otherwise, place it on the bottom of your Deck. If this card is excavated from the Deck and sent to the Graveyard by a card effect: You can excavate ... | --森羅の隠蜜 スナッフ
--Sylvan Snapdrassinagon
local s,id=GetID()
function s.initial_effect(c)
--Excavate the top card of your Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DECKDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during the End Phase, if this card attacked this turn: Destroy this card. When this card on the field is destroyed and sent to the GY: You can Tribute 1 monster; Special Summon this card from the GY. | --ヘル・ドラゴン
--Infernal Dragon
local s,id=GetID()
function s.initial_effect(c)
--destroy itself
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_PHASE+PHASE_END)
e1:SetRange(LOCATION_MZONE)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Effect Monsters When a monster this card points to activates its effect (except during the Damage Step) (Quick Effect): You can target 1 Effect Monster your opponent controls; until the end of this turn, change its ATK to 0, also negate its effects. During the End Phase, if this card is in the GY because it was destr... | --ピットナイト・アーリィ
--Pitknight Earlie
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2,2)
--Change ATK to 0 and negate effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.St... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up card in the Spell & Trap Zone; destroy that face-up card, then, its controller can Set 1 Spell/Trap from their hand. If this Set card is destroyed and sent to the GY: Target 1 face-up card on the field; destroy that target. | --荒野の大竜巻
--Wild Tornado
local s,id=GetID()
function s.initial_effect(c)
--Destroy 1 face-up card in the Spell/Trap Zone
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 card. Special Summon 1 Level 4 or lower monster from your opponent's Graveyard to your side of the field, and your opponent Special Summons 1 Level 4 or lower monster from your Graveyard to your opponent's side of the field. Those monsters are destroyed during the End Phase of the next turn. | --ボーン・テンプル・ブロック
--Bone Temple Block
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.target)
e1:SetOperation(s.op... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your turn, if the effect of a "Naturia" monster was activated on your field, you can Special Summon this card (from your hand). | --ナチュル・ハイドランジー
--Naturia Hydrangea
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
c:RegisterEffect(e1)
Duel... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 3 monsters Once per turn: You can detach 1 Xyz Material from this card; all face-up monsters you currently control gain 300 ATK. | --No.20 蟻岩土ブリリアント
--Number 20: Giga-Brilliant
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,3,2)
c:EnableReviveLimit()
--attack up
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only control 1 "Magical Musket - Crooked Crown". During the Main Phase: You can Special Summon 1 "Magical Musket" monster from your hand, and if you do, if your opponent's Main Monster Zone in that monster's current column is unused, that zone cannot be used until the end of this turn (even if this card leaves ... | --魔弾-ブラッディ・クラウン
--Magical Musket - Crooked Crown
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--spsummon
local e2=Effect.CreateEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Super Quant" Xyz Monster you control; equip this card to it. It gains ATK equal to its Rank x 100, also if it attacks a Defense Position monster, inflict piercing battle damage to your opponent. During your Battle Phase: You can send this Equip Card to the Graveyard; the monster that was equipped with this ca... | --超量機神剣-マグナスレイヤー
--Super Quantal Mech Sword - Magnaslayer
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute 3 Level 3 or lower WATER monsters; Special Summon this card from your hand or Graveyard. When you do: Return all Spell and Trap Cards on the field to the hand, and if you do, if 3 or more cards are returned to the hand by this effect, all monsters your opponent currently controls lose 300 ATK for each. | --海皇龍 ポセイドラ
--Poseidra, the Atlantean Dragon
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|LOCATION_GRAVE)
e1:SetCost(s.spcos... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can banish up to 2 Spells from your GY, and if you do, this card gains 300 ATK for each card banished by this effect, until the end of your opponent's turn. * The above text is unofficial and describes the card's functionality in the OCG. | --カオスライダー グスタフ
--Chaosrider Gustaph
local s,id=GetID()
function s.initial_effect(c)
--Banish up to 2 Spells and increase ATK
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned from the GY: This card's Level becomes 4. You can only use each of the following effects of "Left-Hand Shark" once per turn. If you control "Right-Hand Shark", and this card is in your hand or GY: You can Special Summon this card, but banish it when it leaves the field. An Xyz Monster t... | --レフトハンド・シャーク
--Left-Hand Shark
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand or GY while you control "Right Hand Shark"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Increase your Life Points by 800 points. | --天使の生き血
--Soul of the Pure
local s,id=GetID()
function s.initial_effect(c)
--recover
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_RECOVER)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.tg)
e1:SetOperation(s.op)
c:RegisterEffec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Set this card from your hand to your Spell & Trap Zone as a Spell Card. During your opponent's turn, if this Set card in the Spell & Trap Zone is destroyed and sent to your Graveyard: Special Summon it. When an "Artifact" card(s) is destroyed and sent to your Graveyard (except during the Damage Step): You can S... | --アーティファクト-ラブリュス
--Artifact Labrys
local s,id=GetID()
function s.initial_effect(c)
--set
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MONSTER_SSET)
e1:SetValue(TYPE_SPELL)
c:RegisterEffect(e1)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: Each player can banish up to 5 Spells from their own GY, face-down. If an attack is declared: activate this effect; the attacked player chooses whether to apply this effect. ● You (the attacked player) can randomly add 1 of your cards banished by this card's effect to your hand, then you ca... | --スマイル・アクション
--Smile Action
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent cannot target Rock monsters you control with 0 original ATK, with card effects. Once per battle, when an opponent's monster declares an attack: You can negate that attack, and if you do, place 1 counter on this card. If this card has 3 counters, send it to the GY. If you have 3 or more Rock monsters in yo... | --トーテムポール
--Totem Pole
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
Duel.EnableGlobalFlag(GLOBALFLAG_SELF_TOGRAVE)
c:EnableCounterPermit(0x20f)
--Activate
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e0)
--Opponent cannot ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's Main Phase: Target 1 "Cipher" Xyz Monster you control; Special Summon from your Extra Deck, 1 "Cipher" Xyz Monster that is 1 Rank higher than that target, by using that target as the Xyz Material. (This Special Summon is treated as an Xyz Summon. Xyz Materials attached to that target also become ... | --RUM-光波昇華
--Rank-Up-Magic Cipher Ascension
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_MAIN_END)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You must control a "War Rock" monster to activate either of these effects. ● When a monster your opponent controls activates its effect: Negate that effect. ● During the Battle Phase, when your opponent activates a Spell/Trap Card, or monster effect: Negate that effect. You can only activate 1 "War Rock Dignity" per tu... | --ウォークライ・ディグニティ
--War Rock Dignity
--Scripted by Rundas
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCountLimit(1,id,EFFECT_COUNT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned by the effect of an "Adamancipator" card: You can place 1 "Adamancipator" card from your hand or GY on top of the Deck. If this card is in your GY: You can target 1 FIRE Synchro Monster you control or in your GY; return it to the Extra Deck, and if you do, place this card on top of the ... | --魔救の奇石-レオナイト
--Adamancipator Crystal - Leonite
local s,id=GetID()
function s.initial_effect(c)
--decktop other
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetPrope... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ WATER monsters Once per turn, during each Standby Phase: You can banish 1 WATER monster from your GY or face-up field; draw 1 card. Each time a monster(s) is banished face-up: This card gains 600 ATK for each, until the end of this turn. You can send 1 WATER monster from your hand to the GY; Special Summon 1 of your... | --海晶乙女グレート・バブルリーフ
--Marincess Great Bubble Reef
--Scripted by Eerie Code, anime version by Larry126
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2+ WATER monsters
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),2)
--Draw 1 card
local ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase, you can Normal Summon 1 "Battlin' Boxer" monster in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) When an opponent's monster declares an attack, while you control a Warrior or FIRE monster: You can Special Summon this card from your hand, and if you do, negat... | --BK チーフセコンド
--Battlin' Boxer Chief Second
--Scripted by Satella
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the Graveyard for the Synchro Summon of a Spellcaster-Type monster, you can select and add 1 Field Spell Card from your Graveyard to your hand. | --マジドッグ
--Magidog
local s,id=GetID()
function s.initial_effect(c)
--draw
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BE_MATERIAL)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The ATK of this card becomes twice the original ATK of 1 monster that you Tributed for the Tribute Summon of this card. | --偉大魔獣 ガーゼット
--Great Maju Garzett
local s,id=GetID()
function s.initial_effect(c)
--tribute check
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MATERIAL_CHECK)
e1:SetValue(s.valcheck)
c:RegisterEffect(e1)
--give atk effect only when summon
local e2=Effect.CreateEffect(c)
e2:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3+ "Gouki" monsters Cannot be destroyed by battle, and is unaffected by the activated effects of your opponent's monsters with ATK less than or equal to this card. When your opponent activates a card or effect that targets this card, and/or a monster(s) this card points to (Quick Effect): You can make this card lose ex... | --剛鬼ザ・ジャイアント・オーガ
--Gouki The Giant Ogre
local s,id=GetID()
function s.initial_effect(c)
--Link Summon procedure
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_GOUKI),3)
c:EnableReviveLimit()
--Prevent destruction by battle
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Choose 1 monster your opponent controls, and your opponent chooses 1 of these effects to apply. ● They must send the chosen monster to the GY. ● They must send all other monsters they control to the GY. Your opponent must control 3 or more monsters for you to activate and resolve this effect. * The above text is unoffi... | --転轍地点
--Switch Point
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Send monster(s) to the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CH... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can Special Summon monsters, except FIRE monsters. | --業火の結界像
--Barrier Statue of the Inferno
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:SetTa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Chaos Form". This card's name becomes "Dark Magician" while on the field or in the GY. Once per turn, when a Spell/Trap Card or effect is activated (Quick Effect): You can target 1 card on the field; destroy it. If this Ritual Summoned card is destroyed by battle or card effect: Yo... | --マジシャン・オブ・カオス
--Magician of Chaos
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--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|LOCATIO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Select 1 "Morphtronic" Spell or Trap Card in your Graveyard and add it to your hand. | --ガジェット・アームズ
--Gadget Arms
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetTarget(s.target)
e1:SetOperation(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 Warrior monsters Once per turn, when a Level 4 or lower monster(s) is Special Summoned to your opponent's field (except during the Damage Step): You can detach 1 material from this card; destroy that Special Summoned monster(s). | --H-C ガーンデーヴァ
--Heroic Champion - Gandiva
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WARRIOR),4,2)
c:EnableReviveLimit()
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a monster(s) is Special Summoned, place 1 Summon Counter on this card (max. 6). This card with 6 Summon Counters cannot be destroyed by card effects. At the start of each Main Phase 1, if this card has 6 Summon Counters: The turn player can activate this effect; they send this card to the GY, and if they do, ... | --サモンオーバー
--Summon Over
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x148)
c:SetCounterLimit(0x148,6)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--add counter
local e2=Effect.Cr... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a Link Monster is on the field or in either GY, you can Special Summon this card (from your hand). You can only Special Summon "EM:P Meowmine" once per turn this way. If a Link-2 monster you control is sent to the GY or banished face-up (except during the Damage Step): You can banish this card from your GY (if it wa... | --EM:Pグレニャード
--EM:P Meowmine
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be activated from your hand. Activate only when a face-up monster you control is selected as an attack target. Inflict 1000 damage to your opponent. | --蜃気楼の筒
--Mirage Tube
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_BE_BATTLE_TARGET)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Standby Phase: You can have all "HERO" monsters you control gain 400 ATK (even if this card leaves the field). If a Level 8 or higher "Destiny HERO" monster(s) or a "Destiny End Dragoon" is Special Summoned to your field (except during the Damage Step): You can banish 1 card from your opponent's hand (random... | --D-タクティクス
--D - Tactics
--Scripted by ahtelel
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)
--Make all "HERO" monsters you control gain 400 ATK
local e1=Effect.CreateEffect(c)
e1:SetD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can discard 1 card; add 1 "Polymerization" Normal Spell or "Fusion" Normal Spell from your Deck to your hand. You can reveal 1 Fusion Monster in your Extra Deck; Special Summon 1 of the Fusion Materials mentioned on that monster from your GY, in face-down Defense Position... | --竜魔導の守護者
--Keeper of Dragon Magic
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Polymerization" Normal Spell or "Fusion" Normal Spell from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card; add 2 Level 4 LIGHT Thunder-Type monsters of the same name with 1600 or less ATK from your Deck to your hand. You can only use the effect of "Thunder Sea Horse" once per turn. You cannot Special Summon during the turn you activate this effect. | --サンダー・シーホース
--Thunder Sea Horse
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCost(s.cost)
e1:SetTarget(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Ritual Beast Tamer" monster + 1 "Spiritual Beast" monster Must be Special Summoned (from your Extra Deck) by banishing the above cards you control, and cannot be Special Summoned by other ways. (You do not use "Polymerization".) Once per turn: You can target 2 of your banished "Ritual Beast" cards; return them to th... | --聖霊獣騎 カンナホーク
--Ritual Beast Ulti-Cannahawk
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_RITUAL_BEAST_TAMER),aux.FilterBoolFunctionEx(Card.IsSetCard,SET_SPIRITUAL_BEAST))
Fusion.AddContactProc(c,s.co... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Level 4 or lower Cyberse monster If this card is Special Summoned: For the rest of this turn, you cannot Link Summon Link-3 or higher Link Monsters. If this co-linked card is Tributed: You can Special Summon 2 "Link Tokens" (Cyberse/LIGHT/Level 1/ATK 0/DEF 0). You can only use this effect of "Link Devotee" once per t... | --リンク・ディヴォーティー
--Link Devotee
--scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--link summon
c:EnableReviveLimit()
Link.AddProcedure(c,s.matfilter,1,1)
--splimit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetOp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Set this card from your hand to your Spell & Trap Zone as a Spell Card. During your opponent's turn, if this Set card in the Spell & Trap Zone is destroyed and sent to your Graveyard: Special Summon it. If this card is Special Summoned during your opponent's turn: You can target 1 "Artifact" monster in your Gra... | --アーティファクト-フェイルノート
--Artifact Failnaught
local s,id=GetID()
function s.initial_effect(c)
--set
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MONSTER_SSET)
e1:SetValue(TYPE_SPELL)
c:RegisterEffect(e1)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.