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 Beast, Beast-Warrior, and/or Winged Beast monsters During your Main Phase: You can Special Summon 1 Level 4 or lower Beast, Beast-Warrior, or Winged Beast monster from your hand, also you cannot use monsters as Link Material for the rest of this turn, except Beast, Beast-Warrior, or Winged Beast monsters. If this car... | --鉄獣戦線 徒花のフェリジット
--Tri-Brigade Ferrijit the Barren Blossom
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Link Summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACES_BEAST_BWARRIOR_WINGB),2,2)
c:EnableReviveLimit()
--Special Summon from hand
local e1=Effect.CreateEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is destroyed by battle or card effect and sent to the GY: You can target 1 face-up monster your opponent controls; it loses 400 ATK until the end of this turn. You can only use each of the following effects of "Cursed Fire King Doom Burst" once per turn. If you control a Fiend Tuner: You can Special Summon... | --呪炎王バースト・カースド
--Cursed Fire King Doom Burst
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Make 1 monster your opponent controls lose 400 ATK until the end of the turn
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 face-up monsters you control with the same Type and Attribute; change one of their Levels to the current Level of the other, until the End Phase. | --共振装置
--Resonance Device
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.filter... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase, if this card is in your hand or GY (Quick Effect): You can Tribute up to 3 Fairy monsters; Special Summon this card (but banish it when it leaves the field), then, you can apply the following effect(s) in sequence, depending on the number of Tributed monsters. ● 2+: Destroy 1 card your opponent c... | --トリアス・ヒエラルキア
--Trias Hierarchia
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from hand or GY, then you can apply extra effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_QU... |
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. While a Field Spell is face-up on the field, your opponent cannot target LIGHT or DARK monsters you control with card effects. You can target cards on the field, up to the number of face-... | --カオス・ダイダロス
--Chaos Daedalus
--Scripted by Naim
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:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card destroys an opponent's monster by battle and sends it to the Graveyard: You can equip the destroyed monster to this card. (You can only equip 1 monster at a time to this card with this effect.) This card gains ATK equal to that equipped monster's ATK. | --H・C ウォー・ハンマー
--Heroic Challenger - War Hammer
local s,id=GetID()
function s.initial_effect(c)
--equip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_EQUIP)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCondition(s.e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a "Salamangreat" monster is sent to your GY, except "Salamangreat Gazelle" (except during the Damage Step): You can Special Summon this card from your hand. If this card is Normal or Special Summoned: You can send 1 "Salamangreat" card from your Deck to the GY, except "Salamangreat Gazelle". You can only use each ef... | --転生炎獣ガゼル
--Salamangreat Gazelle
--scripted by Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon from hand, optional trigger effect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Add 1 "Polymerization" from your Deck to your hand. | --融合賢者
--Fusion Sage
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
s.listed_names... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon this card in Defense Position as an Effect Monster (Aqua/WATER/Level 10/ATK 0/DEF 3000). (This card is also still a Trap.) If Summoned this way, this card cannot attack. | --メタル・リフレクト・スライム
--Metal Reflect Slime
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:SetHintTiming(0,TIMING_END_PHASE)
e1:SetTarget(s.target)
e1:SetOperation(s.ac... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only Special Summon "Geistgrinder Golem" once per turn. You can reveal 1 "Yubel" monster in your hand; Special Summon this card from your hand to your opponent's field, then you can Special Summon the revealed monster to your field. Once per turn, during damage calculation, if this card battles a "Yubel" monste... | --ガイストーチ・ゴーレム
--Geistgrinder Golem
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Can only Special Summon "Geist Grinder Golem" once per turn
c:SetSPSummonOnce(id)
--Special Summon this card to your opponent's field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase: You can return this face-up card to the hand. During the Damage Step, when your DARK monster battles an opponent's monster (Quick Effect): You can send this card from your hand to the GY; that opponent's monster loses ATK equal to its own ATK, until the end of this turn. | --ダーク・オネスト
--Dark Honest
--scripted by Rundas
local s,id=GetID()
function s.initial_effect(c)
--Return to hand
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(s.rtg)
e1:SetOperation(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can activate these effects depending on the monster card types on the field. ● Fusion: Once per turn, if a monster(s) is sent from your hand or field to the GY by a card effect (except during the Damage Step): You can draw 1 card. ● Synchro: When a monster(s) is Normal or Special Summoned (except during the D... | --幻夢境
--Dreamland
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)
c:RegisterEffect(e1)
--Draw 1 card
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Strin... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate 1 of these effects; ● Target 2 monsters you control (1 Union monster, and 1 appropriate monster for it to be equipped to); equip the first target to the second target. ● Target 1 equipped Union Monster Card in your Spell & Trap Zone; Special Summon it in Attack Position. * The above text is unofficial and desc... | --フォーメーション・ユニオン
--Formation Union
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_MAIN_END|TIMINGS_CHECK... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can only be Ritual Summoned with the Ritual Spell Card, "Javelin Beetle Pact". | --ジャベリンビートル
--Javelin Beetle
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
end
s.listed_names={41182875} |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Mecha Phantom Beast" Tuner + 1+ non-Tuner "Mecha Phantom Beast" monsters When this card is Synchro Summoned: You can Tribute "Mecha Phantom Beast Tokens" up to the number of cards in your opponent's hand; randomly discard cards from your opponent's hand, equal to the number of Tributed monsters. Other "Mecha Phantom... | --幻獣機ヤクルスラーン
--Mecha Phantom Beast Jaculuslan
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_MECHA_PHANTOM_BEAST),1,1,Synchro.NonTunerEx(Card.IsSetCard,SET_MECHA_PHANTOM_BEAST),1,99)
c:EnableReviveLimit()
--handes
local e1=Effect.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 of your removed from play Rock-Type monsters, and Special Summon it. When this card is removed from the field, destroy that monster. When that monster is destroyed, destroy this card. | --化石岩の解放
--Release from Stone
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:SetHintTiming(0,TIMING_END_PHASE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have 3 or more "Destiny HERO" monsters in your GY: You can discard this card, then target 1 "Destiny HERO" monster in your GY; Special Summon it to your opponent's field in Defense Position. When a Spell Card or effect you activate resolves, negate that effect, and if you do, or if it did not have an effect, des... | --D-HERO ダークエンジェル
--Destiny HERO - Dark Angel
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATIO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Xyz Monsters with the same Rank, except "Number" monsters (This card's original Rank is always treated as 1. This card is always treated as a "Utopic Future" card.) You can also Xyz Summon this card by using "Number F0: Utopic Future" you control as material. (Transfer its materials to this card.) Cannot be destroyed... | --FNo.0 未来龍皇ホープ
--Number F0: Utopic Draco Future
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Xyz summon procedure
Xyz.AddProcedure(c,s.xyzfilter,nil,3,s.ovfilter,aux.Stringid(id,0),nil,nil,false,s.xyzcheck)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Cannot b... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card's name becomes "King's Sarcophagus" while in the Field Zone. During your Main Phase: You can add 1 "Horus" monster from your Deck to your hand, then place 1 card from your hand on the bottom of the Deck. You can only use this effect of "Walls of the Imperial Tomb" once per turn. If you activate the effect of ... | --王墓の石壁
--Walls of the Imperial Tomb
--scripted by pyrQ
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)
--Name becomes "King's Sarcophagus" while in the Field Zone
local e2=Effect.CreateE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 8 monsters Once per turn, when your Normal Monster or "Magikey" monster destroys an opponent's monster by battle: You can detach 1 material from this card; inflict damage to your opponent equal to the destroyed monster's original ATK. Once per turn, during your opponent's Main Phase (Quick Effect): You can targ... | --魔鍵憑神-アシュタルトゥ
--Magikey Deity - Ashtartu
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon Procedure
Xyz.AddProcedure(c,nil,8,2)
--Inflict damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card destroys an opponent's monster by battle and sends it to the Graveyard, you can Tribute this card to return the destroyed card to the top of its owner's Deck. | --X-セイバー ウルズ
--X-Saber Uruz
local s,id=GetID()
function s.initial_effect(c)
--to deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCondition(s.tdcon)
e1:SetCost... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Normal Monster: Target up to 3 of your banished Normal Monsters; shuffle them into the Deck. | --農園からの配送
--Farm Delivery
--Scripted by AlphaKretin
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_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCondition(s.tdcon)
e1:SetTarg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can add 1 "Gem-Knight" monster from your Deck to your hand. | --ジェムレシス
--Gem-Armadillo
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: | All other monsters on the field lose 500 ATK. Once per turn, during your Main Phase: You can destroy all monsters on the field with less ATK than this card. | --猛虎モンフー
--Fierce Tiger Monghu
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Decrease ATK
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE)
e1:SetTarget(function(e,c) r... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish any number of "Marincess" Link Monsters you control (until your next Standby Phase), then target 1 face-up monster on the field; it gains ATK equal to the total Link Rating of the monsters banished to activate this card x 300, until the end of this turn. If you control a Link-3 or higher "Marincess" monster, you... | --海晶乙女瀑布
--Marincess Cascade
--scripted by Larry126 and AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Increase the ATK 1 face-up monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a card(s) on the field is destroyed by card effect, and "Visas Starfrost" is on the field (except during the Damage Step): You can Special Summon this card from your hand, then you can add 1 "Clear New World" from your Deck or GY to your hand. If another monster(s) in your possession is destroyed by card effect (exc... | --ヴェーダ=カーランタ
--Veda Kalanta
--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_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If only this card is banished by the effect of a "Nordic" Link Monster: You can send to the GY, 1 "Nordic" monster you control and 2 "Nordic" monsters from your Deck, whose total Levels equal 10, then Special Summon 1 "Aesir" monster from your Extra Deck. If an "Aesir" monster(s) in your possession is sent to your GY b... | --極星霊アルヴィース
--Alviss of the Nordic Alfar
--Scripted by ahtelel and Eerie Code
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_TOGRAVE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your hand: You can return 1 "Starry Knight" monster or 1 Level 7 LIGHT Dragon monster you control to the hand, except "Starry Knight Ciel"; Special Summon this card. If you control no monsters: You can banish this card from your GY; Special Summon 1 Level 7 LIGHT Dragon monster from your hand. You ca... | --ホーリーナイツ・シエル
--Starry Knight Ciel
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Inflict 200 damage to your opponent for each card in their hand and for each card they control. | --仕込みマシンガン
--Secret Barrel
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can activate this card when an opponent's monster declares a direct attack. When this card's activation resolves, negate the attack, then Special Summon this card as an Effect Monster (Fiend/LIGHT/Level 1/ATK 0/DEF 0). (This card is also still a Trap Card.) During your Standby Phase, while this card is treated as a... | --運命の扉
--The Door of Destiny
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_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Re... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up Xyz Monster on the field; attach this card to it as material. | --オーバーレイ・リジェネレート
--Overlay Regen
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_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: | 2+ Level 6 monsters Once per turn: You can detach 2 materials from this card, then target 1 face-up card your opponent controls and 1 card in either GY; banish them. If this Xyz Summoned card is destroyed by battle with an opponent's attacking monster, or by an opponent's card effect while in its owner's Monster Zone: ... | --電脳堺凰-凰々
--Virtual World Phoenix - Fanfan
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Xyz.AddProcedure(c,nil,6,2,nil,nil,Xyz.InfiniteMats)
--Banish 2 targets
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have 5 or more cards in your hand, you can Normal Summon this card without Tributing. When this card is destroyed by battle and sent to the GY: You can Special Summon this card in Defense Position, and if you do, it is treated as a Tuner. You can only use this effect of "Wicked Acolyte Chilam Sabak" once per tur... | --邪神官チラム・サバク
--Wicked Acolyte Chilam Sabak
local s,id=GetID()
function s.initial_effect(c)
--summon with no tribute
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetCondition(s.sumcon)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per Chain, if a Link-4 monster is Link Summoned: You can place 1 counter on this card (max. 3), then you can apply the following effect based on the number of counters on it. ● 1: Declare 1 card name, and if you do, the activated effects and effects on the field of cards with that original name, are negated this t... | --運命の囚人
--Forge a New Future
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Allow counter placement and limit it to 3
c:EnableCounterPermit(0x20b)
c:SetCounterLimit(0x20b,3)
--Activate
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
e0:SetHin... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no monsters, you can Special Summon this card (from your hand). This card can be treated as 2 Tributes for the Tribute Summon of a "Timelord" monster. You can Tribute this card; add 1 "Timelord" monster with 0 ATK from your Deck to your hand. You can banish this card from your GY; Special Summon 1 "Timel... | --時械巫女
--Time Maiden
local s,id=GetID()
function s.initial_effect(c)
--special summon rule
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.sprcon)
c:RegisterEffect(e1)
--double tri... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Randomly select 2 cards from your hand and remove them from play to inflict 800 points of Direct Damage to your opponent's Life Points. | --ファイヤーソーサラー
--Fire Sorcerer
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetCost(s.cost)
e1:SetTarget(s.ta... |
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 it. If this card is Normal or Special Summoned: You can target 1 "Altergeist" monster in your GY, except "Altergeist Malwisp"; Special Summon it in Defense Position, but for the rest of this turn, it cannot activate its effects. You can on... | --オルターガイスト・マルウィスプ
--Altergeist Malwisp
--scripted by Naim
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)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand or GY) by banishing 3 Insect and/or Plant monsters from your hand and/or GY. You can only Special Summon "Beargram, Shelled Emperor of the Forest Crown" once per turn. Your opponent cannot activate monster effects in response to your Spell/Trap Car... | --樹冠の甲帝ベアグラム
--Beargram, Shelled Emperor of the Forest Crown
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableUnsummonable()
--Can only be Special Summoned once per turn
c:SetSPSummonOnce(id)
--Must be Special Summoned by its own procedure
local e1=Effect.CreateEffect(c)
e1:SetType(EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Big Koala" + "Des Kangaroo" | --マスター・オブ・OZ
--Master of Oz
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,42129512,78613627)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by battle. If this card is targeted for an attack: This card gains 1000 ATK and DEF. If this card attacked, after damage calculation: The ATK and DEF gained from this effect returns to 0. | --ダイナソーイング
--Dino-Sewing
local s,id=GetID()
function s.initial_effect(c)
--indes
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(1)
c:RegisterEffect(e1)
--atk/def up
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon this card as an Effect Monster (Machine/EARTH/Level 4/ATK 0/DEF 2000) with the following effects (this card is also still a Trap). ● Gains 1000 ATK for each "Shining Sarcophagus", and monster that mentions it, that you control. ● Once per turn, when an opponent's monster declares an attack, while you con... | --隠し砦 ストロング・ホールド
--Stronghold the Hidden Fortress
--Scripted by The Razgriz
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:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish as many "Appliancer" Link Monsters from your Main Monster Zone as possible, then you can Special Summon your banished "Appliancer" Link Monsters up to the number banished by this effect. During your Main Phase, if this card is in your GY, except the turn it was sent there: You can banish 1 other "Appliancer" Spe... | --機塊コンバート
--Appliancer Conversion
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Ghostrick" Field Spell or a "Ghostrick" Link Monster: You can target 1 face-up monster your opponent controls; your opponent can pay 2000 LP to make this card's effect "Set this card instead of sending it to the GY after activation", otherwise, for the rest of this turn, that face-up monster cannot at... | --ゴーストリック・オア・トリート
--Ghostrick or Treat
--Scripted by Eerie Code
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_CARD_TARGET)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay half your Life Points; Special Summon as many of your banished monsters as possible. During the End Phase, banish all monsters that were Special Summoned by this effect. | --異次元からの帰還
--Return from the Different Dimension
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:SetCost(s.cost)
e1:SetTarget(s.tg)
e1:SetOperation(s.op)
c:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 1 face-up "Six Samurai" monster you control to the Graveyard, then target 1 "Six Samurai" monster in either player's Graveyard; Special Summon that target. | --六武衆の理
--Cunning of the Six Samurai
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no monsters in the Extra Monster Zone, while this card is in your hand or GY: You can Special Summon this card, but banish it when it leaves the field, also you cannot Special Summon monsters from the Extra Deck for the rest of this turn, except Cyberse monsters. You can only use this effect of "Mathmech... | --斬機シグマ
--Mathmech Sigma
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand or GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND|LOCATIO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Medius the Pure" + 1 "Artmage" monster You can target 1 monster on the field; change its battle position. When your opponent activates a card or effect on the field, if you have 3 or more different Monster Types on your field (Quick Effect): You can negate the activation, and if you do, destroy that card. If this Fusi... | --神芸獄徒 ディアクトロス
--Artmage Diactorus
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: 1 "Medius the Pure" + 1 "Artmage" monster
Fusion.AddProcMix(c,true,true,CARD_MEDIUS_THE_PURE,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_ARTMAGE))
--Change the battle... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can Special Summon 1 Level 5 or higher Tuner monster from your Deck. | --ぴよコッコ
--Cheepcheepcheep
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a face-up "Elemental HERO Burstinatrix": Return all face-up "Elemental HERO" monsters on the field to the hand, except "Elemental HERO Burstinatrix". | --バースト・リターン
--Burst Return
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Stardust" monster in your GY; Special Summon it. | --星屑の残光
--Stardust Flash
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your hand or GY: You can Tribute 2 monsters; Special Summon this card. You can only use this effect of "Nine-Tailed Fox" once per turn. If this card that was Special Summoned from the GY attacks a Defense Position monster, inflict piercing battle damage. If this card is destroyed by battle or card ef... | --九尾の狐
--Nine-Tailed Fox
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_IGNITION)
e1:SetRange(LOCATION_GRAVE|LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCost(s.spcost)
e1:SetTarget(s.sptg)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase, if your opponent Normal or Special Summoned 5 or more monsters this turn (Quick Effect): You can Tribute as many face-up monsters on the field as possible, and if you do, Special Summon this card from your hand, then Special Summon 1 "Primal Being Token" (Rock/LIGHT/Level 11/ATK ?/DEF ?) to your ... | --原始生命態ニビル
--Nibiru, the Primal Being
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Tribute all monsters, Special Summon this card from the hand and 1 "Primal Being Token"
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_RELEASE+CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 1 "Steelswarm" monster from your Deck to the Graveyard to target 1 face-up "Steelswarm" monster you control; it gains 800 ATK until the End Phase. | --侵略の手段
--Infestation Tool
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STE... |
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 LIGHT Thunder-Type monster from your Deck to your hand, except "Brohunder". | --ONiサンダー
--Brohunder
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.thtg)
e1:SetOp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 1 monsters Unaffected by other cards' effects. Once per turn (Quick Effect): You can detach 2 materials from this card; for the rest of this turn, this card cannot be destroyed by battle, also you take no battle damage from attacks involving this card. | --キキナガシ風鳥
--Kikinagashi Fucho
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Xyz summon procedure
Xyz.AddProcedure(c,nil,1,2)
--Unaffected by other card effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_I... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster on the field; until the end of this turn, that target loses 800 ATK, but is unaffected by the effects of other Spells/Traps. | --禁じられた聖槍
--Forbidden Lance
local s,id=GetID()
function s.initial_effect(c)
--Targeted monster becomes unaffected by spells/traps
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an attack is declared involving this card and an opponent's monster: You can place this card from the field, and that opponent's monster, face-up in their owners' Spell & Trap Zones as Continuous Spells. While this card is a Continuous Spell: You can target 1 FIRE monster in your GY, except "Snake-Eyes Diabellstar... | --蛇眼の大炎魔
--Snake-Eyes Diabellstar
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Place battling monsters in the Spell/Trap Zone as Continuous Spells
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_ATT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must first be Special Summoned with "Max Metalmorph" that was activated by Tributing a Level 5 or higher Fiend monster. You can reveal this card in your hand; Set 1 "Metalmorph" Trap from your Deck, and if you do, shuffle this card into the Deck. You can only use this effect of "Metalzoa ... | --メタル・デビルゾアX
--Metalzoa X
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Set 1 "Metalmorph" Trap from your Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_H... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Gold Pride" monster you control; until the end of this turn, it gains 500 ATK, it cannot be destroyed by battle or card effects, and it cannot activate its effects. During the End Phase, if a face-up "Gold Pride" monster(s) you control was destroyed by battle or card effect this turn: You can Set this card fr... | --GP-ペダル・トゥ・メタル
--Gold Pride - Pedal to the Metal!
--scripted by fiftyfour
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. Requires 3 "Qli" Tributes to Normal Summon/Set. If this card is Normal Summoned/Set, it is unaffected by Spell/Trap effects and by activated effects from any monster whose original Level/Rank is lower than this card's current Level. All Special Summoned monsters lose 500 ATK and DEF. Once pe... | --アポクリフォート・キラー
--Apoqliphort Towers
local s,id=GetID()
function s.initial_effect(c)
--Cannot be Special Summoned
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:RegisterEffect(e1)
--Must be Tr... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "K9" Xyz Monster or 1 Rank 5 Xyz Monster you control; Special Summon from your Extra Deck, 1 "K9" Xyz Monster with a different name, by using that monster you control (this is treated as an Xyz Summon, transfer its materials to the Summoned monster). At the end of the Battle Phase, if your "K9" monster battled... | --K9-LC拘束解除
--K9-LC Release Restraint
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 2+ non-Tuner monsters If this card is Synchro Summoned: Target up to 3 cards your opponent controls; return those targets to the hand. | --ミスト・ウォーム
--Mist Wurm
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),2,99)
c:EnableReviveLimit()
--return hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCategory(CATE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 "Cyber Angel" Ritual Monster from your hand or field, then target 1 LIGHT Fairy monster you control; it gains ATK/DEF equal to the Level the monster had when Tributed x 200, until the end of this turn. This turn, if it battles an opponent's monster that was Special Summoned from the Extra Deck, that opponent'... | --荘厳なる機械天使
--Magnificent Machine Angel
--scripted by Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_CARD_TARGET)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 6 Dragon monsters Once per turn: You can detach 1 material from this card; Special Summon 1 Dragon monster from your Deck, and make its ATK/DEF 0. This card cannot attack during the turn you activate this effect. | --聖刻龍王-アトゥムス
--Hieratic Dragon King of Atum
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 6 Dragon monsters
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DRAGON),6,2)
--Special Summon 1 Dragon monster from your Deck, and make its ATK/DEF 0
loca... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 face-down monster you control. Your opponent declares 2 Attributes. Reveal the selected monster. If its Attribute is one of the declared Attributes, your opponent draws 2 cards. If not, you draw 2 cards. | --DNA定期健診
--DNA Checkup
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay 500 LP, then target 1 "Vanquish Soul" monster in your GY; either add it to your hand or Special Summon it in Defense Position. You can only activate 1 "Vanquish Soul - Continue?" per turn. | --VSコンティニュー
--Vanquish Soul - Continue?
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Gladiator Beast Laquari" + 2 "Gladiator Beast" monsters Must first be Special Summoned (from your Extra Deck) by shuffling the above cards you control into the Deck. (You do not use "Polymerization".) When a Spell/Trap Card is activated (Quick Effect): You can discard 1 card; negate the activation, and if you do, dest... | --剣闘獣ヘラクレイノス
--Gladiator Beast Heraklinos
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,78868776,1,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_GLADIATOR),2)
Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit)
--negate
local e1=Effect... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares a direct attack: You can Special Summon this card from your hand in Attack Position, and if you do, for the rest of this turn, it cannot be destroyed by battle and the battle damage you take from battles involving this card is halved. If this card is sent to the GY as Link Material: ... | --チョバムアーマー・ドラゴン
--Chobham Armor Dragon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from hand
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:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] If you have no card in your other Pendulum Zone: You can destroy this card, and if you do, Special Summon 1 face-up "Mythical Beast" Pendulum Monster from your Extra Deck, except "Mythical Beast Jackal King". You can only use this effect of "Mythical Beast Jackal King" once per turn. ---------------... | --魔導獣 キングジャッカル
--Mythical Beast Jackal King
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
c:EnableCounterPermit(COUNTER_SPELL)
--destroy & summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters, including a Level/Rank/Link 2 monster Cannot be used as Link Material the turn it is Link Summoned. Your opponent cannot target monsters this card points to with card effects. During the Main Phase (Quick Effect): You can target 1 Level 2 monster in your GY, or, if your opponent controls a monster, you can ... | --スプライト・エルフ
--Spright Elf
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,nil,2,2,s.lcheck)
--Cannot be Link Material the turn it's Link Summoned
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is used to Ritual Summon "Herald of Perfection". You must also Tribute monsters from your hand or field whose total Levels equal exactly 6. When "Herald of Perfection" is Ritual Summoned by this card's effect: You can banish this card from your Graveyard, then target 1 of the monsters in your Graveyard that w... | --宣告者の預言
--Dawn of the Herald
local s,id=GetID()
function s.initial_effect(c)
local e1=Ritual.AddProcEqual(c,s.ritualfil,6,nil,nil,nil,nil,s.stage2)
--salvage
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_TOHAND)
e2:SetDescription(aux.Stringid(id,0))
e2:SetProperty(EFFECT_FLAG_CARD_TARGET)
e2:SetType(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned: You can target 1 "S-Force" monster in your GY, except "S-Force Lapcewell"; Special Summon it. You can banish 1 "S-Force" card from your hand; destroy all of your opponent's monsters in the same columns as your "S-Force" monsters. You can only use each effect of "S-Force Lapcewell" once... | --S-Force ラプスウェル
--S-Force Lapcewell
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "S-Force" monster from the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by discarding 1 Level 5 or higher LIGHT monster. Once per turn: You can discard 1 LIGHT monster; banish 1 LIGHT monster from your Deck. | --ライトレイ グレファー
--Lightray Grepher
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
e1:SetTarget(s.sptg)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 300 ATK/DEF for each of your banished cards. | --黄金のホムンクルス
--Golden Homunculus
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(s.value)
c:RegisterEffect(e1)
local e2=Effect.CreateEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Add 1 "Unchained" card from your Deck to your hand. If this Set card is destroyed by card effect: You can Special Summon 1 "Unchained" monster from your Deck. You can only use each effect of "Abomination's Prison" once per turn. | --雙王の械
--Abomination's Prison
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card AND 1 Dragon-Type or WATER monster; Special Summon 1 "Tidal, Dragon Ruler of Waterfalls" from your Deck. It cannot attack this turn. You can only use the effect of "Stream, Dragon Ruler of Droplets" once per turn. | --水征竜-ストリーム
--Stream, Dragon Ruler of Droplets
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Tidal, Dragon Ruler of Waterfalls" from your Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be destroyed by battle. When a card on the field is destroyed by battle or by a card effect, return this face-up card to its owner's hand. | --柴戦士タロ
--Shiba-Warrior Taro
local s,id=GetID()
function s.initial_effect(c)
--battle indestructable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(1)
c:RegisterEffect(e1)
--damage
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 5 monsters You can detach 1 material from this card; add 1 "K9" card from your Deck to your hand, then if your opponent has activated a monster effect this turn, you can Set 1 "K9" Quick-Play Spell from your Deck or GY. When your opponent activates a monster effect in the hand or GY (Quick Effect): You can deta... | --K9-17号 “Ripper”
--K9-17 "Ripper"
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 5 monsters
Xyz.AddProcedure(c,nil,5,2)
--Add 1 "K9" card from your Deck to your hand
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: | You can Tribute this card; Special Summon 1 "Uria, Lord of Searing Flames", "Hamon, Lord of Striking Thunder", or "Raviel, Lord of Phantasms", from your hand, ignoring its Summoning conditions. You can banish this card from your GY; add 1 "Fallen Paradise" from your Deck to your hand. You can only use each effect of "C... | --混沌の召喚神
--Chaos Summoning Beast
--scripted by pyrQ
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_MZONE)
e1:SetCountLimit(1,id)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon a number of "Compass Tokens" (Machine/EARTH/Level 1/ATK 0/DEF 0) up to the number of monsters your opponent controls. | --クラスター・ペンデュラム
--Cosmic Compass
local s,id=GetID()
function s.initial_effect(c)
--token
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as an "Armored Xyz" card.) You can send 1 WATER Xyz Monster from your Extra Deck to the GY, then target 1 Fish monster in your GY with the same Level as the Rank of that monster; Special Summon it. During your opponent's turn, if this card is in your GY (Quick Effect): You can target 1 WATE... | --アーマード・シャーク
--Armored Shark
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Fish monster from your GY with a Level equal to the Rank of the Xyz Monster sent to the GY to activate this effect
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: | You can send 1 "Ancient Gear Golem" from your hand, Deck, or face-up Monster Zone to the GY; immediately after this effect resolves, Normal Summon 1 "Ancient Gear" monster. If you Normal or Special Summon "Ancient Gear Golem" (except during the Damage Step): You can Special Summon 1 "Ancient Gear Golem" from your hand ... | --古代の機械司令
--Ancient Gear Commander
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Normal Summon 1 "Ancient Gear" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetC... |
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. Once per turn: You can target 1 face-up monster your opponent controls; change it to face-down Defense Position. | --ゴーストリックの魔女
--Ghostrick Witch
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.Stringid(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent's monster declares an attack on a Synchro Monster you control: Negate the attack, then you can apply the rest of this card's effect. Banish that Synchro Monster you control and 1 Tuner from your GY, and if you do, Special Summon from your Extra Deck 1 Synchro Monster whose Level equals the total Leve... | --王者の調和
--King's Synchro
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.act... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent cannot target "Ice Barrier" monsters you control with monster effects. | --氷結界の御庭番
--Secret Guards of the Ice Barrier
local s,id=GetID()
function s.initial_effect(c)
--untargetable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE)
e1:SetTargetRange(LOCATION_MZO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All face-up "lswarm" monsters you currently control are unaffected by other Spell/Trap effects this turn. | --侵略の汎発感染
--Infestation Pandemic
local s,id=GetID()
function s.initial_effect(c)
--All your "lswarm" monsters are unaffected by other card effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
e1:SetHintTiming(0,T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The activation and effects of "Altergeist" cards activated on your field cannot be negated. When your opponent activates a monster effect: You can send 1 other face-up "Altergeist" card you control to the GY; negate the activation, and if you do, destroy it. You can only use this effect of "Altergeist Protocol" once pe... | --オルターガイスト・プロトコル
--Altergeist Protocol
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:SetCondition(aux.StatChangeDamageStepCondition)
c:RegisterEffect(e1)
--negate
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned: You can equip 1 Link Monster from your GY to this card, and if you do, place Borrel Counters on this card equal to that Link Monster's Link Rating. This card gains ATK equal to half the ATK of the monster equipped to it by its effect. When your opponent ... | --ヴァレルロード・S・ドラゴン
--Borreload Savage Dragon
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x147)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--Equip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 6 monsters You can also Xyz Summon this card by sending 1 "Burning Abyss" monster from your hand to the GY, then using 1 "Dante" monster you control as material. (Transfer its materials to this card.) If Summoned this way, the following effect cannot be activated this turn. Once per turn (Quick Effect): You can... | --永遠の淑女 ベアトリーチェ
--Beatrice, Lady of the Eternal
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,6,2,s.ovfilter,aux.Stringid(id,0),2,s.xyzop)
c:EnableReviveLimit()
--send to grave
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_QUICK_O)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent would Normal or Special Summons a monster(s), while you control a Normal Monster or a Level 5 or higher "Primite" monster, except a Token: Negate the Summon, and if you do, banish that monster(s). During your Standby Phase, if you control a "Primite" monster: You can Set this card from your GY, but b... | --原石の反叫
--Primite Scream
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Negate a Normal or Special Summon and banish that monster(s)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DISABLE_SUMMON+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "The Weather" Effect Monsters in your Main Monster Zones of this card's column and its adjacent columns gain this effect. ● You can banish this card, then target 1 Spell/Trap your opponent controls (Quick Effect); return it to the hand. You can only control 1 "The Weather Rainy Canvas". | --雨の天気模様
--The Weather Rainy Canvas
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)
--effect gain
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.String... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Draw Phase, instead of conducting your normal draw: You can reveal 3 "Malefic" cards from your Deck, then your opponent randomly adds 1 of them to your hand, and you shuffle the rest back into your Deck. | --Sin World
--Malefic World
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--search
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_TOHAND... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters When your opponent takes effect damage from another "Battlewasp" monster: You can inflict damage to your opponent equal to the original ATK of that monster. You can only use this effect of "Battlewasp - Azusa the Ghost Bow" once per turn. When a monster is destroyed by battle with your "... | --B・F-霊弓のアズサ
--Battlewasp - Azusa the Ghost Bow
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)
--Inflict damage
local e1=Effect.CreateEffect(c)
e1:SetDescriptio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner Dragon monsters You can target 1 banished LIGHT or DARK monster; Special Summon it to your field. When your opponent activates a monster effect (Quick Effect): You can target 1 banished card; shuffle it into the Deck, then if you shuffled it into your Deck, destroy that monster, or if you shuffle... | --深淵の神獣ディス・パテル
--Bystial Dis Pater
--scripted by Naim
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_DRAGON),1,99)
--Special Summon 1 banished LIGHT or DARK monster
local e1=Effect.CreateEffect(c)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can Fusion Summon. | --融合禁止エリア
--Non-Fusion Area
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)
--disable spsummon
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOCATION_SZONE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While this card is in face-up Attack Position on the field, this card is not destroyed as a result of battle. (Damage calculation is applied normally.) A monster that battled with this card cannot change its battle position, except with a card effect, or attack while this card is in face-up Attack Position on the field... | --薄幸の乙女
--The Unhappy Girl
local s,id=GetID()
function s.initial_effect(c)
--battle indestructable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(1)
e1:SetCondition(s.indcon)
c:RegisterEffect(e1)
--battled
local e2=Effect.CreateEffect(c)
e2:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control an "Adventurer Token": You can target 1 monster you control equipped with an Equip Card that mentions "Adventurer Token"; destroy as many monsters your opponent controls as possible with ATK less than or equal to that monster, then you can equip 1 Equip Spell that mentions "Adventurer Token" from your ha... | --サンダー・ディスチャージ
--Thunder Discharge
--scripted by Rundas
local s,id=GetID()
function s.initial_effect(c)
--Destroy monsters your opponent controls and equip a card to 1 monster you control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_EQUIP)
e1:SetPro... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, if another monster on the field returns to the hand or Main Deck: Send 1 WIND monster from your Deck to the Graveyard. | --虚空の騎士
--Altitude Knight
local s,id=GetID()
function s.initial_effect(c)
--send to grave
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,0,EFFECT_COUNT_CODE_S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy this card during your 3rd End Phase after activation. Once per turn, if a "SPYRAL" monster you control destroys a monster by battle, or if you destroy a card(s) on the field with a "SPYRAL" monster's effect you control: You can draw 1 card. You can banish this card from your Graveyard; Special Summon 1 "SPYRAL"... | --SPYRAL MISSION-強襲
--SPYRAL MISSION - Assault
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
c:RegisterEffect(e1)
--Draw 1 card
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is destroyed by battle: Send 2 WATER monsters from your Deck to the GY. | --スクリーチ
--Skreech
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_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetCondition(s.condition)
e1:SetTarget(s.... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.