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: | Equip only to a Level 3 or lower WATER monster. If it destroys an opponent's monster by battle, send 1 random card in your opponent's hand to the Graveyard. | --ハイドロプレッシャーカノン
--Hydro Pressure Cannon
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,s.filter)
--handes
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(id,0))
e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e3:SetRange(LOCATION_SZONE)
e3:SetCategory(CATEGORY_TOGR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Until the end of this turn, the ATK of all "Harpie Lady Sisters" currently on the field becomes 2700, your opponent cannot activate any Trap Cards, also negate all your opponent's Trap effects on the field. | --トライアングル・X・スパーク
--Triangle Ecstasy Spark
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
s.list... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay 300 Life Points to use this card's effect. Shuffle either your or your opponent's Deck. You can only use this effect during your turn, once per turn. | --ショット・ガン・シャッフル
--Card Shuffle
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYPE_IGNITION)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] When your monster is targeted for an attack: You can target 1 of your "Metaphys" monsters that is banished or in your GY; banish this card, and if you do, Special Summon that monster in Attack Position. You can only use this effect of "Metaphys Decoy Dragon" once per turn. --------------------------... | --メタファイズ・デコイドラゴン
--Metaphys Decoy Dragon
--
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--special summon
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)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent draws for their normal draw in their Draw Phase: They reveal the card(s) they drew, then if any is a Spell/Trap Card, you apply 1 of these effects. ● Discard all cards they drew. ● Destroy 1 Spell/Trap Card they control. | --剣の采配
--Commander of Swords
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_HANDES+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_DRAW)
e1:SetCondition(s.condition)
e1:SetTarget(s.targe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must first be Special Summoned with "Elegant Egotist". | --ハーピィ・レディ三姉妹
--Harpie Lady Sisters
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent cannot target "Mitsurugi" Ritual Monsters you control with effects of monsters that were Special Summoned from the Extra Deck. You can target 4 "Mitsurugi" cards in your GY, except "Mitsurugi Sacred Boundary"; shuffle them into the Deck, then if your opponent controls a monster, make them Tribute 1 monste... | --巳剣之磐境
--Mitsurugi Sacred Boundary
--Scripted by Hatter
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)
--Your opponent cannot target "Mitsurugi" Ritual Monsters you control with effects ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 "Rose Dragon" monster from your hand or GY, except "White Rose Dragon". You can only use each of these effects of "White Rose Dragon" once per turn: ● If you control a Dragon Tuner or Plant Tuner: You can Special Summon this card from your hand. ● If this card... | --ホワイトローズ・ドラゴン
--White Rose Dragon
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself, ignition effect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All "Deskbot" monsters on the field gain 500 ATK and DEF. Once per turn: You can reveal any number of "Deskbot" cards in your hand and shuffle them into the Deck, then draw the same number of cards. You can banish 9 "Deskbot" cards with different names from your field and/or Graveyard, except "Deskbot Base"; shuffle al... | --ブンボーグ・ベース
--Deskbot Base
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:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when your opponent's monster declares an attack if you have 2 or more "Iron Core of Koa'ki Meiru" in your Graveyard. Destroy all face-up Attack Position monsters your opponent controls. | --コアキメイルの障壁
--Koa'ki Meiru Shield
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_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 2 monsters You can detach 1 material from this card, then target 1 face-up monster your opponent controls; until the end of this turn, change its ATK to 0, also negate its effects. This is a Quick Effect if this card has a "The Phantom Knights" card as material. You can only use this effect of "The Phantom Knig... | --幻影騎士団カースド・ジャベリン
--The Phantom Knights of Cursed Javelin
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Xyz.AddProcedure(c,nil,2,2)
--Negate effects and reduce ATK
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DISABLE)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per battle, if this card battles, during damage calculation (Quick Effect): You can send 1 card from your hand to the GY; this card gains 600 ATK during that damage calculation only. | --魔轟神アシェンヴェイル
--Fabled Ashenveil
local s,id=GetID()
function s.initial_effect(c)
--attack up
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetCondition... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When exactly 1 monster with 1500 or less ATK is Special Summoned to your field while your opponent controls a face-up monster: Special Summon as many monsters as possible with the same name as the Summoned monster, from your hand, Deck, and Graveyard, in Attack Position, also your opponent Special Summons as many monst... | --地獄の暴走召喚
--Inferno Reckless Summon
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can activate this card when a Field Spell Card is activated. Negate the Field Spell Card during the turn this card is activated. | --世界の平定
--World Suppression
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.condition(e,tp,eg,ep,ev,re,r,rp)
return ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, when an opponent's monster declares an attack: You can Tribute 1 "Performapal" monster; negate the attack, then end the Battle Phase. ---------------------------------------- [ Monster Effect ] If a "Performapal" or "Odd-Eyes" monster you control attacks, your opponent cannot activate... | --EMホタルクス
--Performapal Fireflux
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--actlimit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EFFECT_CANNOT_ACTIVATE)
e1:SetRange(LOCATION_MZONE)
e1:SetTar... |
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 Level 4 or lower "Magnet Warrior" monster from your Deck to the GY. If this card is sent to the GY: You can banish 3 Level 4 or lower "Magnet Warrior" monsters from your GY, except "Delta The Magnet Warrior"; Special Summon 1 "Valkyrion the Magna Warrior" from ... | --磁石の戦士δ
--Delta The Magnet Warrior
local s,id=GetID()
function s.initial_effect(c)
--to grave
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetCode(EVENT_SUMMON_SUCC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Chaos Form". You can reveal this card in your hand; add 1 "Dark Magician", or 1 non-Ritual Monster that mentions it, from your Deck to your hand, then place 1 card from your hand on top of the Deck. When your opponent activates a monster effect (Quick Effect): You can return this c... | --イリュージョン・オブ・カオス
--Illusion of Chaos
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Search
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn, if your opponent Summoned 3 or more monsters this turn: You can Special Summon this card from your hand. If Summoned this way, it is unaffected by other cards' effects, but loses 500 DEF during each player's Standby Phase. | --機動要犀 トリケライナー
--Trifortressops
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] During your Main Phase: You can destroy this card, and if you do, take 1 "Timegazer Magician" from your hand or Deck, and either place it in your Pendulum Zone or Special Summon it. You can only use this effect of "Chronograph Sorcerer" once per turn. ---------------------------------------- [ Monst... | --クロノグラフ・マジシャン
--Chronograph Sorcerer
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
--Take 1 "Timegazer Magician" and either place it in the Pendulum zone or Special Summon it
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reveal 1 "Fossil Fusion" in your hand; send 1 monster from your hand to the GY, and if you do, declare a Type and a Level, then your opponent looks at their hand and Deck, and sends 1 monster with the declared Type and Level from one of them to the GY (if possible). You can only activate 1 "Specimen Inspection" per tur... | --標本の閲覧
--Specimen Inspection
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCountLimit(1,id)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can attack twice during each Battle Phase. Any monster that battles with this card cannot change its battle position. | --エレキツツキ
--Wattwoodpecker
local s,id=GetID()
function s.initial_effect(c)
--Can make a second attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_EXTRA_ATTACK)
e1:SetValue(1)
c:RegisterEffect(e1)
--Monsters this card battled cannot change their battle positions
local e2=Effec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Any effect that would inflict damage to a player increases their Life Points by the same amount, instead. During either player's turn, when a card or effect is activated that would destroy a monster(s) on the field: You can send 1 card from your hand to the Graveyard; negate the activation, and if you do, destroy it. | --マテリアルドラゴン
--Prime Material Dragon
local s,id=GetID()
function s.initial_effect(c)
--Negate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can increase this card's Level by 1 and ATK by 400, until the End Phase. This effect can only be used once while this card is face-up on the field. | --ゼンマイソルジャー
--Wind-Up Soldier
local s,id=GetID()
function s.initial_effect(c)
--atk/lv up
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_NO_TURN_RESET)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Aleister the Invoker" + 1 FIRE monster This card gains 200 ATK for each card your opponent controls. Can attack all monsters your opponent controls, once each. If this card attacks a Defense Position monster, inflict piercing battle damage to your opponent. | --召喚獣プルガトリオ
--Invoked Purgatrio
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,86120751,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_FIRE))
--atk
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a "Six Samurai" monster. It gains 200 ATK and DEF. If it would be destroyed, destroy this card instead. | --漆黒の名馬
--Legendary Ebon Steed
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsSetCard,SET_SIX_SAMURAI))
--Atk,def up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(200)
c:RegisterEffect(e2)
loc... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) that was originally an EARTH Fairy is sent from your hand or field to the GY (except during the Damage Step): You can Special Summon this card from your hand. You can only use this effect of "Thron the Disciplined Angel" once per turn. | --聖座天嗣ストン
--Thron the Disciplined Angel
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_... |
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 Tributing all monsters you control. This card's ATK becomes the combined original ATK of the Tributed monsters. If this card attacks a Defense Position monster, inflict piercing battle damage. | --真魔獣 ガーゼット
--Legendary Maju Garzett
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--spsummon 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:RegisterEffect(e... |
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 "Super Quant" card from your Deck to your hand, except "Super Quantum Blue Layer". If this card is sent to the Graveyard: You can target up to 3 "Super Quant" cards in your Graveyard; shuffle them into the Deck. You can only use each effect of "Super Quantum B... | --超量士ブルーレイヤー
--Super Quantum Blue Layer
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCountL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Blue-Eyes Ultimate Dragon" or 3 "Blue-Eyes" monsters + 1 "Chaos" or "Black Luster Soldier" Ritual Monster Must be Fusion Summoned. When your opponent activates a card or effect (Quick Effect): You can negate the activation, and if you do, destroy that card. You can only use this effect of "Dragon Master Magia" in resp... | --究極竜魔導師
--Dragon Master Magia
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Summon procedure ("Blue-Eyes Ultimate Dragon")
local f0=Fusion.AddProcMix(c,true,true,23995346,s.ffilter)[1]
f0:SetDescription(aux.Stringid(id,0))
--Fusion Summon procedure (3 "Blu... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Monsters destroyed by battle with "Kozmo" monsters you control are shuffled into the Deck instead of going to the Graveyard. You can banish this card from your Graveyard; the first time you would take battle damage from a battle involving a "Kozmo" monster you control this turn, gain that much LP, instead. | --Kozmo-エピローグ
--Kozmourning
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)
--to deck
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOCATION_SZONE)
e2:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can send 1 "Tistina" monster from your Deck to your GY, then if your opponent controls 3 or more face-up cards, you can Special Summon 1 "Crystal God Tistina" from your hand or Deck. You can only use this effect of "Divine Domain Baatistina" once per turn. If this card in your Field Zone is ... | --神域 バ=ティスティナ
--Divine Domain Baatistina
--Scripted by Hatter
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)
--Send 1 “Tistina” monster to the GY
local e2=Effect.CreateEffect(c)
e2:SetD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you control a Fairy-Type monster other than "Freya, Spirit of Victory", your opponent's monsters cannot target this card for attacks. All Fairy-Type monsters you control gain 400 ATK and DEF. | --勝利の導き手フレイヤ
--Freya, Spirit of Victory
local s,id=GetID()
function s.initial_effect(c)
--atk def
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetTarget(s.tg)
e1:SetValue(400)
c:RegisterEffect(e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (Quick Effect): You can banish this card; Special Summon 1 Level 6 or higher "Kozmo" monster from your hand. You can only use this effect of "Kozmoll Dark Lady" once per turn. Once per turn, when another monster's effect is activated (Quick Effect): You can pay 1000 LP; negate the activation, and if you do, destroy tha... | --Kozmo-ダーク・エルファイバー
--Kozmoll Dark Lady
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:SetCountLim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 non-EARTH "Sky Striker Ace" monster If this card is Special Summoned: You can target 1 face-up monster your opponent controls; it cannot attack until the end of your opponent's turn. Each time you activate a "Sky Striker" Spell Card, or its effect, gain 100 LP immediately after the card or effect resolves. You can on... | --閃刀姫-カイナ
--Sky Striker Ace - Kaina
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Can only Special Summon "Sky Striker Ace - Kaina" once per turn
c:SetSPSummonOnce(id)
--Link Summon procedure
Link.AddProcedure(c,s.matfilter,1,1)
--Targeted monster cannot attack
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares a direct attack: You can Special Summon this card from your hand. When this card is targeted for an attack: You can discard 1 card; this card cannot be destroyed by that battle. | --ガガガガードナー
--Gagaga Gardna
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetRange(LOCATION_HAND)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During each of your End Phases, destroy this card unless you send 1 "Iron Core of Koa'ki Meiru" from your hand to the GY or reveal 1 Dragon monster in your hand. Neither player can Special Summon LIGHT or DARK monsters. | --コアキメイル・ドラゴ
--Koa'ki Meiru Drago
local s,id=GetID()
function s.initial_effect(c)
--cost
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EVENT_PHASE+PHASE_END)
e1:SetCountLimit(1)
e1:SetRange(LOCATIO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "Artifact" monster from your Deck. If this card in your possession is destroyed by your opponent: You can target 1 card on the field; destroy that target. You can only activate 1 "Artifact Sanctum" per turn. You cannot conduct your Battle Phase the turn you activate this card. * The above text is unoff... | --アーティファクトの神智
--Artifact Sanctum
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:SetHintTiming(0,TIMINGS_CHECK_MONSTER_E|TIMING... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Effect Monsters During your Main Phase: You can Fusion Summon 1 Fusion Monster from your Extra Deck, using monsters from your field as Fusion Material. If a Fusion Monster(s) is Fusion Summoned to a zone(s) this card points to: You can Special Summon 1 monster with 1000 or less ATK from your hand. You can only use ea... | --プロキシー・F・マジシャン
--Proxy F Magician
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Link Summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2,2)
c:EnableReviveLimit()
--Fusion Summon
local params = {nil,Fusion.OnFieldMat}
local e1=Effect.CreateEffect(c)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the End Phase, if this card was Normal Summoned this turn: You can add 1 EARTH Pendulum Monster from your Deck to your hand. If this card was Normal Summoned, during the End Phase of the Summoning player's next turn: You can Tribute this card; add 1 EARTH monster from your Deck to your hand. | --フロント・オブザーバー
--Frontline Observer
local s,id=GetID()
function s.initial_effect(c)
--tohand
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.regop)
c:RegisterEffect(e1)
end
function ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the GY: You can activate 1 of these effects. ● Target 1 face-up monster your opponent controls; change that target to face-down Defense Position. ● Target 1 face-up Spell/Trap your opponent controls; return that target to the hand. This turn, your opponent cannot activate cards with the same nam... | --タックルセイダー
--Tackle Crusader
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_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY)
e1:SetCode(EVENT_TO_GRAVE)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a Level 5 or higher Plant-Type monster you control is destroyed, you can Special Summon this card from the Graveyard. | --返り咲く薔薇の大輪
--Revival Rose
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetRange(LOCATION_GRAVE)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Changes the battle positions of all Attack Position monsters on the field to Defense Position and vice-versa. These positions cannot be changed during the turn this card is activated except by the effect of a Spell, Trap or Effect Monster Card. You can activate this card only during your Standby Phase. | --邪悪な儀式
--Curse of Fiend
local s,id=GetID()
function s.initial_effect(c)
--Change the battle position of all the monsters on field
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_STANDBY_PHASE)
e1:SetCondition... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This monster may attack your opponent's Life Points directly. | --レッグル
--Leghul
local s,id=GetID()
function s.initial_effect(c)
--direct attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DIRECT_ATTACK)
c:RegisterEffect(e1)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Dragunity" Tuner + 1+ non-Tuner monsters If this card is Special Summoned: You can target 1 "Dragunity" monster in your GY; equip it to this card. If this card is sent to the GY: You can target 1 "Dragunity" monster you control; equip this card to that target. It gains 1000 ATK/DEF. You can only use each effect of "... | --ドラグニティナイト-ハールーン
--Dragunity Knight - Luin
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterBoolFunction(Card.IsSetCard,SET_DRAGUNITY),1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--equip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no monsters, or all monsters you control are Fairy monsters: You can Special Summon this card from your hand. You can Tribute any number of Fairy monsters, including this card; Special Summon 1 Fairy monster from your Deck whose Level equals the total Levels those monsters had on the field. You cannot Sp... | --暁天使カムビン
--Dawn Angel Kambi
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters The first time this card would be destroyed by an opponent's card effect each turn, it is not destroyed. Once per turn, during your opponent's Battle Phase (Quick Effect): You can discard 1 card; this card gains ATK equal to half the total ATK of all other monsters you currently control,... | --コンバット・ホイール
--Combat Wheel
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x20e)
c:EnableReviveLimit()
--1 Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Cannot be destroyed by card effect once per turn
local e1=Effect.Create... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by targeting 1 Machine monster on the field; while this card is face-up on the field, that Machine monster gains 500 ATK, also negate the first Spell effect that targets that monster. When that monster leaves the field, destroy this card. | --レアメタル化・魔法反射装甲
--Rare Metalmorph
local s,id=GetID()
function s.initial_effect(c)
--Equip procedure
aux.AddPersistentProcedure(c,0,s.filter,CATEGORY_ATKCHANGE,EFFECT_FLAG_DAMAGE_STEP,nil,TIMING_DAMAGE_STEP,aux.StatChangeDamageStepCondition,nil,nil,s.operation)
--Increase ATK
local e1=Effect.CreateEffect(c)
e1:SetT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Utopic Future" Xyz Monster you control; apply the following effect(s) to that monster you control for the rest of this turn. ● It can attack all monsters your opponent controls once each. ● If it battles an opponent's monster, that monster's effects are negated during the Damage Step only. ● Each time it dest... | --フューチャー・ドライブ
--Future Drive
--Scripted by Eerie Code
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:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTarget(s.targe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by Tributing 1 "Airknight Parshath". If this card attacks a Defense Position monster, inflict piercing battle damage. If this card inflicts battle damage to your opponent: Draw 1 card. While "The Sanctuary in the Sky" is on the field and your LP is higher than your oppo... | --天空勇士ネオパーシアス
--Neo-Parshath, the Sky Paladin
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
e1:SetTarget(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Machine monster you control; equip 1 appropriate Machine Union monster from your hand or Deck to that monster, but the Union monster you equipped cannot be Special Summoned this turn. You can only activate 1 "Unauthorized Reactivation" per turn. | --無許可の再奇動
--Unauthorized Reactivation
--Scripted by Hel
local s,id=GetID()
function s.initial_effect(c)
--Equip 1 Union monster to a Machine monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You can discard 1 card; Special Summon 1 "Symphonic Warrior" monster from your Deck, except "Symphonic Warrior Guitaar". You can only use this effect of "Symphonic Warrior Guitaar" once per turn. ---------------------------------------- [ Monster Effect ] When this card is Normal Summoned: You can t... | --音響戦士ギータス
--Symphonic Warrior Guitaar
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_SPECIAL_SUMMON)
e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_PZONE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can target 1 face-up monster your opponent controls; it gains ATK equal to its original ATK, also during the End Phase of the next turn, destroy that face-up monster, and if you do, your opponent takes damage equal to half its original ATK. At the start of your opponent's Battle P... | --カシモラル
--Cassimolar
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Increase ATK, destroy, and inflict damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DESTROY+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 1 monsters During your Main Phase 1: You can detach 1 Xyz Material from this card, then target 1 Level 1 monster you control; it can attack your opponent directly. | --ベビー・トラゴン
--Baby Tiragon
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,1,3)
c:EnableReviveLimit()
--attack up
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATIO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Standby Phase, if this card is in your Graveyard and you do not control "Treeborn Frog": You can Special Summon this card. You must control no Spell/Trap Cards to activate and to resolve this effect. | --黄泉ガエル
--Treeborn Frog
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_FIELD)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetCode(EVENT_PHASE|PHASE_STANDBY)
e1:SetRange(LOCATION_GRA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have no cards in your hand, you can activate this card the turn it was Set. When your opponent activates a monster effect while you control an "Infernity" monster: Negate the effect, then, you can inflict damage to your opponent equal to the activating monster's Level x 100. You can only activate 1 "Infernity Su... | --インフェルニティ・サプレッション
--Infernity Suppression
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--Negate monster effect and inflict damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DISABLE+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:Set... |
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, during the End Phase of this turn, you can add 1 "Virtual World" monster from your GY to your h... | --電脳堺豸-豸々
--Virtual World Xiezhi - Jiji
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_SPECIAL_SUMMON+CATEGORY_TOHAND)
e1:SetProperty(EFFECT_FLAG_CARD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy all monsters your opponent controls. | --サンダー・ボルト
--Raigeki
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.target(e,tp,eg,ep,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned with "Contract with Exodia", and cannot be Special Summoned by other ways. Cannot be destroyed by battle or Spell/Trap effect. Once per turn, during your Standby Phase: This card gains 500 ATK. Destroy this card unless all 5 of these cards are in your Graveyard - ... | --エクゾディア・ネクロス
--Exodia Necross
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--cannot destroy
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetValue(1)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You take no battle damage this turn. Your monsters cannot be destroyed by battle this turn. | --和睦の使者
--Waboku
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:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.activate(e,tp,eg,ep,ev,re,r,rp)
local e1=Effect.CreateEffect(e:GetHandler())
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Face-down Defense Position monsters in this card's column cannot change their battle positions, also neither player can activate the Set cards in the Spell & Trap Zones in this card's column. You can only use each of the following effects of "Procession of the Tea Jar" once per turn. During your Main Phase: You can mov... | --童妖 茶壺
--Procession of the Tea Jar
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Face-down Defense Position monsters in this card's column cannot change battle positions
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_SET_AVAILABLE)
e1:SetCode(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 or more Level 3 LIGHT Insect-Type monsters Once per turn, during either player's turn: You can detach 2 Xyz Materials from this card, then target 1 monster your opponent controls; change its battle position, and if you do, it has its effects negated until the end of this turn. Once per turn, when this card destroys a... | --電子光虫-スカラジエータ
--Digital Bug Scaradiator
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,s.matfilter,3,2,nil,nil,Xyz.InfiniteMats)
c:EnableReviveLimit()
--Position+Negate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
... |
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-LIGHT monsters. | --シャインスピリッツ
--Radiant Spirit
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:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 9 monsters If this card has a "Cipher" card as Xyz Material, it gains this effect. ● Once per turn: You can detach up to 3 Xyz Materials from this card; monsters you control cannot attack your opponent directly for the rest of this turn, except this card, also for each Material detached, take control of 1 oppon... | --超銀河眼の光波龍
--Neo Galaxy-Eyes Cipher Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 3 Level 9 monsters
Xyz.AddProcedure(c,nil,9,3)
--Monsters you control cannot attack your opponent directly for the rest of this turn, except this card, also for each Material deta... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All "Crystal Beast" monsters on the field and in the GY become DARK. If an "Ultimate Crystal" monster attacks, negate the effects of the attack target during that Battle Phase. During damage calculation, if a "Crystal Beast" monster you control battles and you would take damage: You can send 1 "Crystal Beast" monster f... | --アドバンスド・ダーク
--Advanced Dark
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)
--Change Attribute to DARK
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOCATIO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Ancient Gear Golem" + 2 "Ancient Gear" monsters Must be Fusion Summoned. If this card attacks a Defense Position monster, inflict piercing battle damage. If this card attacks, your opponent cannot activate Spell/Trap Cards until the end of the Damage Step. If this card is destroyed: You can target 1 "Ancient Gear Gole... | --古代の機械究極巨人
--Ultimate Ancient Gear Golem
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: "Ancient Gear Golem" + 2 "Ancient Gear" monsters
Fusion.AddProcMixN(c,true,true,CARD_ANCIENT_GEAR_GOLEM,1,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_ANCIENT_GEAR),2)
--spsummon condit... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy this card during your 3rd Standby Phase after activation. Once per turn, if "Cyber Dragon" is on the field: You can banish 1 LIGHT Machine monster from your Deck. If this card is sent from the field to the GY: Special Summon as many of your banished LIGHT Machine monsters as possible, and if you do, destroy all... | --サイバー・ネットワーク
--Cyber Network
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,TIMINGS_CHECK_MONSTER|TIMING_END_PHASE)
e1:SetTarget(s.acttg)
e1:SetOperation(s.operation)
c:RegisterEffect(e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can send 1 Spell/Trap from your Deck to the GY. If this card is sent from the hand or Deck to the GY: You can target 1 "Tindangle" monster in your GY, except "Tindangle Dholes"; Special Summon it in face-down Defense Position. You can only use each of the preceding effects of "Tindangle Dholes" once per turn.... | --ティンダングル・ドールス
--Tindangle Dholes
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG... |
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".) Cannot be destroyed by card effects. During either player's turn: You can return this ca... | --聖霊獣騎 ペトルフィン
--Ritual Beast Ulti-Pettlephin
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.c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Spell/Trap Card, or monster effect, is activated on the field: Pay half your LP; negate the activation, and if you do, destroy that card, then destroy any other cards in the same column the destroyed card was in, that are in the Monster Zones or Spell & Trap Zones. | --鉄騎の雷鎚
--Iron Thunder
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Negate an activation, destroy the card and all cards in the same column
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 "Arcana Force" monsters with different names Must be Special Summoned (from your Extra Deck) by sending the above cards from either field to the GY. If this card is Special Summoned: Toss a coin. ● Heads: Special Summon 1 Level 10 "Arcana Force" monster from your hand or Deck, ignoring its Summoning conditions. ● Tai... | --アルカナフォースEX-THE CHAOS RULER
--Arcana Force EX - The Chaos Ruler
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: 3 "Arcana Force" monsters with different names
Fusion.AddProcMixN(c,true,true,s.ffilter,3)
Fusion.AddContactProc(c,s.contactfil,s.conta... |
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 take 500 damage. | --暴鬼
--Abaki
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_DAMAGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetCondition(s.condition)
e1:SetTarget(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Set this card from your hand to your Spell & Trap Zone as a Spell Card. During your opponent's turn, if this Set card in the Spell & Trap Zone is destroyed and sent to your Graveyard: Special Summon it. If this card is Special Summoned during your opponent's turn: Destroy up to 2 Set cards you control (min. 1).... | --アーティファクト-ベガルタ
--Artifact Beagalltach
local s,id=GetID()
function s.initial_effect(c)
--set
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MONSTER_SSET)
e1:SetValue(TYPE_SPELL)
c:RegisterEffect(e1)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If the equipped monster battles an opponent's monster, while that monster is on the field its effect(s) is negated during the Battle Phase only. | --レインボー・ヴェール
--Rainbow Veil
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--disable
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e3:SetCode(EVENT_BE_BATTLE_TARGET)
e3:SetRange(LOCATION_SZONE)
e3:SetCondition(s.discon1)
e3:SetOperation(s.disop1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Tuner in either GY and 1 face-up monster on the field; banish that Tuner in the GY, then, until the end of this turn, the Level of the targeted monster on the field becomes the Level of the banished Tuner, also it is treated as a Tuner. You can only activate 1 "Uni-Song Tuning" per turn. | --ユニゾン・チューン
--Uni-Song Tuning
--scripted Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,id,EFFECT_COUNT_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 5 monsters Once per turn: You can target 1 Special Summoned monster your opponent controls; attach it to this card as material. When this card is destroyed and sent to the GY while it has material: You can Special Summon this card from your GY, then gain LP equal to the original ATK of this card. "Number 101: S... | --CNo.101 S・H・Dark Knight
--Number C101: Silent Honor DARK
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Xyz summon procedure
Xyz.AddProcedure(c,nil,5,3)
--Attach 1 of opponent's special summoned monsters to this card as material
local e1=Effec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned, Trap Cards cannot be activated. Also, "Trap Hole" Trap Cards cannot be activated when a monster is Summoned, except "Dark Trap Hole". | --ゴブリン穴埋め部隊
--Goblin Pothole Squad
local s,id=GetID()
function s.initial_effect(c)
--summon success
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetOperation(s.sumsuc)
c:RegisterEffect(e1)
--activate limit
local e2=Effect.CreateEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a Normal Summoned/Set monster you control. It is unaffected by your opponent's activated effects of Special Summoned monsters. During damage calculation, if the equipped monster battles an opponent's Special Summoned monster: That opponent's monster loses ATK/DEF equal to the equipped monster's original A... | --モルトシュラーク
--Mordschlag
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,0,aux.FilterBoolFunction(Card.IsSummonType,SUMMON_TYPE_NORMAL))
--immune
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_IMMUNE_EFFECT)
e1:SetValue(s.immval)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute any number of DARK monsters; Special Summon this card from your hand, and if you do, it gains 500 ATK for each monster you Tributed. If this card is Normal or Special Summoned: You can target 1 Level 5 or higher DARK monster in your GY; add it to your hand. You can only use each effect of "Duke Shade, t... | --影王デュークシェード
--Duke Shade, the Sinister Shadow Lord
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCost(s.spcost)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must first be Special Summoned (from your hand) by banishing 1 WIND monster from your GY. Once per turn, during your opponent's End Phase: You can target 1 face-up monster your opponent controls; change that target's battle position. | --風の精霊 ガルーダ
--Garuda the Wind Spirit
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--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)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase, you can Normal Summon 1 "Traptrix" monster, in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) The first time each Insect or Plant monster you control would be destroyed by battle each turn, it is not destroyed. You can banish 1 monster you control; Special Sum... | --蟲惑の園
--Traptrip Garden
--Scripted by Hatter
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)
--Can Normal Summon 1 additional "Traptrix" monster
local e2=Effect.CreateEffect(c)
e2:SetDe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gain 1000 LP for each "Aroma" monster you control with a different name. You can banish this card from your GY, then target 1 "Aroma" monster in your GY; Special Summon it (but banish it when it leaves the field), then gain 500 LP. You can only use 1 "Aroma Healing" effect per turn, and only once that turn. | --アロマヒーリング
--Aroma Healing
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Gain 1000 LP for each different "Aroma" monster you control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card was Special Summoned by the effect of "Dark Lucius LV4", negate the effects of your opponent's monsters destroyed by battle with this card. Once per turn, during the Standby Phase of your next turn after this card negated your opponent's monster effect by this effect: You can send this card to the GY; Spec... | --漆黒の魔王 LV6
--Dark Lucius LV6
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.disop)
c:RegisterEffect(e1)
--special summon
local e2=Effect.Crea... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can activate 1 of these effects. You can only use this effect of "D/D Lilith" once per turn. ● Target 1 "D/D" monster in your Graveyard; add it to your hand. ● Add 1 face-up "D/D" Pendulum Monster from your Extra Deck to your hand. | --DDリリス
--D/D Lilith
local s,id=GetID()
function s.initial_effect(c)
--Add to hand
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no other monsters: You can Tribute this card to target 1 monster your opponent controls; take control of that target until the End Phase. You cannot Special Summon or conduct your Battle Phase during the turn you activate this effect. | --はぐれ者傭兵部隊
--Missing Force
local s,id=GetID()
function s.initial_effect(c)
--control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_CONTROL)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.condi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 monster your opponent controls; your opponent cannot Tribute it, or use it as a Synchro Material Monster. | --五稜星の呪縛
--Curse of the Circle
local s,id=GetID()
function s.initial_effect(c)
--remove
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER)
e1:SetTarget(s.t... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reveal 1 "Ultimate Crystal" monster in your hand, then activate 1 of these effects. If you control an "Ultimate Crystal" monster, you can activate 1 or 2 of these effects in sequence, instead (and do not have to reveal a monster). ● Take 1 "Rainbow Bridge" card or 1 "Rainbow Refraction" from your Deck, and either add i... | --宝玉神覚醒
--Awakening of the Crystal Ultimates
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCountLimit(1,id... |
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 6 or lower Fish monster from your hand in Defense Position, but banish it when it leaves the field. If this card is banished: You can Special Summon this card in Defense Position. You can only use this effect of "Aspischool" once per turn. | --アスピスクール
--Aspischool
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Level 6 or lower Fish monster from your hand in Defense Position, but banish it when it leaves the field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 LIGHT monster + 2 monsters, except on the field or in the GY This Fusion Summoned card cannot be destroyed by battle. As long as no monsters on your field or GY share an original name with any monster on your opponent's field or GY, monsters you control cannot be destroyed by card effects. You can send from your hand... | --Japanese name
--Denial Deity Dotan
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: 1 LIGHT monster + 2 monsters, except on the field or in the GY
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_LIGHT),1,s.matfilter,2)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy this card during your 2nd Standby Phase after activation. When this card resolves, change all monsters your opponent controls to face-down Defense Position. Monsters your opponent controls cannot change their battle positions. | --闇の護封剣
--Swords of Concealing Light
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:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
--Prevent chang... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can target 1 "ZW -" monster you control that is an Equip Card; Special Summon that target in Defense Position. You can target 1 "Utopia" monster you control; equip this card from your hand to that target. When the equipped monster destroys an opponent's monster by battle and sends... | --SZW-天聖輝狼剣
--SZW - Fenrir Sword
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares an attack: Target 1 Spell in your opponent's GY; Set it to your field. You can banish this card from your GY and send 1 "Monster Reborn" from your hand or Set on your field to the GY; Special Summon 1 "The Winged Dragon of Ra" from your GY ignoring its Summoning conditions, then you ... | --暗黒の魔再生
--Dark Spell Regeneration
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_LEAVE_GRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as a "F.A." card.) When this card is activated: You can add 1 "U.A." or "F.A." monster from your Deck to your hand, OR add 1 "U.A. Stadium" from your GY to your hand. You can reveal 1 Field Spell in your hand and pay 1000 LP; you can Normal Summon 1 "U.A." or "F.A." monster during your Main... | --U.A.ハイパー・スタジアム
--U.A. Hyper Stadium
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Search on activation
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:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Madolche" monster in your Graveyard; shuffle that target into the Deck, and if you do, all "Madolche" monsters you currently control gain 800 ATK and DEF, then you can shuffle 1 other monster from your Graveyard into the Deck. | --マドルチェ・マナー
--Madolche Lesson
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTimin... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned: You can return all Rank 4 Xyz Monsters on the field to the Extra Deck. If you Fusion Summon using this card as Fusion Material: Draw 1 card. An Xyz Monster that was Summoned using this card on the field as Xyz Material gains this effect. ● If it is Xyz S... | --古神クトグア
--Old Entity Cthugua
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When you take effect damage (except during the Damage Step): You can Special Summon this card from your hand, then inflict damage to your opponent equal to the damage you took, and if you do, you gain LP equal to half that damage you inflicted. When this card is Tribute Summoned: You can add 2 "Rokket" monsters with di... | --スピードローダー・ドラゴン
--Speedburst Dragon
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DAMAGE+CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this monster is Normal Summoned, destroy this card. If your opponent controls any monster, decrease the ATK of this card by 200 points for each monster on your opponents side of the field. | --女邪神ヌヴィア
--Nuvia the Wicked
local s,id=GetID()
function s.initial_effect(c)
--self destroy
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.destg)
e1:SetOperation(s.desop)
c:RegisterEffect(e1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters During your Main Phase, you can Normal Summon 1 Insect or Plant monster in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) When a monster is destroyed by battle involving your Insect or Plant monster, and sent to the GY: You can target 1 of those destro... | --サークル・オブ・フェアリー
--Circle of the Fairies
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon Procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Additional Normal Summon for Insect or Plant monster
local e1=Effect.CreateEffect(c)
e1:SetDescri... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal or Flip Summoned: You can Special Summon any number of "Skyblaster Tokens" (Fiend/DARK/Level 4/ATK 500/DEF 500), up to the number of monsters you control. Once per turn, during your Standby Phase: You can inflict 300 damage to your opponent for each "Skyblaster" monster you control. "Skyblaster... | --幻銃士
--Phantom Skyblaster
local s,id=GetID()
function s.initial_effect(c)
--Special Summon tokens
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase, if you control this monster on the field, you can equip it to your "Vampiric Orchis" as an Equip Spell Card, OR unequip the Union equipment and Special Summon this card in face-up Attack Position. While equipped to a monster by this card's effect, each time the equipped monster de... | --デス・デンドル
--Des Dendle
local s,id=GetID()
function s.initial_effect(c)
aux.AddUnionProcedure(c,aux.FilterBoolFunction(Card.IsCode,46571052),true)
--token
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,2))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Monsters your opponent controls cannot target "Altergeist" monsters you control for attacks, except "Altergeist Fifinellag", also your opponent cannot target "Altergeist" monsters you control with card effects, except "Altergeist Fifinellag". | --オルターガイスト・フィフィネラグ
--Altergeist Fifinellag
--anime version scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--cannot target
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(0,LOCATION_MZONE)
e1:SetCode(EFFECT_CANNOT_SELECT_BATTLE_TARGE... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.