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: | Target 1 "Fossil" Fusion Monster you control; Tribute it, and if you do, Special Summon 1 "Fossil" Fusion Monster from your Extra Deck, whose original Level is 2 higher than that monster's. (This is treated as a Fusion Summon with "Fossil Fusion".) During your Main Phase, except the turn this card was sent to the GY: Y... | --タイム・ストリーム
--Time Stream
--Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
--Tribute 1 "Fossil" Fusion Monster and Special Summon 1 "Fossil" Fusion Monster whose original Level is 2 higher
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 monster; Special Summon from your Deck, 1 Tuner monster with the same original Type and Attribute, but 1 Level higher than the discarded monster had in hand. | --チューナーズ・ハイ
--Tuner's High
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:SetLabel(0)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While a "Ghostrick" monster is on the field, your opponent cannot Flip Summon. If this card in your possession is destroyed by your opponent and sent to your GY: Your opponent cannot declare attacks for the rest of this turn. * The above text is unofficial and describes the card's functionality in the OCG. | --ゴーストリック・ナイト
--Ghostrick Night
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 remove
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_CANNOT_FL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Detach 1 Xyz Material you control to target 1 face-up monster your opponent controls; destroy that target. | --エクシーズエナジー
--Xyz Energy
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 "Neo-Spacian" monster or 1 "Elemental HERO Neos" from your hand or Deck in Defense Position. You can Tribute this card, then target 1 "Neo-Spacian" monster or 1 "Elemental HERO Neos" in your GY; Special Summon it in Defense Position. You can only use each effe... | --オスペース・コネクター
--Neo Space Connector
--Scripted by ahtelel
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)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no Special Summoned monsters: You can Special Summon this card from your hand, also you cannot Special Summon other monsters for the rest of this turn. You can only use this effect of "Proof of Pruflas" once per turn. If this card is Normal or Special Summoned, you can (except during the Damage Step): Im... | --プルーフ・プルフラス
--Proof of Pruflas
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCondition(s.ssco... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Shuffle any number of cards from your hand into the Deck, then draw that same number of cards. | --打ち出の小槌
--Magical Mallet
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.acti... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Negate the activation of an Effect Monster, Spell or Trap Card that targets a card(s) in the Graveyard, and destroy it. | --ヒーローズルール2
--Hero's Rule 2
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:R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a card(s) you control and a card(s) your opponent controls are destroyed by battle or card effect at the same time: Each player draws 2 cards. You can only activate 1 "Fighting Dirty" per turn. | --泥仕合
--Fighting Dirty
--scripted by andré
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetProperty(EFFECT_FLAG_DELAY+EFFECT_FLAG_DAMAGE_STEP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_DESTROYED)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can attack all face-up LIGHT monsters your opponent controls once each. If this card battles a non-LIGHT monster, destroy this card before damage calculation. | --A・O・J サウザンド・アームズ
--Ally of Justice Thousand Arms
local s,id=GetID()
function s.initial_effect(c)
--Can attack all face-up LIGHT monsters your opponent controls
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_ATTACK_ALL)
e1:SetValue(function(_,c) return c:IsFaceup() and c:IsAttrib... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase: Special Summon this card as a Normal Monster (Reptile/EARTH/Level 6/ATK 2000/DEF 2200) (this card is also still a Trap), then, you can negate the effects of face-up cards your opponent controls, up to the number of other Continuous Traps you control, until the end of this turn. | --澱神アポピス
--Apophis the Swamp Deity
--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+CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, if a monster(s) your opponent controls is destroyed by your opponent's card effect (except during the Damage Step): You can target 1 card on the field; destroy that target. | --連鎖誘爆
--Chain Ignition
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)
--destroy
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_DESTROY)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Dark Magician" or "Dark Magician Girl" + 1 Dragon or Spellcaster monster After this card is Special Summoned, until the end of your next turn, it is unaffected by other cards' effects. You can only use each of the following effects of "Timaeus the United Magidragon" once per turn. If this card battles, during damage c... | --合体魔竜ティマイオス
--Timaeus the United Magidragon
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: "Dark Magician" or "Dark Magician Girl" + 1 Dragon or Spellcaster monster
Fusion.AddProcMix(c,true,true,{CARD_DARK_MAGICIAN,CARD_DARK_MAGICIAN_GIRL},aux.FilterBool... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Aleister the Invoker" + 1 WATER monster Cannot be destroyed by your opponent's card effects. Your opponent cannot target this card with card effects. This card can attack while in face-up Defense Position. If it does, apply its ATK for damage calculation. | --召喚獣コキュートス
--Invoked Cocytus
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,86120751,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER))
--cannot target
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 4 WIND monsters This card's effects can only be activated, applied and/or resolved while it has material. This card can attack your opponent directly. Your opponent cannot target "Harpie" monsters on the field with card effects, and their monsters cannot target "Harpie" monsters for attacks. Once per turn, duri... | --ハーピィズペット幻竜
--Harpie's Pet Phantasmal Dragon
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WIND),4,3)
c:EnableReviveLimit()
--direct attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DIREC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Rock monster, except "Adamancipator Researcher": 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 D... | --魔救の探索者
--Adamancipator Researcher
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While your LP is higher than your opponent's, if a Plant-Type monster you control attacks a Defense Position monster, inflict piercing battle damage to your opponent. Once per turn, if you gain LP: This card gains 1000 ATK and DEF until the end of your opponent's turn. | --アロマージ-ベルガモット
--Aromage Bergamot
local s,id=GetID()
function s.initial_effect(c)
--pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_PIERCE)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetCondition(s.pccon)
e1:SetTarget(aux.TargetBoolFunction(Card.IsR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You can declare 1 Attribute; return this card to the Extra Deck, and if you do, Special Summon 1 "Plunder Patroll Token" (Fiend/Level 4/ATK 0/DEF 0) with that Attribute to both players' fields in Defense Position. You can only use this effect of "Plunder Patrollship Jord" once per turn. ------------... | --海造賊-荘重のヨルズ号
--Plunder Patrollship Jord
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Pendulum.AddProcedure(c,false)
--1 Tuner + 1+ Non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Return this card to the Extra Deck
local e1=Effect.Creat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during the End Phase, if this card was Normal Summoned this turn: Return it to the hand. You can only use each of the following effects of "Yosenju Izna" once per turn. ● You can discard this card; this turn, your opponent cannot activate cards or effects when a "Yosenju" monster(s) is Normal or Special ... | --妖仙獣 飯綱鞭
--Yosenju Izna
--scripted by AlphaKreitn
local s,id=GetID()
function s.initial_effect(c)
--cannot respond
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCost(Cost.SelfDiscard)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand) by banishing "Kozmo" monsters from your hand whose total Levels equal 10 or more, and cannot be Special Summoned by other ways. Cannot be targeted by an opponent's card effects. During either player's turn, when a Spell Card is activated: You can ... | --Kozmo-ダークプラネット
--Kozmo Dark Planet
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)
c:RegisterEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn: You can banish this card; Special Summon 1 Level 3 or higher "Kozmo" monster from your hand. You can only use this effect of "Kozmo Scaredy Lion" once per turn. Once per turn: You can pay 500 LP, then target 3 of your banished "Kozmo" monsters; return them to the Graveyard, and if you do, i... | --Kozmo-パーヴィッド
--Kozmo Scaredy Lion
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_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Level 2 or lower monster you control destroys an opponent's monster by battle and sends it to the Graveyard, if you have no cards in your hand, draw 2 cards. | --弱者の意地
--Pride of the Weak
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)
--draw
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_DRAW)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an attack is declared involving your other Warrior monster and an opponent's face-up monster: You can send this card from your hand or field to the GY; that opponent's monster loses ATK equal to its original ATK, until the end of this turn. You can banish this card from your GY, then target 1 EARTH Warrior monster... | --新鋭の女戦士
--Rookie Warrior Lady
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Reduce ATK
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetRan... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares an attack, while you have no cards in your hand and this card is in your Graveyard: You can Special Summon this card from your Graveyard, then end the Battle Phase. You can only use this effect of "Tasuke Knight" once per Duel. | --タスケナイト
--Tasuke Knight
local s,id=GetID()
function s.initial_effect(c)
--end battle phase
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_ATTACK_ANNOUNCE)
e1:SetRange(LOCATION_GRAV... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an attack is declared involving a "Battlin' Boxer" monster you control and an opponent's monster: Negate the attack, and if you do, send that monster you control to the GY, then 1 "Battlin' Boxer" monster you control (in Attack Position, if you declared the attack) gains ATK equal to the original ATK of that oppon... | --ラスト・カウンター
--Last Counter
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activa... |
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 negate a Summon, or the activation of a Spell/Trap Card: Banish 3 cards from the top of your Deck, face-down; negate the activation, and if you do, shuffle that card into the Deck. * The above text is unofficial and describes the card's functionality in... | --ストールターン
--Stall Turn
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetCost(s.cost)
e1:SetTarget(s.ta... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is unaffected by the effects of Xyz Monsters. When this card is destroyed by battle with an Xyz Monster and sent to the Graveyard: Activate 1 of these effects, depending on the Rank of the Xyz Monster that destroyed this card; ● Rank 3 or lower: Your opponent sends 1 card from their Extra Deck to the Graveyar... | --エクシーズ・アヴェンジャー
--Xyz Avenger
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:SetCondition(s.econ)
e1:SetValue(s.efilter)
c:RegisterEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Effect Monsters Your opponent cannot activate cards or effects in response to this card's effect activations. If this card is Link Summoned: You can target 1 Link Monster that was used as material for its Link Summon; this card gains ATK equal to that monster's Link Rating x 1000. You can banish 1 Link Monster from ... | --アクセスコード・トーカー
--Accesscode Talker
local s,id=GetID()
function s.initial_effect(c)
--Link Summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2)
c:EnableReviveLimit()
--Check materials for a Link Monster
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetCode(EFFECT_MAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Zombyra the Dark" + "Maryokutai" If this card is Special Summoned: Destroy all other monsters you control. Neither player can Summon monsters. | --異星の最終戦士
--The Last Warrior from Another Planet
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,71466592,88472456)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | A monster attacked by this card will be destroyed during the End Phase of the 5th turn after the attack. | --ゾーン・イーター
--Zone Eater
local s,id=GetID()
function s.initial_effect(c)
--
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLED)
e1:SetCondition(s.condition)
e1:SetOperation(s.operatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your hand or GY and you control a LIGHT "Tistina" monster: You can Special Summon this card. You can target 1 "Tistina" monster or 1 face-down card you control; destroy it, then add 1 "Tistina" card from your Deck to your hand. You can only use each effect of "Sentinel of the Tistina" once per turn. | --ティスティナの歩哨
--Sentinel of the Tistina
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND|LOCATION_GR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (Quick Effect): You can send this card from your hand to the GY, then target 1 Fusion Monster you control; it gains 1000 ATK/DEF until the end of this turn. If this card is Normal Summoned or flipped face-up: You can add 1 "Invocation" from your Deck to your hand. | --召喚師アレイスター
--Aleister the Invoker
local s,id=GetID()
function s.initial_effect(c)
--Increase ATK/DEF
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Cycle of the World". This card's name becomes "Demise, King of Armageddon" while in the hand or on the field. If this card is Ritual Summoned: Destroy 1 face-up monster on the field. If this card is sent to the GY: You can target 1 Ritual Monster you control; while it is face-up on... | --終焉の悪魔デミス
--Demise, Agent of Armageddon
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--code
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_CHANGE_CODE)
e1:SetRange(LOCATION_MZONE|LOCATION_HA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) you control is destroyed by battle or an opponent's card effect: Target 1 of those monsters; Special Summon monster(s) from your Deck in Defense Position so their combined Levels equal the Level of that monster, but negate their effects. You can only activate 1 "Level Resist Wall" per turn. | --レベル・レジストウォール
--Level Resist Wall
--Logical Nonsense
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_DAMAGE_STEP+EFFECT_FLAG_DELAY+E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Fiend-Type Tuner + 1 or more non-Tuner monsters When this card destroys an opponent's monster by battle and sends it to the Graveyard: You can have this card gain 800 ATK until the end of the Battle Phase, also this card can make a second attack in a row. | --ヘル・ツイン・コップ
--Stygian Sergeants
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_FIEND),1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--chain attack
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Level 4 or lower Dragon monster You cannot Special Summon monsters, except Dragon monsters. During your Main Phase: You can Special Summon 1 Dragon monster from your hand or Deck to your zone that 2 or more Link Monsters point to. You can only use this effect of "Guardragon Elpy" once per turn. You can only Special S... | --守護竜エルピィ
--Guardragon Elpy
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
c:SetSPSummonOnce(id)
--link summon
c:EnableReviveLimit()
Link.AddProcedure(c,s.matfilter,1,1)
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_PL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 WIND Tuner + 1 non-Tuner WIND Synchro Monster Once per turn, during your Main Phase: You can roll a six-sided die and shuffle WIND monsters from your GY into your Deck, up to the result, then, you can destroy cards your opponent controls up to the number shuffled, and if you do, this card gains 500 ATK for each card ... | --HSR/CWライダー
--Hi-Speedroid Clear Wing Rider
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WIND),1,1,Synchro.NonTunerEx(s.matfilter),1,1)
--to deck
local e1=Effect.CreateEffect(c)
e1:SetDescr... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once, while this card is in your Pendulum Zone, when your "Odd-Eyes" monster declares an attack: You can target 1 other "Performapal" monster you control; that attacking monster gains ATK equal to the original ATK of the targeted monster on the field, until the end of the Battle Phase (even if this ... | --EMオッドアイズ・ユニコーン
--Performapal Odd-Eyes Unicorn
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--atk
local e2=Effect.CreateEffect(c)
e2:SetProperty(EFFECT_FLAG_NO_TURN_RESET+EFFECT_FLAG_CARD_TARGET)
e2:SetCategory(CATEGORY_ATKCHANGE)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Fairy Dragon" + "Amazon of the Seas" + "Zone Eater" | --アクア・ドラゴン
--Aqua Dragon
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,20315854,17968114,86100785)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Evil HERO" monster + 1 Level 5 or higher monster Must be Special Summoned with "Dark Fusion". Cannot be destroyed by battle or card effects. During your Main Phase: You can destroy all monsters your opponent controls with ATK less than or equal to this card's, also this card gains 200 ATK for each monster destroyed ... | --E-HERO マリシャス・ベイン
--Evil HERO Malicious Bane
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_EVIL_HERO),aux.FilterBoolFunctionEx(Card.IsLevelAbove,5))
--Clock Lizard check
loca... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card destroys an opponent's monster by battle: Activate 1 of these effects. ● Send 1 LIGHT Machine monster with 1200 or less ATK from your Deck to your GY. ● Target 1 LIGHT Machine monster with 1200 or less ATK in your GY; Special Summon that target. | --ファルシオンβ
--Falchionβ
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
functio... |
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 target 2 Level 2 monsters in your Graveyard; Special Summon them, but their effects are negated. | --スピッド・バード
--Speed Bird
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:SetCode(EVENT_BATT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Unaffected by Trap effects. | --E・HERO ワイルドマン
--Elemental HERO Wildheart
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_IMMUNE_EFFECT)
e1:SetValue(s.efilter)
c:RegisterEffect(e1)
end
function ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Raidraptor" Xyz Monster in your Graveyard that was destroyed by battle and sent there this turn; Special Summon it, then Special Summon from your Extra Deck, 1 Xyz Monster that has twice the Rank of that monster, by using it as the Xyz Material. (This Special Summon is treated as an Xyz Summon.) | --RUM-デス・ダブル・フォース
--Rank-Up-Magic Doom Double Force
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetHintTiming(0,TIMING_DE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned from the GY. If you have no cards in your hand: You can Tribute this card, then target 2 "Infernity" monsters in your GY; Special Summon them. | --インフェルニティ・ミラージュ
--Infernity Mirage
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+EFFECT_FLAG_SINGLE_RANGE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetRange(LOCATION_GRAVE)
e1:SetCode(EFFECT_SPSUMM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by choosing ATK or DEF; equip only to a Machine monster. It gains 700 ATK or DEF, depending on the choice. | --7カード
--7 Completed
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsRace,RACE_MACHINE),nil,nil,nil,s.operation)
end
function s.operation(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
local tc=Duel.GetFirstTarget()
if c:IsRelateToEffect(e) and tc and tc:IsRe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is destroyed and sent to the Graveyard by battle, both players gain 800 Life Points. | --迷走悪魔
--Stray Asmodian
local s,id=GetID()
function s.initial_effect(c)
--battle destroyed
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetCondition(s.condition)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 10 Winged Beast monsters Unaffected by other cards' effects. You can detach 1 material from this card; for the rest of this turn, all monsters your opponent controls lose 1000 ATK, also your opponent cannot activate cards or effects. If this card has a "Raidraptor" monster as material, it gains this effect. ● O... | --RR-アルティメット・ファルコン
--Raidraptor - Ultimate Falcon
local s,id=GetID()
function s.initial_effect(c)
--Xyz Summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WINGEDBEAST),10,3)
c:EnableReviveLimit()
--Unnafected by other cards' effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reduce the Level of 1 face-up monster you control by up to 2. | --レベル・リチューナー
--Level Retuner
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.fil... |
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, destroy all face-down and non-DARK monsters. | --ダークネスソウル
--Umbral Soul
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_DESTROYED)
e1:SetCondition(s.condition)
e1:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, if you have no cards in your other Pendulum Zone: You can place 1 Pendulum Monster from your Deck in your Pendulum Zone. ---------------------------------------- [ Monster Effect ] 2 Level 7 Dragon-Type monsters If you can Pendulum Summon Level 7, you can Pendulum Summon this face-up ... | --覇王烈竜オッドアイズ・レイジング・ドラゴン
--Odd-Eyes Raging Dragon
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Xyz summon procedure
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DRAGON),7,2)
--Enable pendulum summon
Pendulum.AddProcedure(c,fals... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Kaitoptera" + 1 Dinosaur or Dragon monster This card can attack directly the turn it is Special Summoned. You can only use each of the following effects of "Horned Saurus" once per turn. If this card is Fusion Summoned: You can place 1 Field Spell from your Deck or GY face-up in your Field Zone. During your Main Phase... | --ヘルホーンドザウルス
--Horned Saurus
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--"Kaitoptera" + 1 Dinosaur or Dragon monster
Fusion.AddProcMix(c,true,true,50834074,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DINOSAUR|RACE_DRAGON))
--Place 1 Field Spell face-up in the Field Zon... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Buster Blader" + 1 Dragon monster Must be Fusion Summoned. Cannot attack directly. Gains 1000 ATK/DEF for each Dragon monster your opponent controls or is in their GY. Change all Dragon monsters your opponent controls to Defense Position, also Dragon monsters in your opponent's possession cannot activate their effec... | --竜破壊の剣士-バスター・ブレイダー
--Buster Blader, the Dragon Destroyer Swordsman
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,CARD_BUSTER_BLADER,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DRAGON))
--cannot direct attack
local e1=Effect.CreateEffect(c)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase: You can check the difference between the current and original ATK of each monster on the field, add up the total of each of those differences, and make this monster's original ATK become that combined amount until the end of your opponent's next turn. | --機怪獣ダレトン
--Darton the Mechanical Monstrosity
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Change original ATK
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetTarget(s.atktg)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Ritual Beast Tamer" monster + 1 "Spiritual Beast" monster Must be Special Summoned (from your Extra Deck) by banishing the above cards you control, and cannot be Special Summoned by other ways. (You do not use "Polymerization".) If this card attacks, it is unaffected by other cards' effects until the end of the Dama... | --聖霊獣騎 アペライオ
--Ritual Beast Ulti-Apelio
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_RITUAL_BEAST_TAMER),aux.FilterBoolFunctionEx(Card.IsSetCard,SET_SPIRITUAL_BEAST))
Fusion.AddContactProc(c,s.contac... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a face-up "Gusto" monster on the field is destroyed by battle or sent to your GY: You can Special Summon this card from your hand. If this card is Normal or Special Summoned: You can send 1 "Gusto" monster from your Deck to the GY, then, you can Special Summon 1 "Gusto" monster from your hand. You can only use each ... | --ガスタ・ヴェズル
--Gusto Vedir
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_DESTR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Fiend monster + 1 Warrior monster Must be Special Summoned with "Dark Fusion". Monsters your opponent controls lose ATK equal to the total original ATK of the materials used for this card's Fusion Summon. Can make a second attack during each Battle Phase. If this face-up Special Summoned card in its owner's control l... | --E-HERO ダーク・ナイト
--Evil HERO Darkest Knight
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: 1 Fiend monster + 1 Warrior monster
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsRace,RACE_FIEND),aux.FilterBoolFunctionEx(Card.IsRace,RACE_WARRIOR))
c:AddMustBeSpec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You can target 1 card in your Pendulum Zone; toss a coin. ● Heads: Special Summon it. ● Tails: Destroy it, but lose LP equal to its Pendulum Scale x 300. You can only use this effect of "Tempura of Fortune - EBI" once per turn. ---------------------------------------- [ Flavor Text ] We went to EDO-... | --運否の天賦羅-EBI
--Tempura of Fortune - EBI
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Pendulum Summon procedure
Pendulum.AddProcedure(c)
--Toss a coin, and Special Summon or destroy 1 card in your Pendulum Zone
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCate... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control 3 or more "Harpie Lady" and/or "Harpie Lady Sisters": Target as many monsters your opponent controls as possible, but not more than the total number of "Harpie Lady" and "Harpie Lady Sisters" you control; destroy those targets, and if you do, inflict damage to your opponent equal to the highest original ... | --ハーピィ・レディ -鳳凰の陣-
--Harpie Lady Phoenix Formation
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.con... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase: You can activate 1 of these effects; ● Shuffle 1 LIGHT Ritual Monster (Warrior or Dragon) or 1 Ritual Spell from your hand or GY into the Deck, and if you do, add to your hand, or Special Summon, 1 "Voiceless Voice" monster from your Deck. ● Target cards your opponent controls, up to the number o... | --粛声なる威光
--Radiance of the Voiceless Voice
--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)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescript... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All Warrior and Beast-Warrior monsters on the field gain 200 ATK/DEF. | --草原
--Sogen
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
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetRange(LOCATION_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card gains the appropriate effects if you Normal Summon it by Tributing these monsters. ● Green Gadget: This card gains 300 ATK. ● Red Gadget: If this card inflicts battle damage to your opponent by a direct attack: Inflict 500 damage to your opponent. ● Yellow Gadget: If this card destroys an opponent's monster b... | --古代の機械合成獣
--Ancient Gear Gadjiltron Chimera
local s,id=GetID()
function s.initial_effect(c)
--Material check
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MATERIAL_CHECK)
e1:SetValue(s.valcheck)
c:RegisterEffect(e1)
--Gain effects based on the monsters used for its summon
loc... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The first time this card would be destroyed by battle each turn, it is not destroyed. Once per turn: You can target 1 of your "Battlin' Boxer" monsters that is banished or in your GY, that has a Level; all "Battlin' Boxer" monsters you currently control become that monster's current Level. | --BK ビッグバンテージ
--Battlin' Boxer Big Bandage
local s,id=GetID()
function s.initial_effect(c)
--battle indes
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_INDESTRUCTABLE_COUNT)
e1:SetCountLimit(1)
e1:SetValue(s.... |
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, "Shinato's Ark". You must also Tribute monsters whose total Levels equal 8 or more from the field or your hand. When this card destroys a Defense Position monster and sends it to the Graveyard as a result of battle, inflict damage to your opponent's Life... | --天界王 シナト
--Shinato, King of a Higher Plane
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_PLAYER_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters You can detach 1 material from this card, then target 1 Xyz Monster in your GY, except "Gagagaga Magician"; Special Summon it, but negate its effects. You can only use this effect of "Gagagaga Magician" once per turn. A "Utopic Future" Xyz Monster that has this card as material gains this effect. ● D... | --ガガガガマジシャン
--Gagagaga Magician
--Scripted by Hel
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--Special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_I... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase, if a monster on the field is flipped face-up: You can Special Summon this card from your hand, then change 1 face-up monster on the field to face-down Defense Position. During the Main Phase, if this card is flipped face-up: You can target 1 monster in your GY; Special Summon it in Defense Positi... | --タイム・リワインダー
--Time Reloader
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Elemental HERO Neos" + 1 "Ultimate Crystal" monster Must be Fusion Summoned with the above Fusion Materials. Once per turn: You can activate 1 of these effects. ● Send 1 monster you control to the GY; shuffle all monsters your opponent controls into the Deck. ● Send 1 Spell/Trap you control to the GY; shuffle all Spel... | --レインボー・ネオス
--Rainbow Neos
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,false,false,CARD_NEOS,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_ULTIMATE_CRYSTAL))
--special summon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can banish 1 monster from your hand; destroy all face-up monsters on the field with the same Type as that monster. | --同族感電ウィルス
--Tribe-Shocking Virus
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCost(s.cost)
e1:SetTarget(s.t... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card; add 1 "Lair of Darkness" from your Deck to your hand. You can Tribute 1 DARK monster; draw 1 card, or, if you Tributed a DARK monster other than this card to activate this effect, you can add 1 DARK monster with 2000 or more DEF from your Deck to your hand, instead. You can only use this effe... | --悪王アフリマ
--Ahrima, the Wicked Warden
--
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_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCost(Cost.SelfDiscard)
e1:SetTa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Link Monster you control; Special Summon 1 Beast, Beast-Warrior, or Winged Beast monster with a different Type from your hand or GY. If you control at least 1 each of Beast, Beast-Warrior, and Winged Beast monsters: You can banish this card from your GY, then target 1 face-up Spell/Trap your opponent controls;... | --鉄獣の血盟
--Tri-Brigade Oath
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Special Summon from hand
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:SetPropert... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as a "Charmer" card.) You can discard this card and 1 other WIND monster; add 1 WIND monster with 1500 or less DEF from your Deck to your hand, except "Wynn the Wind Channeler", also you cannot activate monster effects for the rest of this turn, except WIND monsters. When a WIND monster you... | --風霊媒師ウィン
--Wynn the Wind Channeler
--Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
--Search 1 WIND monster with 1500 or less DEF
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during either player's turn: You can banish 1 "Ritual Beast" card from your Graveyard; for the rest of this turn, all "Ritual Beast" monsters you control will gain 500 ATK and DEF. You can only Special Summon "Spiritual Beast Apelio(s)" once per turn. | --精霊獣 アペライオ
--Spiritual Beast Apelio
local s,id=GetID()
function s.initial_effect(c)
c:SetSPSummonOnce(id)
--atk
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetRange(LOCATION_MZONE)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Cynet Ritual". At the start of the Damage Step, if this card attacks a monster: You can return that monster to the hand. You can Tribute this card; Special Summon 1 Level 5 or higher Cyberse monster from your hand or Deck, but it cannot activate its effects this turn. You can only ... | --嵐竜の聖騎士
--Paladin of Storm Dragon
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--return to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVE... |
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, destroy all face-down and non-WATER monsters. | --サイレントアビス
--Silent Abyss
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_DESTROYED)
e1:SetCondition(s.condition)
e1:SetTa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal or Special Summoned: You can add 1 "Yellow Gadget" from your Deck to your hand. | --レッド・ガジェット
--Red Gadget
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:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE)
e1:SetCode(EVENT_SUM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During damage calculation, if your monster battles an opponent's monster: Your battling monster's ATK becomes that opponent's monster's ATK, during that damage calculation only, also, the controller of any monster destroyed by that battle takes damage equal to its original ATK, at the end of the Damage Step. If your "@... | --Ai打ち
--TA.I. Strike
--Scripted by Eerie Code, anime version by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetCountLimit(1,id,EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Summoned: You can apply the effect below for the rest of this turn. You can only use this effect of "Satellarknight Capella" once per turn (but if it resolves, you can apply the effect multiple times). ● You can treat Level 4 or lower "tellarknight" monsters you control as Level 5 when Xyz Summoning usi... | --星因士 カペラ
--Satellarknight Capella
local s,id=GetID()
function s.initial_effect(c)
--Apply a "You can treat Level 4 or lower "tellarknight" monsters you control as Level 5 when Xyz Summoning using 3 or more monsters as Xyz Materials" effect
local e1a=Effect.CreateEffect(c)
e1a:SetDescription(aux.Stringid(id,0))
e1a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Reptile monster, you can Special Summon this card (from your hand). You can only Special Summon "Black Mamba" once per turn this way. If this card is Normal or Special Summoned: You can target 1 monster your opponent controls; send 1 Reptile monster from your Deck to the GY, and if you do, change the t... | --ブラックマンバ
--Black Mamba
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:SetCountLimit(1,{id,0},EFFECT_COUNT_CODE_OATH)
e1:SetCondit... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Trap Card is activated while you control 2 or more face-up monsters with the same Level: Negate the activation and destroy it. | --共同戦線
--United Front
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:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your hand: You can target 1 "Virtual World" card you control; send 1 "Virtual World" card of a different type (Monster, Spell, Trap) from your Deck to the GY, and if you do, Special Summon this card, then, you can Special Summon 1 "Virtual World" monster from your GY in Defense Position, with a diffe... | --電脳堺悟-老々
--Virtual World Roshi - Laolao
--Scripted by Hel
local s,id=GetID()
function s.initial_effect(c)
--Send 1 card to the GY and Special Summon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You Normal Summon/Set WIND monsters with 1 less Tribute than ordinarily required. (You can only apply this effect once per Summon/Set.) This card is treated as a Normal Monster while in your hand. If this card is Tribute Summoned by Tributing only WIND monsters: target up to 2 cards your opponent controls; return them ... | --始祖神鳥シムルグ
--Simorgh, Bird of Ancestry
local s,id=GetID()
function s.initial_effect(c)
--normal monster
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_HAND)
e1:SetCode(EFFECT_ADD_TYPE)
e1:SetValue(TYPE_NORMAL)
c:RegisterEffect(e1)
lo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, when a card or effect is activated (except during the Damage Step): You can Tribute 1 "Dark Magician" or 1 "Dark Magician Girl"; Special Summon 1 "Dark Magician" or 1 "Dark Magician Girl" from your hand or GY, with a different name from the Tributed monster, and if you do, negate that activated effect. I... | --マジシャンズ・コンビネーション
--Magicians' Combination
--Scripted by Larry126
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)
--Negate that effect
local e2=Effect.CreateEffect(c)
e2:SetDescription(a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target any number of face-down Defense Position monsters you control; change them to face-up Defense Position, count the number of "Ghostrick" monsters among them, and if you do, change up to that many face-up monsters your opponent controls to face-down Defense Position (min. 1). | --ゴーストリック・パニック
--Ghostrick Scare
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER_E)
e1:SetTa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Rock monster + 1 Level 4 or lower monster Must first be Special Summoned with "Fossil Fusion". This card can make up to 2 attacks on monsters during each Battle Phase. You can banish this card from your GY; add 1 "Time Stream" from your Deck to your hand. You can only use this effect of "Fossil Warrior Skull Bone" on... | --新生代化石騎士 スカルポーン
--Fossil Warrior Skull Bone
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsRace,RACE_ROCK),aux.FilterBoolFunctionEx(Card.IsLevelBelow,4)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Face-up monsters your opponent controls that were not Summoned this turn become Insect. You can only use each of the following effects of "Insect Invitation" once per turn. You can target 3 of your banished Insect monsters; shuffle them into the Deck, then draw 1 card. During the End Phase, if this card is in the GY be... | --Japanese name
--Insect Invitation
--Scripted by The Razgriz
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)
--Face-up monsters your opponent controls that were not Summoned this turn bec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 4 LIGHT monsters You can also Xyz Summon this card by using a "Number 39: Utopia" you control as the Xyz Material. (Xyz Materials attached to that monster also become Xyz Materials on this card.) If your opponent's LP is at least 3000 higher than yours: You can detach 3 Xyz Materials from this card and pay LP s... | --SNo.39 希望皇ホープONE
--Number S39: Utopia Prime
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 3 Level 4 LIGHT monsters OR 1 "Number 39: Utopia" you control
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_LIGHT),4,3,s.ovfilter,aux.Stringid(id,0))
-... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have 2 or more other cards in your hand: Banish your entire hand; add 1 Spell from your Deck to your hand. You cannot Set Spells/Traps during the turn you activate this card. | --左腕の代償
--Left Arm Offering
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 DARK monster; Special Summon 1 "Infernity" monster from your Deck or GY with the same Level but a different name, but negate its effects. During your Main Phase, except the turn this card was sent to the GY: You can banish this card from your GY, then target 1 "Infernity" monster in your GY; add it to your ha... | --インフェルニティ・パラノイア
--Infernity Paranoia
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate 1 of these effects; ● If you control a "Tistina" monster: Banish 1 card from your opponent's GY, face-down. ● If you control a "Tistina" monster Special Summoned from the Extra Deck: Banish all cards from your opponent's GY, face-down. You can banish this card from your GY, then target 1 "Tistina" monster in y... | --ティスティナの変晶
--Discordance of the Tistina
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Banish card(s) from opponent's GY face-down
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a face-up "Chronomaly" monster(s) you control is destroyed by battle or by a card effect and sent to the Graveyard: Special Summon 1 Level 4 or lower "Chronomaly" monster from your Deck in face-up Defense Position. It cannot change its battle position. | --ストーンヘンジ・メソッド
--Stonehenge Methods
local s,id=GetID()
function s.initial_effect(c)
--Special summon 1 "Chronomaly" monster from deck
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetCode(EVENT_DESTROYED)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish 1 Dragon-Type monster and 1 Wyrm-Type monster from your Graveyard; Special Summon 1 "Xyz-Raypierce" from your hand or Deck. If this card is sent from the field to the Graveyard: You can inflict 500 damage to your opponent. You can only use each effect of "Xyz-Raypierce" once per turn. | --X-レイ・ピアース
--Xyz-Raypierce
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(s.spcost)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The first time each "Abyss Actor" monster you control would be destroyed by battle each turn, it is not destroyed. Once per turn: You can target 1 "Abyss Actor" monster you control; your opponent cannot target it with card effects until the end of their turn (even if this card leaves the field). If this Set card in its... | --魔界大道具「ニゲ馬車」
--Abyss Prop - Wild Wagon
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)
--The first time each "Abyss Actor" monster you control would be destroyed by battle each turn, it i... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can reveal 3 "Spellbook" Spells in your hand; Special Summon this card from your hand. Once per turn: You can banish 1 "Spellbook" Spell from your hand or GY, then target 1 card on the field; destroy that target. | --魔導法士 ジュノン
--High Priestess of Prophecy
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCost(s.spcost)
e1:SetTarget(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the GY as material for the Link Summon of a Cyberse monster: You can Special Summon this card, but banish it when it leaves the field. When an attack is declared involving your Link Monster and an opponent's Link Monster: You can banish this card from your GY; negate that attack, and if you do, ... | --ファイアウォール・ガーディアン
--Firewall Guardian
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from GY
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetCode(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Set 1 Continuous Trap from your hand or GY. It can be activated this turn. If this card is sent to the GY: You can activate this effect; face-up Traps you control cannot be destroyed by your opponent's card effects, until the end of the next turn. | --賢瑞官カルダーン
--Qardan the Clear-Sighted
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Set 1 Continuous Trap from hand or GY
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:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have any Cyberse Link Monsters in your GY: Place 1 counter on this card for each of those monsters, and if you do, Special Summon 1 "Code Talker" monster from your Extra Deck, and equip it with this card. When this card leaves the field, destroy the equipped monster. Once per turn, during your End Phase: Remove ... | --リミット・コード
--Limit Code
--scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x47)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_COUNTER+CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares an attack: You can send this card from your hand or face-up field to the GY; Special Summon 1 Level 7 LIGHT Dragon monster from your hand. (Quick Effect): You can banish this card from your GY, then target 1 Level 7 LIGHT Dragon monster you control or in your GY; return it to your ha... | --ホーリーナイツ・フラムエル
--Starry Knight Flamel
--Scripted by DyXel
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Level 7 LIGHT Dragon monster from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All Insect-Type monsters you control gain 300 ATK and DEF. You can target 1 Insect-Type Xyz Monster you control; attach 1 Insect-Type monster from your hand to that monster as Xyz Material. You can only use this effect of "Bug Matrix" once per turn. | --光虫基盤
--Bug Matrix
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)
--atkup
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetRange(L... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Evil HERO Malicious Edge" + 1 Level 6 or higher Fiend monster Must be Special Summoned with "Dark Fusion". During your opponent's Battle Phase, all monsters they control are changed to face-up Attack Position, and each monster they control must attack this card, if able. | --E-HERO マリシャス・デビル
--Evil HERO Malicious Fiend
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion material
Fusion.AddProcMix(c,true,true,58554959,s.ffilter)
--lizard check
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetCode(CARD_CLOCK_LIZARD)
e0:SetProperty(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 WATER Tuner + 1+ non-Tuner monsters (Quick Effect): You can activate this effect; face-up monsters you control cannot be destroyed, or banished, by your opponent's card effects this turn. Then, if you activated this effect in response to your opponent's card or effect activation, and your opponent has a card(s) with ... | --氷水啼エジル・ギュミル
--Icejade Gymir Aegirine
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--1 WATER Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),1,1,Synchro.NonTuner(nil),1,99)
--Apply monster protection
loca... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.