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: | [ Pendulum Effect ] You can reduce the battle damage you take from an attack involving a Pendulum Monster you control to 0. During your End Phase: You can destroy this card, and if you do, add 1 Pendulum Monster with 1500 or less ATK from your Deck to your hand. You can only use each Pendulum Effect of "Odd-Eyes Pendul... | --オッドアイズ・ペンデュラム・ドラゴン
--Odd-Eyes Pendulum Dragon
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
--You can reduce the battle damage you take from an attack involving a Pendulum Monster you control to 0
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can add 1 Level 3 or lower Cyberse monster from your Deck to your hand. You can only use this effect of "Lady Debug" once per turn. | --レディ・デバッガー
--Lady Debug
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_TRIGGER_O+EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetCode(EVENT_SUMMON_SU... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, you can pay 1000 Life Points to destroy monsters your opponent controls equal to the number of face-up Psychic-Type monsters you control. | --マスター・ジーグ
--Master Gig
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCost(Cost.PayLP(1000))
e1:SetTarget(s.t... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters You can detach 2 materials from this card, then target 1 face-up monster your opponent controls; its ATK becomes half its current ATK, and if it does, this card gains that lost ATK. | --ダーク・リベリオン・エクシーズ・ドラゴン
--Dark Rebellion Xyz Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure
Xyz.AddProcedure(c,nil,4,2)
--Halve ATK and increase ATK
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by battle. If this card is in face-up Defense Position, destroy it. If this card is Normal Summoned: Place 1 Fog Counter on it for each "Cloudian" monster on the field. You can remove 1 Fog Counter from this card; Special Summon 1 "Cloudian - Smoke Ball" from your Deck or either GY. | --雲魔物-タービュランス
--Cloudian - Turbulence
local s,id=GetID()
function s.initial_effect(c)
--Cannot be destroyed by battle
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(1)
c:RegisterEffect(e1)
--Self destruction if in defense position
local e2=Eff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can reveal this card in your hand; your opponent randomly chooses 1 card from your entire hand, then you discard the chosen card. Then, if the discarded card was not "Danger! Chupacabra!", Special Summon 1 "Danger! Chupacabra!" from your hand, and if you do, draw 1 card. If this card is discarded: You can target 1 ... | --未み界かい域いきのチュパカブラ
--Danger! Chupacabra!
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_HANDES+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRang... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | At the start of the Damage Step, if this card attacks a face-down Defense Position monster: Destroy that face-down monster. | --一刀両断侍
--Sasuke Samurai
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_START)
e1:SetCondition(s.descon)
e1:SetTarget(s.d... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a face-up monster(s) you control with 1600 original ATK or DEF is destroyed by battle or an opponent's card effect and sent to the GY, while this card is in your hand or GY: You can Special Summon this card (but banish it when it leaves the field), and if you do, destroy 1 card your opponent controls. You can only u... | --サンダー・ハンド
--Thunder Hand
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the hand or GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Target 1 monster your opponent controls; destroy that target. If this card is sent from the hand to the GY: Target 1 Flip monster in your GY, except "Night Assailant"; add that target to your hand. | --深淵の暗殺者
--Night Assailant
local s,id=GetID()
function s.initial_effect(c)
--Destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.destg)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your opponent's Standby Phase, you can randomly select 1 card in your opponent's hand and look at it at the cost of 500 Life Points. | --検閲
--Inspection
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)
--
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a face-up "Memento" monster(s) you control leaves the field because of an opponent's card: Special Summon 1 "Mementoal Tecuhtlica - Combined Creation" from your hand or Deck, ignoring its Summoning conditions. If your opponent moves a "Memento" monster(s) out of your GY, while this card is in your GY (except during ... | --メメント・ボーン・バック
--Mementotlan Bone Back
--Scripted by Satellaa
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Mementoal Tecuhtlica - Combined Creation" from your hand or Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can pay 3000 LP; send 1 monster from your Extra Deck to the GY. | --ゲール・ドグラ
--Gale Dogra
local s,id=GetID()
function s.initial_effect(c)
--to grave
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(Cost.PayLP(3000))
e1:SetTarget(s.target)
e1:SetOperati... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Psychic monster you control and pay LP equal to its Level x 200; add 1 Machine monster with the same Attribute, but a higher Level, from your Deck to your hand. During your Main Phase, except the turn this card was sent to the GY: You can banish this card from your GY, then target 1 each of your banished Psych... | --大電脳兵廠
--Psychic Arsenal
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Add 1 Machine monster with the from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetPro... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Level 7 or higher Spellcaster monster you control; apply the following effects. ● While face-up, that monster is unaffected by other monsters' effects this turn, and is sent to the GY during the Standby Phase of the next turn. ● All monsters your opponent currently controls lose ATK equal to the targeted monst... | --死の罪宝-ルシエラ
--Sinful Spoils of Doom - Rciela
--Scripted by Satellaa
local s,id=GetID()
function s.initial_effect(c)
--Apply effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_TOGRAVE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetPro... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute this card while "Neo Space" is on the field to Special Summon 1 "Neo-Spacian Flare Scarab" from your hand or Deck. | --C・ラーバ
--Chrysalis Larva
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.spcon)
e1:SetCost(Cost.SelfTribute)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Special Summoned: You can target 1 Level 4 or lower Psychic monster in your GY or banishment; Special Summon it, then you can increase its Level by 1, also you cannot Special Summon from the Extra Deck for the rest of this turn, except Psychic monsters. You can only use t... | --沈黙のサイコマジシャン
--Silent Psychic Magician
--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)
--Special Summon 1 Level 4 or lower Psychic monster from your GY or ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can discard 2 cards, then target 1 face-up monster your opponent controls; equip that face-up monster to this card. This card gains ATK equal to the combined original ATK of the monsters equipped to it by this effect. Once per turn, during the End Phase: You can target 1 Monster Card equipped to this... | --The grand JUPITER
--The Grand Jupiter
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard your entire hand, then for each card you discarded to the GY by this effect, add 1 LIGHT monster from your GY to your hand. | --光の召集
--Beckoning Light
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_HANDES+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
function ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 3 monsters Neither player can target this card on the field with card effects. If this card would be destroyed by battle or card effect, you can detach 1 material from this card instead. Once per turn, during your Standby Phase: Gain 500 LP. If this card is sent from the field to the GY: Target 2 Level 3 monste... | --No.49 秘鳥フォーチュンチュン
--Number 49: Fortune Tune
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,3,2)
c:EnableReviveLimit()
--lpup
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetCategory(CATEGORY_RE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you activate a Counter Trap Card, OR if you negate the activation of a Spell/Trap Card, or monster effect (except during the Damage Step): You can banish 2 other Fairy monsters from your hand, field and/or GY; Special Summon this card from the GY (if it was there when you activated/negated) or hand (even if not). If... | --天空聖騎士アークパーシアス
--Sacred Arch-Airknight Parshath
local s,id=GetID()
function s.initial_effect(c)
--Special summon
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(id,0))
e3:SetCategory(CATEGORY_SPECIAL_SUMMON)
e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e3:SetRange(LOCATION_HAND|LOCATION_GRA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster is Tribute Summoned by Tributing this card: Gain 2000 LP. | --ゾルガ
--Zolga
local s,id=GetID()
function s.initial_effect(c)
--recover
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_RELEASE)
e1:SetCondition(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: You can add 1 "Prank-Kids" monster from your Deck to your hand. Once per turn, if you Fusion Summon a "Prank-Kids" Fusion Monster (except during the Damage Step): You can have all monsters you control gain 500 ATK (even if this card leaves the field). Once per turn, if you Link Summon a "Pr... | --プランキッズ・ハウス
--Prank-Kids Place
--
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:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Ninjitsu Art" card: Destroy as many other "Ninjitsu Art" cards you control as possible, then draw 2 cards. | --機甲忍法ゴールド・コンバージョン
--Armor Ninjitsu Art of Alchemy
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by targeting 1 Dragon-Type monster you control with 2500 or less ATK and DEF; neither player can Special Summon monsters with ATK less than or equal to the original ATK of that monster. When that monster leaves the field, destroy this card. | --竜の束縛
--Dragon's Bind
local s,id=GetID()
function s.initial_effect(c)
aux.AddPersistentProcedure(c,0,s.filter,nil,nil,nil,TIMINGS_CHECK_MONSTER)
--cannot spsummon
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_FIELD)
e3:SetRange(LOCATION_SZONE)
e3:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON)
e3:SetProperty(EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned, unless you control a "Ghostrick" monster. Once per turn: You can change this card to face-down Defense Position. When this card inflicts battle damage to your opponent: You can add 1 "Ghostrick" Spell/Trap Card from your Deck to your hand. You can only use this effect of "Ghostrick Stein" onc... | --ゴーストリック・シュタイン
--Ghostrick Stein
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.String... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Elemental HERO" monster + 1 EARTH monster Must be Fusion Summoned and cannot be Special Summoned by other ways. When this card is Fusion Summoned: Target 1 face-up monster your opponent controls; until the End Phase, its ATK is halved and this card gains the same amount of ATK. | --E・HERO ガイア
--Elemental HERO Gaia
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_ELEMENTAL_HERO),aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_EARTH))
--atk up
local e2=Effect.CreateEffect(c)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You cannot Pendulum Summon monsters, except Dragon monsters. This effect cannot be negated. You can target 1 Dragon Fusion, Synchro, or Xyz Monster in your GY; destroy this card, and if you do, Special Summon that target. ---------------------------------------- [ Monster Effect ] Cannot be Normal S... | --超天新龍オッドアイズ・レボリューション・ドラゴン
--Odd-Eyes Revolution Dragon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
--revive limit
c:EnableUnsummonable()
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by targeting 1 "Aesir" monster you control; it cannot be targeted by other card effects while this card is on the field. Send this card to the GY during your 2nd Standby Phase after activation. | --神の威光
--Solemn Authority
local s,id=GetID()
function s.initial_effect(c)
aux.AddPersistentProcedure(c,0,aux.FaceupFilter(Card.IsSetCard,SET_AESIR),nil,nil,TIMINGS_CHECK_MONSTER,TIMINGS_CHECK_MONSTER|TIMING_DRAW_PHASE,nil,nil,nil,s.operation)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can be used to Ritual Summon any "Mikanko" Ritual Monster. You must also Tribute monsters from your hand or field whose total Levels equal or exceed the Level of the Ritual Monster you Ritual Summon. Then you can apply the following effect. ● Destroy cards your opponent controls up to the number of Equip Spel... | --御巫神楽
--Mikanko Kagura
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Ritual Summon
local e1=Ritual.AddProcGreater({
handler=c,
filter=aux.FilterBoolFunction(Card.IsSetCard,SET_MIKANKO),
stage2=s.stage2
})
e1:SetCategory(e1:GetCategory()|CATEGORY_DESTROY|CATEGORY_DAMAGE)
e1:SetCountL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can reveal 1 Ritual Monster in your hand; Special Summon this card from your hand. If this card is Special Summoned: You can add 1 "Libromancer" monster from your Deck to your hand, except "Libromancer Fire". You can only use each effect of "Libromancer Fire" once per turn. | --リブロマンサー・ファイア
--Libromancer Fire
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon self
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Rise of the Salamangreat". When this card is Ritual Summoned using "Salamangreat Emerald Eagle" you control: You can destroy all Special Summoned monsters your opponent controls. Once per turn: You can Tribute 1 "Salamangreat" Link Monster; this turn, this card gains this effect. ●... | --転生炎獣エメラルド•イーグル
--Salamangreat Emerald Eagle
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
aux.EnableCheckReincarnation(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SIN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | To Special Summon "Uria, Lord of Searing Flames" using its own procedure, you can also use face-down Traps you control. Once per battle, when an attack is declared involving your "Uria, Lord of Searing Flames": You can send 1 Trap from your hand or Deck to the GY; its ATK/DEF become the number of face-up Traps on the f... | --ハイパーブレイズ
--Hyper Blaze
--Scripted by Naim, procedure by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
c:RegisterEffect(e1)
--Procedure enhancement
local e2... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Junk Synchron" + 1+ non-Tuner monsters If this card is Synchro Summoned: You can Special Summon as many Level 2 or lower monsters from your GY as possible, but they cannot activate their effects this turn, also you can only Special Summon once for the rest of this turn. When this card destroys an opponent's monster by... | --ジャンク・ウォリアー・エクストリーム
--Junk Warrior Extreme
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: "Junk Synchron" + 1+ non-Tuner monsters
Synchro.AddProcedure(c,s.tunerfilter,1,1,Synchro.NonTuner(nil),1,99)
--Special Summon as many Level 2 or lower mons... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Shuffle into the Deck, 5 of your "World Legacy" cards with different names that are banished, in your hand or GY, and/or face-up on your field, except "World Legacy Trap Globe", then draw 2 cards. You can only activate 1 "World Legacy Trap Globe" per turn. | --星遺物に蠢く罠
--World Legacy Trap Globe
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetHintTiming(0,TIMING_END_PH... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 face-up monster on the field; you cannot Special Summon monsters from the Extra Deck for the rest of this turn, except Cyberse monsters, also Special Summon this card from your hand (but it cannot attack this turn), and if you do, the targeted monster loses 1000 ATK until the end of this turn. You can ... | --斬機サブトラ
--Mathmech Subtraction
--Scripted by Naim
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_ATKCHANGE+CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be used as material for a Fusion, Synchro, or Xyz Summon. You can only control 1 "Yellow Duston". While this card is face-up on the field, it cannot be Tributed. If this card on the field is destroyed: Its controller targets 1 monster in their GY; shuffle that target into the Deck. * The above text is unofficial... | --イエロー・ダストン
--Yellow Duston
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--cannot release
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UNRELEASABLE_SUM)
e1:SetValue(1)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is sent from the field to the Graveyard: You can Special Summon 1 Level 4 or lower "Butterspy" monster from your Deck. | --月光蝶
--Moonlit Papillon
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_TO_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot attack the turn it is Summoned. If "Toon World" on the field is destroyed, destroy this card. While you control "Toon World" and your opponent controls no Toon monsters, this card can attack your opponent directly. If this card inflicts battle damage to your opponent: Draw 1 card. | --トゥーン・仮面魔道士
--Toon Masked Sorcerer
local s,id=GetID()
function s.initial_effect(c)
--Cannot attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetOperation(s.atklimit)
c:RegisterEffect(e1)
l... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the End Phase, if this card was Normal Summoned this turn: You can Tribute this card; excavate the top 5 cards of your Deck, you can add 1 excavated Spell/Trap to your hand, also send the remaining cards to the GY. | --クリバンデット
--Kuribandit
local s,id=GetID()
function s.initial_effect(c)
--mill
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetOperation(s.sumsuc)
c:RegisterEffect(e1)
local e2=Effect.CreateEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can add 1 "Subterror" card from your Deck to your hand, except "Subterror Guru". You can target 1 other face-up monster on the field; change both that monster and this card to face-down Defense Position. This is a Quick Effect if you control another "Subterror" card. You can only use each effect of "Subterror... | --サブテラーの導師
--Subterror Guru
--Scripted by Eerie Code
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_FLIP+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Increase 1 face-up monster's DEF by 700 points until the end of this turn. | --頼もしき守護者
--The Reliable Guardian
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DEFCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a "Mikanko" monster. The equipped monster cannot be destroyed by card effects. If a monster(s) is Special Summoned to your opponent's field (except during the Damage Step): You can target 1 monster you control and 1 monster your opponent controls; return them to the hand. You can only use this effect of "... | --御巫の祓舞
--Mikanko Purification Dance
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsSetCard,SET_MIKANKO))
--Prevent destruction by effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_INDESTRUCTABLE_EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Both players reveal their hands, each chooses 1 card from their opponent's hand, then you discard the chosen cards from both players' hands, then both players draw 1 card. | --墓穴の道連れ
--Dragged Down into the Grave
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_HANDES+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy 1 monster equipped with "Flint". You can return this card to your Deck instead of sending it to the Graveyard after it resolves. | --フリント・アタック
--Flint Missile
local s,id=GetID()
function s.initial_effect(c)
--Destroy a monster equipped with "Flint"
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | For a Synchro Summon, you can substitute this card for any 1 "Synchron" Tuner. You can only use each of the following effects of "Scrap Synchron" once per turn. If you Synchro Summon a monster that mentions a "Synchron" Tuner as material, this card in your hand can also be used as material. If a monster(s) that mention... | --スクラップ・シンクロン
--Scrap Synchron
--Scripted by the Razgriz
local s,id=GetID()
function s.initial_effect(c)
--For a Synchro Summon, you can substitute this card for any 1 "Synchron" Tuner ("Quickdraw Synchron")
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Tribute Summoned successfully, your opponent cannot declare an attack during his/her next turn. | --テーヴァ
--Teva
local s,id=GetID()
function s.initial_effect(c)
--to deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCondition(s.condition)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
f... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 card; add 2 "Ursarctic" monsters from your Deck to your hand. If you would Tribute a monster(s) to activate an "Ursarctic" monster's effect, except the turn this card was sent to the GY, you can banish this card from your GY instead. You can only use each effect of "Ursarctic Departure" once per turn. | --ベアルクティ・ディパーチャー
--Ursarctic Departure
--Scripted by edo9300
local s,id=GetID()
function s.initial_effect(c)
--Add 2 "Ursarctic" monsters from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control an "Exosister" monster: You can Special Summon this card from your hand, then if you control "Exosister Stella", you gain 800 LP. If your opponent moves a card(s) out of either GY (except during the Damage Step): You can Special Summon from your Extra Deck, 1 "Exosister" Xyz Monster using this face-up ca... | --エクソシスター・エリス
--Exosister Elis
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon self
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as an "Archfiend" card.) Banish any monster destroyed by battle with this card. | --レッサー・デーモン
--Lesser Fiend
local s,id=GetID()
function s.initial_effect(c)
--redirect
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_BATTLE_DESTROY_REDIRECT)
e1:SetValue(LOCATION_REMOVED)
c:RegisterEffect(e1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned by the effect of an "Evoltile" monster: It gains 500 DEF. If this card was Special Summoned by the effect of an "Evoltile" monster, then is destroyed by battle: You can add 1 "Evoltile" monster from your Deck to your hand. | --エヴォルダー・ペルタ
--Evolsaur Pelta
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetCondition(aux.evospcon)
e1:SetOperat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can be used to Ritual Summon any Dragon Ritual Monster from your hand or GY. You must also Tribute Pendulum Monsters from your hand or field whose total Levels equal or exceed the Level of the Ritual Monster you Ritual Summon. If your opponent controls 2 or more monsters and you control no monsters, you can a... | --オッドアイズ・アドベント
--Odd-Eyes Advent
local s,id=GetID()
function s.initial_effect(c)
local e1=Ritual.CreateProc({handler=c,lvtype=RITPROC_GREATER,filter=s.ritualfil,extrafil=s.extrafil,extraop=s.extraop,matfilter=s.forcedgroup,location=LOCATION_HAND|LOCATION_GRAVE})
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Two-Headed King Rex" + "Crawling Dragon #2" | --ブラキオレイドス
--Bracchio-raidus
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,94119974,38289717)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, you can flip this card into face-down Defense Position. When this card is flipped face-up, it gains 300 ATK and DEF until the end of the turn. (If attacked, this effect resolves after damage calculation.) | --王族親衛隊
--Royal Keeper
local s,id=GetID()
function s.initial_effect(c)
--turn set
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase 1: You can banish this card from the Graveyard, then target 1 "Blackwing" monster you control; if that monster attacks this turn, you take no battle damage from that attack, it is not destroyed by that battle, also destroy the opponent's monster that it battled, after damage calculation. | --BF-尖鋭のボーラ
--Blackwing - Boreas the Sharp
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_GRAVE)
e1:SetCondition(s.condition)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 EARTH Tuner + 1+ non-Tuner EARTH monsters | --ナチュル・ガオドレイク
--Naturia Leodrake
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_EARTH),1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_EARTH),1,99)
c:EnableReviveLimit()
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Horus" monsters you control cannot be destroyed by card effects that do not target them. You can send 1 card from your hand to the GY; send 1 "Horus" monster from your Deck to the GY. You can only use this effect of "King's Sarcophagus" up to four times per turn. Once per turn, at the start of the Damage Step, if your... | --王の棺
--King's Sarcophagus
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Your "Horus" monsters cannot be destroyed by effects that do not target them
local e2=Effec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to an "Inzektor" monster. It gains 800 ATK/DEF. If this face-up card on the field is sent to the GY: Target 1 "Inzektor" monster in your GY; add that target to your hand. | --甲虫装機の魔剣 ゼクトキャリバー
--Inzektor Sword - Zektkaliber
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsSetCard,SET_INZEKTOR))
--Atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(800)
c:RegisterEffect... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can banish 2 LIGHT monsters from your Graveyard to target 1 face-up monster on the field with higher ATK than this face-up card; destroy that target. | --放浪の勇者 フリード
--Freed the Brave Wanderer
local s,id=GetID()
function s.initial_effect(c)
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:SetCountLimit(1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this is the only card in your hand, you can Normal Summon this card without Tributing. | --疾風の暗黒騎士ガイア
--Swift Gaia the Fierce Knight
local s,id=GetID()
function s.initial_effect(c)
--summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SUMMON_PROC)
e1:SetConditio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Apply any of the following effect(s) in sequence, depending on the Type(s) of Effect Monster you control. ● Fairy: You can draw 3 cards, then place 2 cards from your hand on the bottom of your Deck in any order. ● Fiend: You can make your opponent draw 1 card, then discard 1 random card, then if they still have a card ... | --聖邪のステンドグラス
--Stained Glass of Light & Dark
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW+CATEGORY_TODECK+CATEGORY_HANDES+CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can take 1 of your "Destiny HERO" monsters from your Deck, GY, or that is banished, and place it on top of your Deck. You can only use this effect of "Destiny HERO - Denier" once per turn. If you have a "Destiny HERO" monster on your field or in your GY, other than "Desti... | --D-HERO ディナイアルガイ
--Destiny HERO - Denier
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--If normal or special summoned, place on top of your Deck, 1 of your "Destiny HERO" monsters that is banished, in GY, or Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send all "Chrysalis" monsters you control to the Graveyard, and Special Summon 1 monster from your hand or Deck that is written in the card text of those cards. | --コンタクト
--Contact
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a card or effect is activated that would inflict damage to you (Quick Effect): You can discard this card; make that effect damage to you 0. During the Main Phase (Quick Effect): You can discard this card, then target 1 "Performapal" or "Odd-Eyes" card you control; this turn, it cannot be destroyed by battle or car... | --EMレインゴート
--Performapal Rain Goat
local s,id=GetID()
function s.initial_effect(c)
--Reduce effect damage to 0
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetRange(LOCATION_HAND)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a "Spirit Message" card would be placed on your field with "Destiny Board", you can Special Summon it as a Normal Monster (Fiend/DARK/Level 1/ATK 0/DEF 0) instead, and if you do, it is unaffected by card effects, except "Destiny Board", and cannot be targeted for attacks, but does not prevent your opponent from atta... | --ダーク・サンクチュアリ
--Dark Sanctuary
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)
--"Spirit Message" handling
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetProperty(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card inflicts battle damage to your opponent by a direct attack: You can target 1 monster in your GY; Special Summon it in Defense Position. | --屈強の釣り師
--Grappler Angler
--
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_CARD_TARGET)
e1:SetCode(EVEN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by banishing 1 face-up monster you control. If you Summon this way, during the next Standby Phase: Return the banished monster to the field. * The above text is unofficial and describes the card's functionality in the OCG. | --異次元の精霊
--D.D. Sprite
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:SetOperation(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters If this card is Xyz Summoned: You can Special Summon 1 "Photon" monster from your hand. While this Xyz Summoned monster is on the field, your opponent cannot target monsters you control with 2000 or more ATK with card effects, also they cannot be destroyed by your opponent's card effects. Once per op... | --輝光竜フォトン・ブラスト・ドラゴン
--Starliege Photon Blast Dragon
local s,id=GetID()
function s.initial_effect(c)
--Xyz summon procedure
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--Special summon a monster (when summoned)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your opponent's turn, at damage calculation: Make the battle damage you take from this battle 0, then you can add 1 Warrior-Type Tuner monster with 1500 or less DEF from your Graveyard to your hand. | --スピリット・フォース
--Spirit Force
local s,id=GetID()
function s.initial_effect(c)
--no damage
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:Regi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Psychic-Type monster you control is destroyed by battle with an opponent's attacking monster and sent to the Graveyard: Target the opponent's monster; destroy that target, and if you do, inflict damage to your opponent equal to the Level of your destroyed Psychic-Type monster x 300. | --カース・サイキック
--Psi-Curse
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card you control would be used as Link Material for a Cyberse monster, you can also use 1 Cyberse monster in your hand as material. During your End Phase: You can banish this card from your GY, then target 2 Link Monsters in your GY including a Cyberse Link Monster; return them to the Extra Deck. You can only u... | --プロキシー・ホース
--Proxy Horse
--Scripted by the Razgriz and Cybercatman
local s,id=GetID()
function s.initial_effect(c)
--Extra Link Material
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_HAND)
e1:SetCode(EFFECT_EXTRA_MATERIAL)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetTarg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 7 monsters When any player's monster declares an attack: You can detach 1 material from this card; negate the attack, then you can Special Summon 1 "Odd-Eyes" monster from your hand or GY. If this Xyz Summoned card is sent to the GY: You can Special Summon 1 "Odd-Eyes" monster from your Extra Deck, except "Odd-... | --オッドアイズ・アブソリュート・ドラゴン
--Odd-Eyes Absolute Dragon
local s,id=GetID()
function s.initial_effect(c)
--Xyz summon
Xyz.AddProcedure(c,nil,7,2)
c:EnableReviveLimit()
--Negate attack and special summon 1 "Odd-Eyes" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can choose 1 "Gishki" monster from your Deck and place it on top of your Deck. | --リチュア・アバンス
--Gishki Avance
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
en... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 8 Dragon monsters Cannot attack directly unless this card has a Normal Monster as material. You can only use each of the following effects of "Indigo-Eyes Silver Dragon" once per turn. If this card is Xyz Summoned: You can negate the effects of all face-up cards your opponent currently controls. You can detach ... | --藍眼の銀龍
--Indigo-Eyes Silver Dragon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 8 Dragon monsters
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DRAGON),8,2)
--Cannot attack directly unless it has a Normal Monster as ma... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only during the Battle Phase. Select 2 face-up "Karakuri" monsters in Attack Position. Change 1 of the selected monsters to Defense Position, and the other gains ATK equal to the ATK of the monster changed to Defense Position, until the End Phase. | --カラクリ粉
--Karakuri Gold Dust
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (Quick Effect): You can send 1 "Subterror" monster from your Deck to the GY; Tribute this card and at least 1 other monster so the total original Levels Tributed equal or exceed the Level of that "Subterror" monster in the GY, and if you do, Special Summon that monster in face-up or face-down Defense Position. If a "Su... | --サブテラーの戦士
--Subterror Nemesis Warrior
local s,id=GetID()
function s.initial_effect(c)
--Tribute this card and at least 1 other monster and Special Summon 1 "Subterror" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_RELEASE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can target 1 other face-up monster on the field; increase that target's Level by 2 until the end of this turn. | --スター・ブライト・ドラゴン
--Bright Star Dragon
local s,id=GetID()
function s.initial_effect(c)
--lv up
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.tg)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent controls a monster whose current ATK is higher than its original ATK, while you control no monsters: Draw 2 cards. You can only activate 1 "Smile Potion" per turn. | --スマイル・ポーション
--Smile Potion
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCountLimit(1,id,EFFECT_COUNT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal or Special Summoned: You can target 1 "Speedroid" monster you control, except "Speedroid Red-Eyed Dice", and declare a Level from 1 to 6; it becomes that Level until the end of this turn. | --SR赤目のダイス
--Speedroid Red-Eyed Dice
local s,id=GetID()
function s.initial_effect(c)
--lv change
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.tg)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is destroyed, send the top 3 cards of your opponent's Deck to the Graveyard. | --ウォーム・ワーム
--Warm Worm
local s,id=GetID()
function s.initial_effect(c)
--deckdes
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DECKDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_DESTROYED)
e1:SetTarget(s.target)
e1:SetOperation(s.operat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn: You can discard this card, then target 1 "Aroma" monster in your Graveyard; gain LP equal to that target's ATK. While your LP is higher than your opponent's, you control an "Aroma" monster, and this card is in your Graveyard: You can Special Summon this card, but banish it when it leaves th... | --アロマセラフィ-アンゼリカ
--Aromaseraphy Angelica
local s,id=GetID()
function s.initial_effect(c)
--Gain LP equal to targeted "Aroma" monster in your GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetProperty(EFFECT_FLAG_CARD_TARG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Unless your opponent sends 1 card from the top of his/her Deck to the Graveyard, he/she cannot declare an attack. | --墓守の使い魔
--Gravekeeper's Servant
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)
--attack cost
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_ATTACK_COS... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Look at up to 5 cards from the top of your Deck, then place them on the top of the Deck in any order. | --大王目玉
--Big Eye
local s,id=GetID()
function s.initial_effect(c)
--sort the top deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
function s.operation(e,tp,eg,ep,ev,re,r,rp)
local ct=mat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can declare a Level from 1 to 9; this card becomes that Level until the end of this turn. After this card has been flipped face-up, during any Main Phase (Quick Effect): You can target 1 other face-up monster on either field; immediately after this effect resolves, Synchro Summon 1 monster using only this car... | --魔界造車-GT19
--Turbo-Tainted Hot Rod GT19
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Register when it's flipped face-up
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e0:SetCode(EVENT_FLIP)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e0:SetOperation(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Return 1 Synchro Monster you control to the Extra Deck, and if you do, Special Summon 4 "Flower Cardian" monsters from your GY, then, draw 1 card and show it, then, if it is a "Flower Cardian" monster, you can Special Summon it, ignoring its Summoning conditions. Otherwise, destroy as many monsters you control as possi... | --超勝負!
--Super All In!
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Return synchro to extra deck, special summon 4 "Flower Cardian" monsters from GY, draw 1
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute this card; add 1 "D.D. Esper Star Sparrow" from your Deck or Graveyard to your hand. | --野獣戦士ピューマン
--Beast-Warrior Puma
local s,id=GetID()
function s.initial_effect(c)
--salvage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(Cost.SelfTribute)
e1:SetTarget(... |
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 Tributing 1 Level 12 "Flower Cardian" monster, except "Flower Cardian Paulownia with Phoenix". If this card is Special Summoned: Draw 1 card, and if you do, show it, then you can Special Summon it if it is a "Flower Cardian" monster. Othe... | --花札衛-桐に鳳凰-
--Flower Cardian Paulownia with Phoenix
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Must first be Special Summoned (from your hand) by Tributing 1 Level 12 "Flower Cardian" monster, except "Flower Cardian Paulownia with Phoenix"
local e0=Effect.CreateEffect(c)
e0:SetDescripti... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When using this card as a Synchro Material Monster, the other Synchro Material Monster is 1 monster in your hand. The Synchro Monster that used this card as a Synchro Material Monster cannot activate its effect, its effect(s) is negated, and it is removed from play when removed from the field. | --エキセントリック・ボーイ
--Eccentric Boy
local s,id=GetID()
function s.initial_effect(c)
--A synchro monster using this card cannot activate its effects, has its effects negated, and is banished
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e2:SetCode(EVENT_BE_MATERIAL)
e2:SetProperty... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, if you control another "Genex" monster, you can make this card's name "Genex Controller" until the End Phase. | --スペア・ジェネクス
--Genex Spare
local s,id=GetID()
function s.initial_effect(c)
--cos
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.condition)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) with an original Level of 7 or higher has been sent from each player's field to the GY this turn: Banish as many monsters from the GYs as possible, then you can Special Summon the highest-Level Spellcaster monster among those banished monsters (your choice, if tied). * The above text is unofficial and d... | --ファイナル・ギアス
--Final Geas
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE|TIMING_TOGRAVE)
e1:SetCondition(s.condition... |
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. ● At the start of the Damage Step, if this card battles an opponent's monster: You can banish this card; return that opponent's monster to the hand. You can only control 1 "The Weather Thundery Canv... | --雷の天気模様
--The Weather Thundery 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.Str... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be Normal Summoned or Set. This card cannot be Special Summoned except by Tributing 2 face-up monsters with 0 ATK from anywhere on the field. Once per turn, you can select and destroy 1 face-up monster your opponent controls. There can only be 1 face-up "Reptilianne Vaskii" on the field. | --レプティレス・ヴァースキ
--Reptilianne Vaskii
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
c:AddMustBeSpecialSummoned()
--There can only be 1 face-up "Reptilianne Vaskii" on the field
c:SetUniqueOnField(1,1,id)
--You can Special Summon (from your hand) by Tributing 2 face-up monsters with 0 ATK from... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. Once per turn, during the End Phase, if this card was Normal Summoned or flipped face-up this turn: Return this card to the hand. When this card is Normal Summoned or flipped face-up: You can add 1 Spirit monster from your Deck to your hand, except "Aratama". | --荒魂
--Aratama
local s,id=GetID()
function s.initial_effect(c)
Spirit.AddProcedure(c,EVENT_SUMMON_SUCCESS,EVENT_FLIP)
--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)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 100 ATK for each face-down card in your Extra Deck. You can only use each of the following effects of "Dreaming Reality of Nemleria, Realized" once per turn. If this card is in your hand: You can target 1 monster you control; place it on the bottom of the Deck, and if you do, Special Summon this card. If this car... | --夢現の眠姫-ネムレリア・レアリゼ
--Dreaming Reality of Nemleria, Realized
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Gains 100 ATK for each face-down card in your Extra Deck
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_UPDATE_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be Normal Summoned or Set. This card cannot be Special Summoned except with the effect of "Summon Reactor ・SK". Once per turn, you can send 1 card from your hand to the Graveyard to destroy 1 card your opponent controls. Once during each of your opponent's turns, you can activate 1 of the following eff... | --ジャイアント・ボマー・エアレイド
--Flying Fortress SKY FIRE
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:Regi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 "Constellar" monster from your hand in face-up Defense Position. | --セイクリッド・レスカ
--Constellar Alrescha
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Constellar" monster from your hand in face-up Defense Position
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card destroys a monster with 0 ATK by battle, you can Special Summon that monster from the Graveyard to your side of the field in face-up Defense Position. The effect(s) of that monster is negated. | --レプティレス・スキュラ
--Reptilianne Scylla
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_SPECIAL_SUMMON)
e2:SetCode(EVENT_BATTLE_DESTROYING)
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e2:SetConditio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute 1 face-up "Wind-Up" monster, except "Wind-Up Hunter"; send 1 random card from your opponent's hand to the Graveyard. This effect can only be used once while this card is face-up on the field. | --ゼンマイハンター
--Wind-Up Hunter
local s,id=GetID()
function s.initial_effect(c)
--handes
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_NO_TURN_RESET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZO... |
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 target 1 Cyberse monster in your GY or banishment; add it to your hand. You can target 1 other Cyberse monster you control with a Level; this card's Level becomes that monster's. If this card is sent to the GY as Link Material: You can add 1 "A.I... | --ファイアウォール・S・ドラゴン
--Firewall Saber Dragon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Add 1 Cyberse monster from your GY or banishment to your h... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control an Xyz Monster that has an Xyz Monster as material: Declare 1 monster Attribute on the field; destroy all monsters on the field with that Attribute, except monsters equipped with an Equip Spell. You can banish this card from your GY and detach 1 material from a monster you control; Special Summon 1 Fish,... | --エクシーズ・ポセイドン・スプラッシュ
--Xyz Poseidon Splash
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Destroy monsters of the declared attribute that are not equipped with an Equip Spell
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a Spell/Trap Card (Quick Effect): You can Tribute 1 "Naturia" monster and this card; negate the activation, and if you do, destroy that card. | --ナチュル・ナーブ
--Naturia Vein
local s,id=GetID()
function s.initial_effect(c)
--Negate Spell/Trap Card activation
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DA... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.