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: | You can send 1 Level 5 or higher Normal Monster from your hand or Deck to the GY; Special Summon this card from your hand, then increase its Level by 1. During your Main Phase, except the turn this card was sent to the GY: You can banish this card from your GY; add 1 "Red-Eyes Fusion" from your Deck or GY to your hand.... | --真紅眼の黒星竜
--Red-Eyes Black Meteor Dragon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_LVCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_H... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your opponent's turn: You can banish this card from your Graveyard; negate the next attack this turn from a monster your opponent controls (this is a Quick Effect). | --SR三つ目のダイス
--Speedroid Tri-Eyed Dice
local s,id=GetID()
function s.initial_effect(c)
--disable attack
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_ATTACK)
e1:SetRange(LOCATION_GRAVE)
e1:SetCondition(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Spell/Trap Card, or monster effect, is activated that would inflict damage to you: Negate the activation, and if you do, Special Summon 1 Link Monster from your GY. | --リンク・リスタート
--Link Restart
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--negate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DAMAGE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Synchro Summoned. Must be Special Summoned (from your Extra Deck) by sending 2 monsters you control with a Level difference of 1 to the GY (1 Tuner and 1 non-Tuner). If this card is Special Summoned: You can activate 1 "Ursarctic Big Dipper" directly from your Deck. You can Tribute 1 Level 7 or higher monster... | --ベアルクティ-ポラリィ
--Ursarctic Polari
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
c:AddMustBeSpecialSummoned()
--Must be Special Summoned (from your Extra Deck) by sending 2 monsters you control with a Level difference of 1 to the GY (1 Tuner and 1 non-Tuner)
local e0=Effect.CreateEffect(c)
e0... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control "Toon World": Reveal 3 Toon monsters with different names from your Deck, your opponent randomly picks 1 for you to Special Summon, ignoring its Summoning conditions, also shuffle the rest into your Deck. You can only activate 1 "Toon Page-Flip" per turn. | --トゥーン・フリップ
--Toon Page-Flip
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Reveal 3 toon monsters from deck, special summon 1 of them
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must first be Special Summoned with "Max Metalmorph" that was activated by Tributing a Level 5 or higher Warrior monster. You can reveal this card in your hand; add 1 card that mentions "Max Metalmorph" from your Deck to your hand, except "Metalflame Swordsman", and if you do, shuffle thi... | --鋼炎の剣士
--Metalflame Swordsman
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Add 1 card that mentions "Max Metalmorph" from your Deck to your hand, and if you do, shuffle this card into the Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster activates its effect while you control a "Krawler" monster: The activated effect becomes "return 1 face-up monster your opponent controls to the hand". You can banish this card from your GY, then target 1 Link Monster on the field; Special Summon 1 "Krawler" monster from your hand, Deck, or G... | --星遺物の交心
--World Legacy's Mind Meld
local s,id=GetID()
function s.initial_effect(c)
--Make an opponent's monster effect become "return 1 face-up monster your opponent controls to the hand"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only during your opponent's turn. This turn, the attacks from your opponent's monsters become direct attacks. | --絶体絶命
--Absolute End
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_BATTLE_START)
e1:SetCondition(s.condition)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.cond... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 Tuner from your hand or Graveyard, but it has its effects negated. | --横綱犬
--Yokotuner
local s,id=GetID()
function s.initial_effect(c)
--summon success
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.sumtg)
e1:SetOpera... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay 1000 LP, then target 1 face-up monster you control; it gains 1000 ATK until the end of your opponent's turn, and if it does, apply this effect until the end of your opponent's turn. ● Each time it destroys an opponent's monster by battle: You can reveal the bottom card of your Deck and place it on the top or bottom... | --運命のウラドラ
--Uradora of Fate
--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_ATKCHANGE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 "Superheavy Samurai" monster you control; equip this monster from your hand or your side of the field to that target. Each turn, the first time the monster equipped with this card by this effect would be destroyed by a card effect, it is not destroyed. When a Defense Position monster is destroyed by ba... | --超重武者装留マカルガエシ
--Superheavy Samurai Soulbeads
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_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_HAND|LOCATION_MZ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a Spell Card is activated, switch the original ATK and DEF of this card. | --ナチュル・ビートル
--Naturia Beetle
local s,id=GetID()
function s.initial_effect(c)
--ad change
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EVENT_CHAIN_SOLVED)
e1:SetOperation(s.adop)
c:RegisterEffect(e1)
local e2=Effect.CreateEffect(c)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If it is your opponent's Battle Phase, and all monsters you controlled at the start of this Battle Phase (min. 2) have been destroyed by battle and sent to the Graveyard: You can Special Summon this card from your hand. If Summoned this way: Choose an Attribute and destroy all face-up monsters with that Attribute. Your... | --テュアラティン
--Tualatin
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_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_CUSTOM+id)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the End Phase of the turn this card was activated, draw a number of cards equal to the combined number of Dragon monsters you discarded or Tributed from your hand or field this turn. | --超再生能力
--Super Rejuvenation
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:SetHintTiming(TIMING_END_PHASE)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
aux.GlobalCheck... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can send 1 "HERO" monster from your Deck to the GY. You can only use this effect of "Vision HERO Vyon" once per turn. Once per turn: You can banish 1 "HERO" monster from your GY; add 1 "Polymerization" from your Deck to your hand. | --V・HEROヴァイオン
--Vision HERO Vyon
local s,id=GetID()
function s.initial_effect(c)
--Tograve
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_DELAY)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can send 1 "Regenesis" monster from your Deck to the GY, then target 1 face-up monster your opponent controls; change it to face-down Defense Position. During your opponent's turn: You can send this card to the GY; Special Summon as many "Regenesis" monsters as possible with different names from your hand, GY, and/... | --天地再世
--Regenesis Birth
--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)
--Change 1 face-up monster your opponent controls to face-down Defense Position
local e1=Effect... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | At the start of the Damage Step, if this card attacked a face-down Defense Position monster: Destroy that monster. You must control a face-up "Six Samurai" monster with a different name to activate and to resolve this effect. If this card would be destroyed, you can destroy another face-up "Six Samurai" monster you con... | --六武衆-イロウ
--The Six Samurai - Irou
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:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can place 1 "The Weather" Spell/Trap from your hand, Deck, or GY face-up in your Spell & Trap Zone. Your opponent cannot target "The Weather" Spells/Traps you control with card effects, also they cannot be destroyed by your opponent's card effects. Once per turn, during the Standb... | --極天気ランブラ
--The Weather Painter Aurora
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Place 1 "The Weather" Spell/Trap
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarge... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Tributed by a card effect: You can add 1 Spellcaster-Type "Nekroz" Ritual Monster from your Deck to your hand. If this card is banished: You can send 1 "Nekroz" monster from your Deck to the Graveyard, except "Great Sorcerer of the Nekroz". You can only use 1 "Great Sorcerer of the Nekroz" effect per tu... | --影霊衣の大魔道士
--Great Sorcerer of the Nekroz
local s,id=GetID()
function s.initial_effect(c)
--tohand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_RELEASE)
e1:SetProperty(EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent cannot target "Magician", "Performapal", or "Odd-Eyes" cards in your Pendulum Zones with card effects. You can target 1 other face-up card you control; destroy it, and if you do, add 1 "Odd-Eyes" card from your Deck to your hand. You can only use this effect of "Sky Iris" once per turn. | --天空の虹彩
--Sky Iris
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--cannot be target
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_CANNOT_BE_EFFECT_TA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Six Samurai" monster you control; Special Summon 1 "Six Samurai" monster from your Deck with the same ATK but a different name, and if you do, destroy it during the End Phase of this turn. | --六武衆の荒行
--Asceticism of the Six Samurai
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) you control was destroyed by your Spell effect or your opponent's card effect and sent to the GY this turn: You can conduct your next Battle Phase twice. If a monster you control is shuffled into the Deck or returned to the Extra Deck face-down, while this card is in your GY: You can add this card to yo... | --幾星霜
--Ages of Stars and Frost
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCondition(function(e,tp) ret... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Summoned Skull", or 1 Thunder monster, in your Monster Zone; destroy all monsters your opponent controls with DEF less than or equal to the ATK of that monster. You cannot conduct your Battle Phase the turn you activate this card. | --魔霧雨
--Makiu, the Magical Mist
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOpera... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, when a monster with the same Attribute as this card is Normal Summoned to your side of the field, you can select 1 card your opponent controls, and destroy it. | --A・ジェネクス・クラッシャー
--Genex Ally Crusher
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_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_CA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Material. | --融合
--Polymerization
Duel.LoadCardScriptAlias(CARD_POLYMERIZATION) |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While the equipped monster is attacking, it cannot be destroyed by battle. At the end of the Damage Step, if the equipped monster attacked: The attack target loses ATK equal to the ATK of the equipped monster, until the End Phase. | --ロケット・パイルダー
--Rocket Pilder
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--indes
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e2:SetCondition(s.indcon)
e2:SetValue(1)
c:RegisterEffect(e2)
--atkdown
local e4=Effect.CreateEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per Chain, during the Main Phase, if this card is in your hand or GY (Quick Effect): You can detach 1 Xyz Material from a monster on either field, and if you do, Special Summon this card, also you cannot Special Summon "Goblin Biker Boom Mach" until the end of the next turn. | --百鬼羅刹 神速ブーン
--Goblin Biker Boom Mach
--Ashaki
local s,id=GetID()
function s.initial_effect(c)
--Detach 1 material from a monster on the field and Special Summon this card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_QUICK_O)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute 1 face-up DARK monster you control to inflict 800 damage to your opponent. | --プリーステス・オーム
--Shadowpriestess of Ohm
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... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Defense Position monster is destroyed by battle and sent to the Graveyard, inflict 500 damage to your opponent. | --チェイス・スカッド
--Pursuit Chaser
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_TRIGGER_F+EFFECT_TYPE_FIELD)
e1:SetCode(EVENT_BATTLE_DESTROY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate 1 of these effects; ● Place 1 "Solfachord" Pendulum Monster from your Deck in your Pendulum Zone. ● Add 1 "Solfachord" Pendulum Monster from your hand to the Extra Deck face-up, then, place 2 "Solfachord" Pendulum Monsters, 1 odd and 1 even Pendulum Scale, from your Deck in your Pendulum Zones. ● Add 2 cards, ... | --ドレミコード・エレガンス
--Solfachord Elegance
--Scripted by Hel
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_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_LIMIT_ZONE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCou... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "D/D/D" monsters Once per turn, when an attack is declared involving this card: You can target 1 other "D/D" or "Dark Contract" card you control; return it to the hand, and if you do, equip 1 face-up monster your opponent controls to this card, except the battling monster. This card gains ATK equal to the combined or... | --DDD怒濤壊薙王カエサル・ラグナロク
--D/D/D Wave Oblivion King Caesar Ragnarok
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_DDD),2)
--tohand
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGOR... |
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 "Sniffer Dragon" from your Deck to your hand. You can only use this effect of "Sniffer Dragon" once per turn. | --スニッフィング・ドラゴン
--Sniffer Dragon
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DEL... |
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 Fish Normal Monster from your hand, Deck, or GY. If this card is destroyed by battle, or if this card in its owner's possession is destroyed by an opponent's card effect: You can Special Summon any number of "Vilepawn Salmon Tokens" (Fish/WATER/Level ... | --インフェルノクインサーモン
--Infernalqueen Salmon
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Fish Normal Monster
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:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Fortune Lady" monster: Special Summon 1 "Fortune Lady" monster from your Deck with a different name from the cards you control, also for the rest of this turn after this card resolves, you cannot Special Summon monsters from the Extra Deck, except Synchro Monsters. You can only activate 1 "Fortune Lad... | --フォーチュンレディ・コーリング
--Fortune Lady Calling
--Scripted by AlphaKretin
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:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Shuffle this card face-up into your opponent's Deck. If you draw this card after it was added to your Deck by its effect: Special Summon it in Defense Position, and if you do, take 1000 damage. All monsters controlled by the player that Summoned this card by its effect become Insect monsters. | --寄生虫パラサイド
--Parasite Paracide
local s,id=GetID()
function s.initial_effect(c)
Duel.EnableGlobalFlag(GLOBALFLAG_DECK_REVERSE_CHECK)
--to deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetTarget(s.target... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) in Defense Position to your zone a Link Monster points to. You can only Special Summon "World Legacy - "World Crown"" once per turn this way. When a monster on the field that was Special Summoned from the Extra Deck activates its effect (Quick Effect): You can Tribute t... | --星遺物-『星冠』
--World Legacy - "World Crown"
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--Special Summon procedure
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_SPSUM_PARAM)
e1:SetCode(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a "Yosenju" monster(s) is Normal or Special Summoned, place 1 Yosen Counter on this card. You can remove any number of Yosen Counters from this card; apply this effect, depending on the number of Yosen Counters removed. You can only use this effect of "Yosen Training Grounds" once per turn. ● 1 Counter: All "... | --修験の妖社
--Yosen Training Grounds
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x33)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--counter
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During damage calculation, if a monster battles: You take no battle damage from that battle. If this Set card in its owner's control is destroyed by your opponent's card effect and sent to the GY: You can target up to 2 Normal Traps in your GY, except "Boo-Boo Game"; Set them to your field. They can be activated this t... | --ブービーゲーム
--Boo-Boo Game
--Scripted by Kohana Sonogami
local s,id=GetID()
function s.initial_effect(c)
--Take no battle damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetCondition(function(_,tp) return Duel.Ge... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card's name is always treated as "Harpie Lady".) Negate the effects of Flip monsters this card destroys by battle. | --ハーピィ・レディ2
--Harpie Lady 2
local s,id=GetID()
function s.initial_effect(c)
--Disable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_BATTLED)
e1:SetRange(LOCATION_MZONE)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
s.listed_names={CARD_HARPIE_LADY}... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card destroys a monster by battle and sends it to the Graveyard: You can target 1 Level 3 or lower "Gusto" monster in your Graveyard; Special Summon that target in face-up Defense Position. | --ガスタの賢者 ウィンダール
--Windaar, Sage of Gusto
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by sending 1 card from your hand to the GY while you control a "Sunavalon" Link Monster. You cannot Special Summon monsters from the Extra Deck, except Plant monsters. Once per turn, during your Main Phase: You can Special Summon 1 Level 4 or lower Plant Normal Monster from your GY. Once per turn, du... | --聖蔓の社
--Sunvine Shrine
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:SetCost(s.cost)
c:RegisterEffect(e1)
--spsummon limit
local e2=Effect.CreateEffect(c)
e2:SetDescripti... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a Level 6 or lower Fusion Monster. It gains 1500 ATK/DEF. | --フュージョン・ウェポン
--Fusion Weapon
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,s.filter)
--atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(1500)
c:RegisterEffect(e2)
--def up
local e3=Effect.CreateEffect(c)
e3:SetType... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a "Six Samurai" monster(s) is Normal or Special Summoned, place 2 Bushido Counters on this card. You can remove Bushido Counters from your field to activate these effects. ● 2 Counters: Target 1 "Six Samurai" or "Shien" Effect Monster; that target gains 500 ATK until the end of this turn. ● 4 Counters: Add 1 ... | --六武の門
--Gateway of the Six
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(COUNTER_BUSHIDO)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--add counter
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card declares an attack, it gains 500 ATK. If this card on the field is destroyed and sent to the Graveyard: You can Special Summon 1 Level 1 monster with 0 ATK and DEF from your Deck. Its effects are negated, also it is destroyed during your next End Phase. | --腐乱犬
--Zombowwow
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetOperation(s.atkop)
c:RegisterEffect(e1)
--special summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute this card; Special Summon 1 "Superheavy Samurai" monster from your hand. During either player's turn, when a card or effect is activated that targets a "Superheavy Samurai" monster you control: You can banish this card from your Graveyard; negate the activation, and if you do, destroy that card. You can... | --超重武者カゲボウ-C
--Superheavy Samurai Flutist
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,id)
e1:SetCost(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Draw Phase, instead of conducting your normal draw: You can add 1 Equip Spell from your Deck or GY to your hand. If you control an Equip Spell: You can place 1 FIRE Warrior monster or 1 Gemini monster from your GY on the bottom of your Deck; draw 1 card. You can only use each effect of "Gearbreed" once per ... | --武装鍛錬
--Gearbreed
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Search
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategor... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 WIND monsters in your GY and 1 card on the field; shuffle both of those first 2 targets into your Deck, and if you do, return the other to the hand. | --ガルドスの羽根ペン
--Quill Pen of Gulldos
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperati... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Your opponent cannot activate a Spell/Trap Card, or monster effect, when your "Solfachord" Pendulum Monster(s) is Pendulum Summoned. ---------------------------------------- [ Monster Effect ] While you have an odd Pendulum Scale in your Pendulum Zone, if your "Solfachord" Pendulum Monster attacks, ... | --ラドレミコード・エンジェリア
--LaSolfachord Angelia
--scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Pendulum procedure
Pendulum.AddProcedure(c)
--Prevent the activation of Spell/Traps or monster effects when you Pendulum Summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CON... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can pay 500 LP; look at the top card of your Deck, then place it on the bottom of your Deck, OR reveal it and add it to your hand, but skip your next Draw Phase if added to the hand. You can only use this effect of "Dr. Frankenderp" once per turn. | --Dr.フランゲ
--Dr. Frankenderp
local s,id=GetID()
function s.initial_effect(c)
--Look at the top card from the Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCES... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, you can send any number of "Morphtronic" monsters from your hand to the Graveyard to have this card gain 800 ATK for each. | --ガジェット・トレーラー
--Gadget Hauler
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(s.tg)
e1:SetOperat... |
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 Spell/Trap "Fur Hire" from your Deck to your hand. During the Main Phase, if you control a monster "Fur Hire" (Quick Effect): You can banish this card from your GY, then target 1 card "Fur Hire" in your GY; either add it to your hand, or Special Summon it if it ... | --空牙団の積荷 レクス
--Rex, Freight Fur Hire
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Search 1 Spell/Trap "Fur Hire"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Metalfoes" monsters If a "Metalfoes" monster you control attacks a Defense Position monster, inflict double piercing battle damage to your opponent. If this card is sent from the field to the GY: You can target 1 card on the field; destroy it. | --メタルフォーゼ・オリハルク
--Metalfoes Orichalc
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_METALFOES),2)
--pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_PIERCE)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) in Defense Position to your zone a Link Monster points to. You can only Special Summon "Crusadia Leonis" once per turn this way. You can target 1 "Crusadia" Link Monster you control; if it attacks a Defense Position monster this turn, inflict piercing battle damage to y... | --百獣のパラディオン
--Crusadia Leonis
--Scripted by ahtelel
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:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Frightfur" monster in your Graveyard; Special Summon it. During your Main Phase, except the turn this card was sent to the Graveyard: You can banish this card from your Graveyard, then target 1 of your banished "Fluffal" or "Frightfur" monsters; return it to the Graveyard. | --デストーイ・リニッチ
--Frightfur Reborn
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(EVENT_FREE_CHAIN)
e1:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Summoned: You can add 1 "Machine Angel" Spell or 1 "Ritual Sanctuary" from your Deck to your hand. You can only use this effect of "Cyber Egg Angel" once per turn. | --サイバー・エッグ・エンジェル
--Cyber Egg Angel
--scripted by unknow
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Machine Angel" Spell or 1 "Ritual Sanctuary" 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(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by paying 1000 LP. During your Main Phase: You can Special Summon 1 "Dragonoid Token" (Machine/EARTH/Level 1/ATK 300/DEF 300) in Attack Position, you cannot Special Summon monsters from the Extra Deck for the rest of this turn, also during the End Phase your opponent Special Summons 1 "Dragonoid Toke... | --ドラゴノイド・ジェネレーター
--Dragonoid Generator
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:SetCost(Cost.PayLP(1000))
c:RegisterEffect(e1)
--Special Summon
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 Plant-Type monster. Special Summon 2 "Plant Tokens" (Plant-Type/EARTH/Level 1/ATK 800/DEF 500) to your opponent's side of the field in Defense Position. | --竹頭木屑
--Bamboo Scrap
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | At the end of the Battle Phase, if this card is in the Graveyard because it was destroyed by battle and sent to the Graveyard this turn: You can banish 1 "Gusto" monster from your Graveyard; Special Summon 1 WIND Psychic-Type monster with 1500 or less DEF from your Deck. | --ガスタ・サンボルト
--Gusto Thunbolt
local s,id=GetID()
function s.initial_effect(c)
--destroyed
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetOperation(s.flagop)
c:RegisterEffect(e1)
end
s.listed_series={SET_GUSTO}
function s.flagop(e,tp,eg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a Fairy monster. It gains 500 ATK. If it inflicts battle damage to your opponent: Gain LP equal to the damage inflicted. | --ダグラの剣
--Cestus of Dagla
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsRace,RACE_FAIRY))
--recover
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e2:SetCategory(CATEGORY_RECOVER)
e2:SetDescription(aux.Stringid(id,0))... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot attack the turn it is Summoned. While you control "Toon World" and your opponent controls no Toon monsters, this card can attack your opponent directly. Once per turn: You can target 1 card on the field; toss a coin 3 times and destroy it if at least 2 of the results are heads. | --トゥーン・リボルバー・ドラゴン
--Toon Barrel Dragon
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)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Pendulum Summons of your "Solfachord" Pendulum Monsters cannot be negated. ---------------------------------------- [ Monster Effect ] While you have an even Pendulum Scale in your Pendulum Zone, you take no damage from battles involving your "Solfachord" Pendulum Monsters. If this card is Normal or... | --ミドレミコード・エリーティア
--MiSolfachord Eliteia
--scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--cannot disable pendulum summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_CANNOT_DISABLE_SPSUMMON)
e1:SetProperty(EFFECT_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Special Summon 1 Level 2 Beast-Type monster from your Deck, except "Baby Raccoon Tantan". | --子狸たんたん
--Baby Raccoon Tantan
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a Rock-Type monster in Defense Position is attacked, double any Battle Damage to the controller of the attacking monster. | --断層地帯
--Canyon
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)
--Double Damage
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_CHANGE_BATTLE_DAMAGE)
e2... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy all monsters equipped with an Equip Card(s). | --大成仏
--Really Eternal Rest
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,TIMING_EQUIP)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | ● While in Attack Position: When this card is destroyed by battle, you can Special Summon 1 Level 4 or lower "Morphtronic" monster from your hand or Graveyard, except "Morphtronic Cameran". ● While in Defense Position: "Morphtronic" monsters on the field cannot be targeted by effects. | --D・キャメラン
--Morphtronic Cameran
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EVENT_LEAVE_FIELD_P)
e1:SetOperation(s.check)
c:RegisterEffect(e1)
local e2... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can reveal 1 Level 1 "Floowandereeze" monster in your hand and banish 1 "Floowandereeze" card with a different name from your Deck, then, immediately after this effect resolves, Normal Summon the revealed monster. If your opponent Normal Summons a monster, you can: Immediately after this eff... | --ふわんだりぃずと謎の地図
--Floowandereeze and the Magnificent Map
--Scripted by Zefile
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)
--Reveal 1 Level 1 "Floowandereeze" monster in your hand and ba... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during the Standby Phase: You can pay 500 LP; send the top card of your Deck to the Graveyard, and if you do, this card gains ATK and DEF equal to that monster's Level x 200 if it was a monster. If this card in your possession is destroyed by your opponent's card (by battle or card effect) and sent to yo... | --レッカーパンダ
--Wrecker Panda
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_TRIGGER_O+EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EVENT_PHASE|PHASE_STANDBY)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Fiend monsters with the same Attribute If this card is Fusion Summoned: You can send 1 Fiend monster from your Deck to the GY. If this card is in your GY: You can banish 2 Level 6 or higher Fiend monsters with the same Attribute as each other from your GY, except "Aerial Eater"; Special Summon this card. You can only... | --エアリアル・イーター
--Aerial Eater
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: 2 Fiend monsters with the same Attribute
Fusion.AddProcMixN(c,true,true,s.matfilter,2)
--Send 1 Fiend monster from your Deck to the GY
local e1=Effect.CreateEffect(c)
e1:SetDesc... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is sent directly from your hand to the Graveyard, add this card to the Deck and shuffle it. | --霞の谷の大怪鳥
--Roc from the Valley of Haze
local s,id=GetID()
function s.initial_effect(c)
--to deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetCondition(s.retcon)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters Once per turn: You can detach 1 Xyz Material from this card, then target 1 Defense Position monster on the field; change it to face-up Attack Position, and if you do, it loses 600 ATK. | --フォトン・バタフライ・アサシン
--Photon Papilloperative
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--pos&atk
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_POSITION+CATEGORY_ATKCHANGE)
e1:SetProperty(EFFECT_FLA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You cannot Pendulum Summon monsters, except WIND monsters. This effect cannot be negated. You can discard 1 WIND monster, then target 1 of your banished WIND monsters; add it to your hand. You can only use this effect of "Speedroid Dominobutterfly" once per turn. ------------------------------------... | --SRドミノバタフライ
--Speedroid Dominobutterfly
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--splimit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_CANNOT_NEGATE)
e1:SetCode(EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Vanquish Soul" monster Cannot be used as Link Material. While you control a "Vanquish Soul" monster, your opponent's monsters can only target monsters you control with the highest ATK (their choice, if tied) for attacks. During the Main Phase (Quick Effect): You can activate 1 of these effects; ● Special Summon 1 "V... | --闘神の虚像
--Rock of the Vanquisher
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_VANQUISH_SOUL),1,1)
--Cannot be used as Link Material
local e1=Effect.CreateEffect(c)
e1:SetType(EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Plant Normal Monster If a "Sunavalon" Link Monster you control leaves the field by card effect: Destroy this card. When an attack is declared involving this card, linked to a "Sunavalon" Link Monster, and an opponent's monster: You can activate this effect; the damage you take from that battle is halved. When this ca... | --聖蔓の守護者
--Sunvine Gardna
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,s.matfilter,1,1)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control 2 or more "Marincess" monsters, while this card is in your hand or GY: You can target 1 WATER Link Monster you control; Special Summon this card to your zone that monster points to, but banish it when it leaves the field. You can only use this effect of "Marincess Mandarin" once per turn. | --海晶乙女マンダリン
--Marincess Mandarin
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon from hand or GY
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,id)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 200 ATK for each "Dragunity" card you control. When this card is Normal Summoned: You can target 1 Level 3 or lower Dragon "Dragunity" monster in your GY; equip that target to this card. | --ドラグニティ-ドゥクス
--Dragunity Dux
local s,id=GetID()
function s.initial_effect(c)
--atk
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(s.atkval)
c:RegisterEffect(e1)
--equip
local e2=E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 card; add 2 "T.G." monsters with different names from your Deck to your hand. You can banish this card from your GY, then target 1 "T.G." monster in your GY; shuffle it into the Deck, or if you control a Machine "T.G." monster, you can add it to your hand instead. You can only use 1 "T.G. Limiter Removal" eff... | --TG — ブレイクリミッター
--T.G. Limiter Removal
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Search 2 "T.G." monsters with different names
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If the only face-up monster you control is 1 "Blackwing" monster other than "Blackwing - Gladius the Midnight Sun", you can Special Summon this card (from your hand). Once per turn, this card cannot be destroyed by battle. | --BF-白夜のグラディウス
--Blackwing - Gladius the Midnight Sun
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
c:Regis... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned by the effect of a "Heroic Challenger" monster: You can add 1 "Heroic Challenger" monster from your Deck to your hand. You can only use this effect of "Heroic Challenger - Clasp Sword" once per turn. | --H・C クラスプ・ナイフ
--Heroic Challenger - Clasp Sword
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Unaffected by the effects of "Hole" Normal Traps. If you activate a "Hole" Normal Trap Card (except during the Damage Step): You can add to your hand, or Special Summon, 1 "Traptrix" monster from your Deck, except "Traptrix Nepenthes". You can only use this effect of "Traptrix Nepenthes" once per turn. | --カズーラの蟲惑魔
--Traptrix Nepenthes
local s,id=GetID()
function s.initial_effect(c)
--immune
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_IMMUNE_EFFECT)
e1:SetValue(s.efilter)
c:RegisterEffect(e1)
--spsummon
l... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Tearlaments Reinoheart" + 2 Aqua monsters Cannot be used as Fusion Material. If this card is Special Summoned, or if an Aqua monster is sent to your GY by card effect while this card is on the field: You can target 1 card your opponent controls; shuffle it into the Deck. If this card is sent to the GY by card effect: ... | --ティアラメンツ・カレイドハート
--Tearlaments Kaleido-Heart
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,73956664,1,aux.FilterBoolFunctionEx(Card.IsRace,RACE_AQUA),2)
--Cannot be Fusion Material
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster your opponent controls; banish it until the End Phase. You can only activate 1 "Spiritual Entanglement" per turn. | --霊子もつれ
--Spiritual Entanglement
--scripted by Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,i... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters Gains 100 ATK/DEF for each Zombie monster on the field and in the GYs. When another Zombie monster is destroyed by battle: You can Special Summon 1 Zombie monster from either GY to your field. You can only use this effect of "Red-Eyes Zombie Necro Dragon" once per turn. | --真紅眼の不屍竜
--Red-Eyes Zombie Necro Dragon
local s,id=GetID()
function s.initial_effect(c)
--Synchro Summon procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--Increase ATK/DEF
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you gain LP: Target 1 face-up monster your opponent controls; destroy it. If you control an "Aroma" monster and your LP is at least 3000 higher than your opponent's: You can pay LP equal to the difference; destroy face-up monsters your opponent controls whose combined ATK is less than or equal to the LP you paid to ... | --渇きの風
--Dried Winds
local s,id=GetID()
function s.initial_effect(c)
--activate
local e0=Effect.CreateEffect(c)
e0:SetDescription(aux.Stringid(id,0))
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e0)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,2)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "@Ignister" monster in your GY; Special Summon it. If an "@Ignister" monster(s) you control with 2300 or more ATK would be destroyed by card effect, you can banish this card from your GY instead. If this card is banished: You can activate this effect; your "@Ignister" monsters with 2300 or more ATK cannot be d... | --キ-Ai-
--FA.I.ghting Spirit
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Apply 1 of these effects, or if you control 2 or more "Six Samurai" monsters, you can apply both effects in sequence. ● Special Summon 1 "Six Samurai" monster with 2000 or less ATK from your hand or GY. ● Change 1 monster your opponent controls with 2000 or less ATK to face-down Defense Position. During your Main Phase... | --六武式襲双陣
--Six Strike - Double Assault
--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:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Link Monster on the field; return it to the Extra Deck, then you can Special Summon 1 of the monsters from your GY that was sent there as its Link Material. | --ブリンクアウト
--Blink Out
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Return 1 Link monster to the Extra Deck, then you can Special Summon 1 material from your GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOEXTRA+CATEGORY_SPECIAL_SUMMON)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a "Morphtronic" monster is Summoned, you can change it to face-up Defense Position. | --D・ゲイザー
--Morphtronic Monitron
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)
--pos
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_POSIT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 EARTH monsters Once per turn: You can detach 1 Xyz Material from this card; all non-EARTH monsters currently on the field lose 500 ATK and DEF. | --妖精王 アルヴェルド
--Fairy King Albverdich
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_EARTH),4,2)
--Non-EARTH monsters lose 500 ATK/DEF
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Dinomorphia" Fusion Monster: Pay half your LP and banish 1 Counter Trap from your GY; this effect becomes that Counter Trap's effect when that card is activated. During damage calculation while your LP are 2000 or less, if you would take battle damage: You can banish this card from your GY; you take n... | --ダイノルフィア・リヴァージョン
--Dinomorphia Reversion
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetCondition... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal Summoned: Shuffle all banished cards into the Deck. This card gains 100 ATK for each card shuffled into the Main Deck by this effect. If this card is banished: Each player banishes 5 cards from the top of their Deck (or their entire Deck, if less than 5). | --ネクロフェイス
--Necroface
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK+CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.tdtg)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as "Hungry Burger".) You can Ritual Summon this card with a "Recipe" card. Monsters your opponent controls that can attack must attack this card. You can only use each of the following effects of "Angry Burger" once per turn. You can reveal this card in your hand; add 1 "Nouvelles" monster ... | --アングリーバーガー
--Angry Burger
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--All monsters your opponent controls must attack this card, if able
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_MUST_ATTACK)
e1:SetTargetRange(0,LOCATION_MZONE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have an "Aquaactress" monster in your GY: Target 1 monster on the field; until the end of this turn, its effects are negated, its ATK/DEF become 100, also it is unaffected by your opponent's card effects. | --水物語-ウラシマ
--Aqua Story - Urashima
local s,id=GetID()
function s.initial_effect(c)
--Targeted monster has its effects negate, its ATK/DEF becomes 100, and is unaffected by opponent's card effects
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DISABLE+CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE)
e1:SetType(EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is destroyed by battle and sent to the Graveyard: You can add 1 monster with 200 DEF from your Deck to your hand. | --フレムベル・パウン
--Flamvell Poun
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetCondition(s.thco... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no monsters, or only control "Queen's Knight", "King's Knight", and/or "Jack's Knight": You can Special Summon 1 "Queen's Knight", "King's Knight", or "Jack's Knight" from your hand or GY. You can banish up to 1 each "Queen's Knight", "King's Knight", and/or "Jack's Knight" from your hand and/or GY; draw... | --絵札の絆
--Court of Cards
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 1 "Queen's Knight", "King's Knight", or "Jack's Knight" from your hand or GY
local e2=Effect.Creat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 10 monsters Once per turn, you can also Xyz Summon "Galaxy-Eyes Cipher X Dragon" by using a "Cipher Dragon" monster you control as material. (Transfer its materials to this card.) You can detach 2 materials from this card; your opponent cannot target LIGHT monsters you control with card effects, until the end o... | --銀河眼の極光波竜
--Galaxy-Eyes Cipher X Dragon
--Scripted by Cybercatman
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure
Xyz.AddProcedure(c,nil,10,2,s.ovfilter,aux.Stringid(id,0),2,s.xyzop)
--Make LIGHT monsters you currently control unable to be targeted by your opponent's ca... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute Summon this card in face-up Attack Position by Tributing 1 Spellcaster-Type monster. After this card was Normal Summoned, your opponent cannot activate Spell/Trap Cards for the rest of that turn. | --ブリザード・プリンセス
--Blizzard Princess
local s,id=GetID()
function s.initial_effect(c)
--summon with 1 tribute
local e1=aux.AddNormalSummonProcedure(c,true,true,1,1,SUMMON_TYPE_TRIBUTE,aux.Stringid(id,0),s.otfilter)
--activate limit
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
... |
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 4 or lower Normal Monster from your hand. All monsters you control gain 100 ATK and DEF. | --白虎の召喚士
--White Tiger Summoner
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.sptg)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. This card can attack twice during each Battle Phase. During your Standby Phase, if this card was destroyed since your last Standby Phase: You can Special Summon 2 "Double Dude Tokens" (Warrior-Type/DARK/Level 4/ATK 1000/DEF 1000). This card must be in your Graveyard to activate and to resolv... | --D-HERO ダブルガイ
--Destiny HERO - Double Dude
local s,id=GetID()
function s.initial_effect(c)
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:RegisterEffect(e1)
--multiat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can return up to 3 monsters on the field to the owner's hand. | --派手ハネ
--Hade-Hane
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_DELAY)
e1:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Offer this face-up card as a Tribute to return 1 of your monsters destroyed in battle during this turn to the bottom of your Deck. | --紅蓮の女守護兵
--Crimson Sentry
local s,id=GetID()
function s.initial_effect(c)
--to deck
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(Cost.SelfTribute)
e1:SetTarget(s.target)
e1:SetOpe... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.