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: | 1 DARK Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned: You can send 1 "Blackwing" monster from your Deck to the GY, and if you do, this card's Level becomes the same as that monster's. When this card destroys a monster by battle and sends it to the GY: You can banish 1 "Blackwing" monster from your GY o... | --BF-魔風のボレアース
--Blackwing - Boreastorm the Wicked Wind
--scripted by Cybercatman
local s,id=GetID()
function s.initial_effect(c)
--Synchro Summon procedure
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_DARK),1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--Send to the GY and chan... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only use each of the following effects of "Therion "King" Regulus" once per turn. ● You can target 1 "Therion" monster or 1 Machine monster in your GY; Special Summon this card from your hand, and if you do, equip that monster to this card. ● When your opponent activates a card or effect (Quick Effect): You can... | --セリオンズ“キング”レギュラス
--Therion "King" Regulus
--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_EQUIP)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no monsters: Reveal up to 2 "Yosenju" monsters with different names in your hand, then target the same number of face-up cards your opponent controls; return them to the hand. You can only activate 1 "Yosenjus' Sword Sting" per turn. | --妖仙獣の居太刀風
--Yosenjus' Sword Sting
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,id,EFFECT_COUNT_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 5 "Noble Knight" monsters When this card is Xyz Summoned: You can target up to 3 "Noble Arms" Equip Spell Cards with different names in your Graveyard; equip those targets to this card. Once per turn: You can detach 1 Xyz Material from this card, then target 1 other monster on the field; destroy that target. If... | --神聖騎士王アルトリウス
--Sacred Noble Knight of King Artorigus
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunction(Card.IsSetCard,SET_NOBLE_KNIGHT),5,2)
c:EnableReviveLimit()
--equip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon this card as an Effect Monster (Beast/EARTH/Level 2/ATK 0/DEF 2000). (This card is also still a Trap.) If this card is in the Monster Zone (Quick Effect): You can declare 1 Type and 1 Attribute, then target 1 face-up monster on the field; it becomes that Type and Attribute, until the end of this turn. Yo... | --ミメシスエレファント
--Mimesis Elephant
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself
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:SetHintTiming(0... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an attack is declared involving your face-up monster and an opponent's monster: You can Special Summon this card from your hand or GY, but banish it when it leaves the field. You can only use this effect of "Vic Viper T301" once per turn. Other LIGHT Machine monsters you control gain 1200 ATK. | --ビック・バイパー T301
--Vic Viper T301
--scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--atk
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetRange(LOCATION_HAND|LOCATION_GRAVE)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Negate the activation of an Effect Monster's effect that activates when a monster is Special Summoned (including itself), and destroy it. | --ツバメ返し
--Swallow Flip
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 8 monsters Once per turn, during your Standby Phase: You can attach 1 card from your opponent's GY to this card as material. You can only use each of the following effects of "Number 1: Infection Buzzking" once per turn. If this card is Xyz Summoned: You can look at your opponent's Extra Deck and send 1 card f... | --No.1 インフェクション・バアル・ゼブル
--Number 1: Infection Buzzking
--scripted by pyrQ, adapted from the anime script
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure
Xyz.AddProcedure(c,nil,8,2,nil,nil,Xyz.InfiniteMats)
--Attach 1 card from your opponent's GY to this card
local e1=Ef... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 Level 5 or higher Normal Monster from your hand. | --古のルール
--Ancient Rules
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.filter(c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 5 monsters Must be Link Summoned. If this card is Link Summoned using DARK, EARTH, WATER, FIRE, and WIND Attributes: You can destroy all cards your opponent controls. Cannot be destroyed by battle with a DARK, EARTH, WATER, FIRE, or WIND monster. Unaffected by other cards' effects. Once per turn, during your opponent's... | --L・G・D
--Five-Headed Link Dragon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,nil,5,5)
--must link summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 8 monsters During either player's turn: You can banish 1 random face-down monster from your opponent's Extra Deck, face-up, and if you do, this card's ATK becomes equal to the banished monster's. During either player's turn: You can detach 1 Xyz Material from this card, then target 1 of your opponent's banished... | --魔海城アイガイオン
--Aegaion the Sea Castrum
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,8,2)
c:EnableReviveLimit()
--remove
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During this turn, each time a card(s) is banished from your hand, field, and/or GY by your opponent's activated monster effect, apply the following effects, based on where the cards were banished from. ● Hand: Banish up to 2 random cards from your opponent's hand. ● Field: Banish up to 2 cards your opponent controls. ●... | --氷結界の鏡
--Mirror of the Ice Barrier
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)
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: | FLIP: You can target up to 2 "Krawler" monsters in your GY; add them to your hand. If this face-up card in its owner's control leaves the field because of an opponent's card effect: You can Special Summon 2 "Krawler" monsters with different names from your Deck in face-down Defense Position, except "Krawler Ranvier". Y... | --クローラー・ランヴィエ
--Krawler Ranvier
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can Special Summon 1 Cyberse monster from your hand in Defense Position. You can only use this effect of "Widget Kid" once per turn. | --ウィジェット・キッド
--Widget Kid
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during either player's turn: You can target 1 face-up "Vylon" Equip Card you control and 1 appropriate face-up monster; equip the first target to the second target. | --ヴァイロン・スティグマ
--Vylon Stigma
local s,id=GetID()
function s.initial_effect(c)
--equip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase, you can Normal Summon 1 Beast-Warrior monster in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) All Beast-Warrior monsters you control gain 100 ATK. | --炎舞-「天枢」
--Fire Formation - Tensu
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--extra summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYPE_FIELD)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Level 8 or higher Synchro Monster: Add 1 card from your GY to your hand, except "Burning Soul", then, immediately after this effect resolves, Synchro Summon using monsters you control as material. For the rest of this turn after this card resolves, your opponent cannot target Synchro Monsters on the fi... | --バーニング・ソウル
--Burning Soul
--scripted by Hatter
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:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] If your "Performapal" or "Odd-Eyes" monster attacks a Defense Position monster, inflict piercing battle damage to your opponent. ---------------------------------------- [ Monster Effect ] During damage calculation, if your Pendulum Monster attacks an opponent's monster: You can make that opponent's... | --EMオッドアイズ・ミノタウロス
--Performapal Odd-Eyes Minitaurus
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
--pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_PIERCE)
e1:SetRange(LOCATION_PZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarget(s.ptg)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 WIND Machine Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned: You can target 1 Level 7 or lower WIND non-Tuner Synchro Monster in your GY; Special Summon it. If your opponent Special Summons a monster(s), and you control a "Clear Wing" monster (except during the Damage Step): You can banish this card f... | --HSRグライダー2
--Hi-Speedroid Glider #2
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 WIND Machine Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,s.tunerfilter,1,1,Synchro.NonTuner(nil),1,99)
--Special Summon 1 non-Tuner Level 7 or lower WI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be used as a Synchro Material, except for the Synchro Summon of a Warrior-Type monster. If this card is used for a Synchro Summon, banish it. When this card is Normal Summoned: You can target 1 "Noble Knight" Normal Monster in your Graveyard; Special Summon that target. If this card is in your Graveyard: You can... | --湖の乙女ヴィヴィアン
--Lady of the Lake
local s,id=GetID()
function s.initial_effect(c)
--synchro limit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_BE_SYNCHRO_MATERIAL)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetValue(s.synlimit)
c:RegisterEffect(e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned: You can choose either 1 or 2, then excavate that many cards from the top of your Deck, send any excavated Plant-Type monsters to the Graveyard, also place the other cards on the bottom of your Deck in any order. If this card is excavated from the Deck and sent to the Graveyard by a c... | --森羅の神芽 スプラウト
--Sylvan Cherubsprout
local s,id=GetID()
function s.initial_effect(c)
--Excavate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCategory(CATEGORY_DECKDES)
e1:SetCode(EVENT_SPSUM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Summoned unless you control a face-up "Shooting Star Bow - Ceal". You can send 1 Equip Spell Card you control that is equipped to this card to the Graveyard to target 1 monster your opponent controls; destroy that target. | --ガーディアン・シール
--Guardian Ceal
local s,id=GetID()
function s.initial_effect(c)
--sum limit
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_SUMMON)
e1:SetCondition(s.sumlimit)
c:RegisterEffect(e1)
local e2=e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1 or more non-Tuner "Gusto" monsters Once per turn, during your End Phase: You can banish 1 WIND monster from your Graveyard to target 1 face-down card your opponent controls; destroy that target. | --ダイガスタ・イグルス
--Daigusto Eguls
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsSetCard,SET_GUSTO),1,99)
c:EnableReviveLimit()
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares an attack: Tribute 1 "Hero Kid"; negate the attack, then add 1 "Elemental HERO" monster from your Deck to your hand. | --キッズ・ガード
--Kid Guard
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_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Prayers of the Voiceless Voice". Gains 2050 ATK while you have "Lo, the Prayers of the Voiceless Voice" on your field or in your GY. You can only use each of the following effects of "Skull Guardian, Protector of the Voiceless Voice" once per turn. If this card is Ritual Summoned: ... | --粛声なる守護者ローガーディアン
--Skull Guardian, Protector of the Voiceless Voice
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Gains ATK while "Lo, the Prayers of the Voiceless Voice" is on your field or in your GY
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Purrely" Xyz Monster you control; Special Summon 1 Level 1 "Purrely" monster from your Deck, but negate its effects, then Special Summon from your Extra Deck, 1 "Purrely" Xyz Monster with the same Rank but a different Attribute than the targeted monster, by using that Special Summoned monster as material. (Th... | --ピュアリィ・シェアリィ!?
--Purrely Sharely!?
--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:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode... |
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, "Emblem of the Awakening". Once per turn, you can remove from play 1 Normal Monster from your Graveyard. This card gains ATK equal to that Normal Monster's ATK, until the Standby Phase of your next turn. | --覚醒戦士 クーフーリン
--Cú Chulainn the Awakened
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--atkup
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Link Monster: Send 1 "Tri-Brigade" card from your Deck or Extra Deck to the GY, then target 1 Effect Monster on the field; apply the following effect based on the type of card sent to the GY. ● Monster: Change the targeted monster's ATK to 0 until the end of this turn. ● Spell: Negate that monster's ef... | --鉄獣の咆哮
--Tri-Brigade Roar
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Send 1 "Tri-Brigade" card to the GY and apply a matching effect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_D... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 monster with 2500 or more ATK + 1 face-down Defense Position monster with 2500 or less DEF You can only Special Summon "Ace★Spades Speculation(s)" once per turn. You can Tribute 1 Attack Position monster and 1 face-down Defense Position monster; Special Summon this card from your GY. This card gains the following eff... | --A★スペキュレーション
--Ace★Spades Speculation
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Can only Special Summon "A★Speculation(s)" once per turn
c:SetSPSummonOnce(id)
--Fusion Summon procedure
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsAttackAbove,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 Level 3 Fiend monster from your hand or Deck, but negate its effects, also it cannot be used as Synchro Material. | --魔界発現世行きデスガイド
--Tour Guide From the Underworld
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_SPECIAL_SUMMON)
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e2:SetCode(EVENT_SUMMON_SUCCESS)
e2:SetTarg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Blessing of the Voiceless Voice". If this card is Ritual Summoned while you have "Lo, the Prayers of the Voiceless Voice" on your field or in your GY: You can draw 2 cards, then discard 1 card. When an attack is declared involving a LIGHT Ritual Monster (Warrior or Dragon): You can... | --粛声なる竜神サフィラ
--Saffira, Divine Dragon of the Voiceless Voice
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Draw 2 cards and discard 1
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW+CATEGORY_HANDES)
e1:SetType(EFFECT_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Witchcrafter" monster you control; it can make a second attack during each Battle Phase this turn, also, if it attacks this turn, your opponent cannot activate Spell/Trap Cards until the end of the Damage Step. During your End Phase, if you control a "Witchcrafter" monster, while this card is in your GY: You ... | --ウィッチクラフト・コラボレーション
--Witchcrafter Collaboration
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have a monster with 0 ATK/DEF in your GY, you can Special Summon this card (from your hand). You can only Special Summon "Newbee!" once per turn this way. If this card is Special Summoned from the hand: You can apply these effects in sequence. ● Add 1 LIGHT Insect monster from your GY to your hand, except "Newbe... | --ニュービー!
--Newbee!
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card (from your hand)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetRange... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your hand: You can banish 1 "HERO" monster from your GY; Special Summon this card. If this card is Normal or Special Summoned: You can add 1 "Masked HERO" monster from your Deck or GY to your hand, except "Masked HERO Dusk Crow". You can only use each effect of "Masked HERO Dusk Crow" once per turn. | --M・HERO ダスク・クロウ
--Masked HERO Dusk Crow
--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(LO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card inflicts battle damage to your opponent: Declare 1 card name; look at your opponent's hand, and if you do, discard all cards with that name in their hand. | --世紀の大泥棒
--Great Phantom Thief
local s,id=GetID()
function s.initial_effect(c)
--handes
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_DAMAGE)
e1:SetCondition(s.drcon)
e1:SetTarget... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this Set card in its owner's control has left the field because of an opponent's effect, and is now in the GY or banished: You can Special Summon 1 monster from your Deck or Extra Deck. | --やぶ蛇
--Waking the Dragon
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetProperty(EFFECT_FLAG_DELAY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Normal Monsters Must be Fusion Summoned and cannot be Special Summoned by other ways. You can only control 1 "First of the Dragons". This card cannot be destroyed by battle, except by battle with a Normal Monster, and is unaffected by other monsters' effects. | --始祖竜ワイアーム
--First of the Dragons
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsType,TYPE_NORMAL),2)
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SING... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can Special Summon 1 "D/D/D" monster from your hand in Defense Position, but its effects are negated. Once per turn: You can Fusion Summon 1 Fiend-Type Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Materials, including a monster Special Summoned by this card wi... | --魔神王の禁断契約書
--Forbidden Dark Contract with the Swamp King
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)
--special summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned by its own effect. You can only use each of the following effects of "Flowerdino" once per turn. If you activate a Trap Card or effect, or your opponent activates a Spell Card or effect: You can Special Summon this card from your hand. If this card is sent to the ... | --フラワーダイノ
--Flowerdino
--Scripted by Yuno
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special Summon Condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetV... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned to a zone that is not the center Main Monster Zone, destroy this card. Once per turn: You can move this card to an unused adjacent Main Monster Zone. Each time exactly 1 monster is Normal or Special Summoned, to your opponent's field: Move this card to the adjacent Main Monste... | --ヤジロベーダー
--Yajiro Invader
--Some parts remade by Edo9300
local s,id=GetID()
function s.initial_effect(c)
--Destroy itself
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCondition(s.descon)
e1:SetOperation(s.desop)
c:RegisterEffect(e1)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Beast-Warrior-Type "Bujin" monster you control is destroyed by battle and sent to the Graveyard: You can send this card from your hand to the Graveyard; Special Summon 1 "Bujin" monster from your Deck. You can only use the effect of "Bujingi Pavo" once per turn. | --武神器-イオツミ
--Bujingi Pavo
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,1))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetRange(LOCATION_HAND)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | There can only be 1 "Earthbound Immortal" monster on the field. If there is no face-up Field Spell on the field, destroy this card. Your opponent's monsters cannot target this card for attacks. This card can attack directly. If this face-up card leaves the field, except by its own effect: Destroy as many face-up monste... | --地縛神 Aslla piscu
--Earthbound Immortal Aslla piscu
local s,id=GetID()
function s.initial_effect(c)
--There can only be 1 "Earthbound Immortal" on the field
c:SetUniqueOnField(1,1,aux.FilterBoolFunction(Card.IsSetCard,SET_EARTHBOUND_IMMORTAL),LOCATION_MZONE)
--Destroy it if no face-up Field Spell is on the field
lo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "Time Thief" monster from your hand. During your Main Phase: You can banish this card from your GY, then target 1 "Time Thief" Xyz Monster you control; attach 3 "Time Thief" cards of different types (1 Monster, 1 Spell, and 1 Trap) from your GY to that monster as material. You can only use 1 "Time Thie... | --クロノダイバー・スタートアップ
--Time Thief Startup
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id)
e1:SetTarget(s.target)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Must be Special Summoned with "Mask Change". Cannot be destroyed by card effects. | --M・HERO ヴェイパー
--Masked HERO Vapor
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special summon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetValue(au... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a WATER monster: Activate 1 of these effects, or if you control a WATER Ritual Monster, you can activate both of these effects, in sequence; ● Look at all Set cards in your opponent's Spell & Trap Zone. ● Look at the top 2 cards of either player's Deck, then place them on the top of the Deck in any order... | --儀水鏡との交信
--Contact with the Aquamirror
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.cfi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card's name becomes "Amazoness Tiger" while on the field or in the GY. If an "Amazoness" monster is Normal or Special Summoned to your field while this card is in your hand or GY: You can Special Summon this card. You can only use this effect of "Amazoness Baby Tiger" once per turn. Gains 100 ATK for each "Amazone... | --アマゾネスペット仔虎
--Amazoness Baby Tiger
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_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetCode(EVENT_SUMMO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase, you can Normal Summon 1 "Crystal Beast" monster, in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) You can only use each of the following effects of "Rainbow Bridge of the Heart" once per turn. During your Main Phase: You can destroy 1 "Crystal Beast" card you... | --心の架け橋
--Rainbow Bridge of the Heart
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e0)
--Additional Normal Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Must be Special Summoned with "The Claw of Hermos", using a Spellcaster monster. If this card is Special Summoned: Target 1 other face-up monster on the field; equip this card to it. At the start of the Damage Step, if it battles an opponent's monster: You can roll a six-sided die, and banish that opponent's monster un... | --タイムマジック・ハンマー
--Time Magic Hammer
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--special summon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
c:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can Special Summon monsters, except WATER monsters. | --豪雨の結界像
--Barrier Statue of the Torrent
local s,id=GetID()
function s.initial_effect(c)
--disable spsummon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetTargetRange(1,1)
e1:SetTa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 Level 3 Insect-Type monsters in your Graveyard; Special Summon them, but their effects are negated. You can banish this card and 1 Xyz Monster from your Graveyard; the Levels of all Level 3 Insect-Type monsters you currently control become equal to the banished monster's Rank until the end of this turn, also y... | --光虫異変
--Bug Emergency
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only control 1 "Amazoness Tiger". Gains 400 ATK for each "Amazoness" monster you control. Your opponent's monsters cannot attack "Amazoness" monsters, except this one. | --アマゾネスペット虎
--Amazoness Tiger
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_MZONE)
e1:SetValue(s.val)
c:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card destroys an opponent's monster by battle: You can Special Summon 1 "Jurrac" monster with 1700 or less ATK from your Deck, but it cannot declare an attack this turn. | --ジュラック・グアイバ
--Jurrac Guaiba
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetCondition(aux.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned with "Royal Straight". If you have all of "Queen's Knight", "King's Knight", and "Jack's Knight" in your GY: You can send 5 monsters, with different Levels of 1, 2, 3, 4, and 5, from your hand and/or Deck to the GY, and if you do, destroy all cards your opponent c... | --ロイヤル・ストレート・スラッシャー
--Royal Straight Slasher
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Must be Special Summoned by "Royal Straight"
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your opponent's turn, when this card in your possession is sent to your GY by an opponent's card effect: It becomes the End Phase of this turn. | --ネコマネキング
--Neko Mane King
local s,id=GetID()
function s.initial_effect(c)
--end turn
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetCondition(s.condition)
e1:SetOperation(s.operation)
c:RegisterEffect(e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent from the hand or Deck to the GY: You can Special Summon it in face-down Defense Position. After this card was flipped face-up, if a monster(s) is sent from the hand and/or Deck to your GY, while this card is in the Monster Zone: You can target 1 of them; Special Summon it in face-down Defense Posit... | --回猫
--Flipping Feline
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card in face-down Defense Position
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Edge Imp Sabres" + 1 or more "Fluffal" monsters Must be Fusion Summoned with the above Fusion Materials and cannot be Special Summoned by other ways. This card can attack a number of times each Battle Phase, up to the number of Fusion Materials used for its Fusion Summon. | --デストーイ・シザー・ウルフ
--Frightfur Wolf
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixRep(c,false,false,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_FLUFFAL),1,99,30068120)
--spsummon condition
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
e2:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 2 of your removed from play monsters (1 Psychic-Type Tuner and 1 Psychic-Type non-Tuner), return them to the Graveyard, and Special Summon 1 Psychic-Type Synchro Monster from your Extra Deck in face-up Defense Position, whose Level equals the total Levels of the returned monsters. | --サイコ・フィール・ゾーン
--Psychic Feel Zone
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_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "Performapal Hip Hippo" from your hand, Deck, or Graveyard, then you can Special Summon as many "Hippo Tokens" (Beast-Type/EARTH/Level 1/ATK 0/DEF 0) as possible, but they cannot be Tributed, and monsters your opponent controls cannot target monsters for attacks for the rest of this turn, except "Hippo... | --超カバーカーニバル
--Super Hippo Carnival
local s,id=GetID()
function s.initial_effect(c)
--Special summon 1 "Performapal Hip Hippo" from hand, deck, or GY
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.t... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy a number of face-up cards on the field equal to the number of face-up Attack Position "X-Saber" monsters you control. | --セイバー・スラッシュ
--Saber Slash
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
s.listed_series={SET_X_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, when an activated card or effect resolves that targets a DARK Spellcaster monster you control, you can negate that effect, then destroy this card. ---------------------------------------- [ Monster Effect ] (This card is always treated as a "Synchro Dragon" card.) If this Pendulum Sum... | --白翼の魔術師
--White Wing Magician
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
--Negate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_CHAIN_SOLVING)
e1:SetRange(LOCATION_PZONE)
e1:SetCondition(s.condition)
e1:SetOperation(s.operati... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card and 1 Tuner; add 1 "Synchron" monster from your Deck to your hand. If this card is sent to the GY as Synchro Material: You can target 1 Tuner in your GY; Special Summon it in Defense Position, but it cannot activate its effects this turn. You can only use each effect of "Junk Converter" once p... | --ジャンク・コンバーター
--Junk Converter
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Synchron" monster from deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a Spell/Trap you control leaves the field because of an opponent's effect, and is now in the GY or banished (except during the Damage Step): You can Special Summon this card from your GY (if it was there when that Spell/Trap left) or hand (even if not), then you can Set 1 of your Spells/Traps, that is banished or in... | --魔晶龍ジルドラス
--Mana Dragon Zirnitron
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_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is also always treated as "Legendary Dragon Critias".) Send 1 Trap from your hand or field to the GY, that is listed on a Fusion Monster that can only be Special Summoned with "The Fang of Critias" (if that card is Set, reveal it), then Special Summon that Fusion Monster from your Extra Deck. You can only ac... | --クリティウスの牙
--The Fang of Critias
local s,id=GetID()
function s.initial_effect(c)
--This card is also always treated as "Legendary Dragon Critias"
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e0:SetCode(EFFECT_ADD_CODE)
e0:SetValue... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a "Six Samurai" monster is attacked, the attacking monster loses 500 ATK during damage calculation only. | --紫炎の霞城
--Shien's Castle of Mist
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--atk down
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 face-up Xyz Monsters on the field; send both monsters to the GY, then Special Summon 1 Xyz Monster from your Extra Deck, except a "Number" monster, whose Rank is equal to, or 1 less than, the combined original Ranks of those 2 Xyz Monsters, and if you do, attach this card to it as material, also, for the rest ... | --エクシーズ・ユニバース
--Xyz Universe
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_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CAR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target up to 5 cards in your opponent's GY and the same number of your opponent's banished cards; banish those targets from their GY, and if you do, return those banished targets to the GY. You can only activate 1 "Terrors of the Underroot" per turn. | --常世離レ
--Terrors of the Underroot
--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_REMOVE+CATEGORY_TOGRAVE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have more cards in your Deck than your opponent does: Send cards from the top of your Deck to the Graveyard so you have the same number of cards in the Deck as your opponent. | --隣の芝刈り
--That Grass Looks Greener
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DECKDES)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Register... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card attacks a Defense Position monster, inflict piercing battle damage to your opponent. | --ランサー・ドラゴニュート
--Lancer Dragonute
local s,id=GetID()
function s.initial_effect(c)
--pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_PIERCE)
c:RegisterEffect(e1)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 8 monsters Once per turn, you can also Xyz Summon "Gigantic "Champion" Sargas" by using 1 "Springans" Xyz Monster you control. (Transfer its materials to this card.) While this card has material: You can add 1 "Springans" or "Therion" card from your Deck to your hand. If material(s) are removed from a monster(... | --ギガンティック"チャンピオン"サルガス
--Gigantic "Champion" Sargas
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Xyz.AddProcedure(c,nil,8,2,s.ovfilter,aux.Stringid(id,0),Xyz.InfiniteMats,s.xyzop)
--Search 1 "Springans" or "Therion" card
local e1=Effect.CreateEffect(c)
e1:SetDescrip... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send all other cards in your Spell & Trap Zone to the GY; place as many "Crystal Beast" monsters as possible from your GY face-up in your Spell & Trap Zone as Continuous Spells, also, during the End Phase of this turn, destroy all "Crystal Beast" cards you control. * The above text is unofficial and describes the card'... | --カウンター・ジェム
--Counter Gem
local s,id=GetID()
function s.initial_effect(c)
--Place as many "Crystal Beast" monsters as possible from your GY face-up in your S/Trap Zone
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.p... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Spell/Trap Card, or monster effect, is activated: Destroy 1 "Crystal Beast" card you control, and if you do, negate that activation, and if you do that, destroy that card. If a "Crystal Beast" card(s) is placed in your Spell & Trap Zone while this card is in your GY, even during the Damage Step: You can banish t... | --宝玉の奇跡
--Crystal Miracle
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Destroy 1 "Crystal Beast" card and negate activation
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_NEGATE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: When this card is flipped face-up by an opponent's monster's attack, draw 1 card. When this card is sent from the field to the Graveyard, send 1 card from your hand to the Graveyard. | --ワーム・ホープ
--Worm Hope
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FLIP+EFFECT_TYPE_SINGLE)
e1:SetCategory(CATEGORY_DRAW)
e1:SetTarget(s.drtg)
e1:SetOperation(s.drop)
c:RegisterEffect(e1)
--discard
local e2=Effect.CreateEffect(c)
e2:SetDescripti... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 "Mikanko" card you control; return it to the hand. If either player equips an Equip Card(s) to this card: You can Special Summon 1 non-Illusion "Mikanko" monster from your Deck, also you cannot Special Summon from the Extra Deck for the rest of this turn, except "Mikanko" monsters. If this card is sent... | --御巫奉サナキ
--Sanaki the Mikanko Devotee
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Return 1 "Mikanko" card you control to the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a "Kaiju" monster(s) is Special Summoned from the hand and/or GY, place 1 Kaiju Counter on this card (max. 5). Once per turn: You can target 1 "Kaiju" monster on the field; destroy that monster, then Special Summon 1 "Kaiju" monster with a different original name from your Deck to its controller's field. You ... | --壊獣の出現記録
--The Kaiju Files
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(COUNTER_KAIJU)
c:SetCounterLimit(COUNTER_KAIJU,5)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--counter
local e2=Effect.CreateEffec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent cannot target "Palace of the Elemental Lords" you control with card effects, also it cannot be destroyed by card effects. Once per turn: You can Tribute 1 monster; Special Summon 1 "Elementsaber" monster from your Deck with a different original Attribute than that monster's. You can send this face-up card... | --霊神統一
--Elemental Training
--Scripted by Eerie Code; fixed by senpaizuri
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)
--indes/untarget
local e2=E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) you control is destroyed by battle or card effect: Add up to 2 "Lunalight" monsters from your Deck to your hand. You can only activate 1 "Lunalight Reincarnation Dance" per turn. | --月光輪廻舞踊
--Lunalight Reincarnation Dance
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_DESTROYED)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY)
e1:SetCountLim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Bujin" Xyz Monster you control; banish it, and if you do, return all monsters on the field to the hand. Until your 2nd End Phase after activation, neither player can Summon monsters nor take damage (but can Normal Set). During your 2nd End Phase after activation: Target 1 "Bujin" monster in your Graveyard; Sp... | --武神隠
--Bujincident
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is unaffected by Spell effects. During the End Phase, if this card destroyed a monster by battle this turn: You can send this face-up card to the Graveyard; Special Summon 1 "Horus the Black Flame Dragon LV8" from your hand or Deck. | --ホルスの黒炎竜 LV6
--Horus the Black Flame Dragon LV6
local s,id=GetID()
function s.initial_effect(c)
--battle destroy
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCondition(aux.bdcon)
e1:SetO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each face-up Xyz Monster you control gains 300 ATK for each Xyz Material attached to it, until the End Phase. | --強化空間
--Reinforced Space
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)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetCondition(aux.S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Xyz Monster in either player's Graveyard; all monsters you currently control gain ATK equal to its Rank x 200, then you can shuffle it into the Extra Deck. This ATK increase lasts until the End Phase. | --エクシーズ・ソウル
--Xyz Soul
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_TOEXTRA)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can pay 1000 LP, then target 1 Set Spell/Trap your opponent controls; destroy that target. Once per turn, during the End Phase: Destroy this card. You must control no other Psychic monsters to activate and to resolve this effect. * The above text is unofficial and describes the card's functionality in the OCG. | --ディストラクター
--Destructotron
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCost(Cost.PayLP(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can target 1 Level 4 or lower "T.G." monster in your GY, except "T.G. Screw Serpent"; Special Summon that monster, but its effects are negated. You can banish this card from your GY, then target 1 "T.G." monster you control; increase or reduce its Level by 1 until the end... | --TGスクリュー・サーペント
--T.G. Screw Serpent
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_CARD_TARG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned from the Graveyard: You can target 1 Fairy-Type monster in your Graveyard, except "Darklord Superbia"; Special Summon that target. | --堕天使スペルビア
--Darklord Superbia
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Fairy from your GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_CARD_TA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "T.G." monster you control; its ATK/DEF each become half its current ATK/DEF, and if they do, destroy 1 other Spell/Trap on the field. | --TGX1-HL
--TGX1-HL
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Invoked" monster + 1 monster that was Special Summoned from the Extra Deck Must first be Fusion Summoned with the above Fusion Materials. While face-up on the field, this card is also DARK, EARTH, WATER, FIRE, and WIND-Attribute. Once per turn (Quick Effect): You can target 1 "Invoked" monster you control or in your... | --召喚獣エリュシオン
--Invoked Elysium
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion materials
Fusion.AddProcMix(c,false,false,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_INVOKED),s.ffilter2)
--Must first be Fusion Summoned
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the Graveyard for a Synchro Summon: Target 1 face-up monster your opponent controls; that target loses 500 ATK. | --クイック・スパナイト
--Quick-Span Knight
local s,id=GetID()
function s.initial_effect(c)
--atk change
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_BE_M... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If only your opponent controls a monster: You can Special Summon this card from your hand. During your Main Phase: You can excavate the top 5 cards of your Deck, and if you do, you can Special Summon 1 excavated Level 4 or lower non-Tuner Rock monster, also place the rest on the bottom of your Deck in any order. You ca... | --魔救の分析者
--Adamancipator Analyzer
--based off of Eerie Code's Adamancipator Seeker, adapted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card, then activate 1 of these effects; ● Add 1 "Lunalight" monster from your Graveyard to your hand, except "Lunalight Black Sheep". ● Add 1 "Polymerization" from your Deck to your hand. If this card is sent to the Graveyard as a Fusion Material for a Fusion Summon: You can add to your hand, 1 fac... | --月光黒羊
--Lunalight Black Sheep
local s,id=GetID()
function s.initial_effect(c)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCost(Cost.SelfDiscard)
e1:SetTarget(s.efftg)
e1:SetOperation(s.effo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 monsters with different names Must first be Fusion Summoned using only Fusion Materials from your hand and field, with at least 1 monster from each. If this card is Fusion Summoned by a Spell Card or effect: You can draw cards equal to the number of cards used as material from the hand, and if you do, destroy cards y... | --ガーディアン・キマイラ
--Guardian Chimera
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
local eff=Fusion.AddProcMix(c,true,false,s.ffilter1,s.ffilter2,s.ffilter3)
if not c:IsStatus(STATUS_COPYING_EFFECT) then
eff[1]:SetValue(s.matfilter)
end
c:AddMustFirstBeFusionSummoned(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is discarded from your hand to the Graveyard by an effect of a card controlled by your opponent, draw 2 cards from your Deck. | --エレクトリック・スネーク
--Electric Snake
local s,id=GetID()
function s.initial_effect(c)
--draw
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_GRAVE)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Tribute Summoned: You can target 1 monster in your GY and 1 face-up monster your opponent controls; equip the monster from your GY to that opponent's monster. While equipped by this effect, the equipped monster loses ATK equal to the ATK of that monster equipped to it. Your opponent cannot activate the ... | --修士号ディプロマン
--Master's Diploman
--Scripted by Eerie Code
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:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetPropert... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control "King's Sarcophagus", you can Special Summon this card (from your GY). You can only Special Summon "Duamutef, Blessing of Horus" once per turn this way. Gains 1200 ATK/DEF for each "Horus" monster you control. If another card(s) you control leaves the field by an opponent's card effect, while this card i... | --ホルスの祝福-ドゥアムテフ
--Duamutef, Blessing of Horus
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the GY if you control "King's Sarcophagus"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PRO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While face-up on the field, this card is also WIND-Attribute. If this card is in your hand: You can banish 1 DARK and 1 WIND monster from your GY; Special Summon this card. If this card is in your GY: You can banish 1 DARK and 1 WIND monster from your hand; Special Summon this card. Your opponent cannot Set cards. | --ダーク・シムルグ
--Dark Simorgh
local s,id=GetID()
function s.initial_effect(c)
--Add WIND attribute
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_ADD_ATTRIBUTE)
e1:SetRange(LOCATION_MZONE)
e1:SetValue(ATTRIBUTE_WIND)
c:RegisterEffect(e1)
--... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only while you control a face-up Level 7 or higher monster. Destroy all face-up Level 5 or lower monsters your opponent controls. Monsters you control cannot attack this turn. | --無力の証明
--Proof of Powerlessness
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER)
e1:SetCondition(s.condition)
e1:SetCost(s.cost)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can Special Summon 1 "Tindangle Base Gardna" from your Deck. If this card was flipped face-up, your "Tindangle" monsters cannot be destroyed by battle. If this card is sent to the GY as Link Material for the Link Summon of a "Tindangle" monster: You can add 1 "Gergonne's End" from your Deck to your hand, and ... | --ティンダングル・トリニティ
--Tindangle Trinity
--Script by nekrozar
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_FLIP+EFFECT_TYPE_TRIGGER_O)
e1:SetProper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute 1 monster; inflict 500 damage to your opponent. | --キャノン・ソルジャー
--Cannon Soldier
local s,id=GetID()
function s.initial_effect(c)
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(s.cost)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All monsters your opponent controls lose 300 ATK/DEF for each "Naturia" monster you control. Once per turn: You can target 1 monster your opponent controls with 0 DEF; take control of that target until the End Phase. | --ナチュル・フライトフライ
--Naturia Fruitfly
local s,id=GetID()
function s.initial_effect(c)
--atk,def
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(0,LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(s.val)
c:RegisterEffect(e1)
local e2=e1:Clone()
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters Once per turn: You can detach 1 material from this card; add 1 Reptile monster from your Deck to your hand. | --キングレムリン
--King of the Feral Imps
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can be used to Ritual Summon any "Cyber Angel" Ritual Monster. You must also Tribute monsters from your hand or field and/or shuffle Fairy or Warrior-Type monsters from your Graveyard into the Deck, whose total Levels exactly equal the Level of the Ritual Monster you Ritual Summon. | --機械天使の絶対儀式
--Machine Angel Absolute Ritual
local s,id=GetID()
function s.initial_effect(c)
--Activate
Ritual.AddProcEqual{handler=c,filter=s.ritualfil,extrafil=s.extrafil,extraop=s.extraop,extratg=s.extratg}
end
s.listed_series={SET_CYBER_ANGEL}
function s.ritualfil(c)
return c:IsSetCard(SET_CYBER_ANGEL) and c:IsRi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 4 monsters Once per turn: You can detach 1 Xyz Material from this card; send 1 card from your hand to the Graveyard, and if you do, draw 1 card. | --No.10 白輝士イルミネーター
--Number 10: Illumiknight
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,4,3)
c:EnableReviveLimit()
--Send 1 card from hand to the GY and draw 1 card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEG... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.