instruction stringclasses 1
value | input stringlengths 10 1.11k | output stringlengths 67 7.06k |
|---|---|---|
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Set this card from your hand to your Spell & Trap Zone as a Spell. During the End Phase, if this Set card in your Spell & Trap Zone was destroyed by an opponent's card effect and sent to the Graveyard this turn: Special Summon this card. If this card is Flip Summoned: Destroy Spells and Traps on the field, equa... | --トイ・マジシャン
--Toy Magician
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:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTIN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 200 DEF for each "Gravekeeper's" monster in your GY. Negate all monster effects that activate in the GY, except "Gravekeeper's" monsters. While "Necrovalley" is on the field, your opponent cannot activate Field Spell Cards, also Field Spell Cards cannot be destroyed by your opponent's card effects. | --墓守の祈祷師
--Gravekeeper's Shaman
local s,id=GetID()
function s.initial_effect(c)
--def up
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_UPDATE_DEFENSE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetValue(s.defval)
c:RegisterEffect(e1)
--disable
lo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (Quick Effect): You can discard 1 Spell; Special Summon 1 "Witchcrafter" monster from your hand, except "Witchcrafter Edel". You can Tribute this card, then target 1 Spellcaster monster in your GY, except "Witchcrafter Edel"; Special Summon it. You can only use each effect of "Witchcrafter Edel" once per turn. | --ウイッチクラフト・エーデル
--Witchcrafter Edel
--scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Special Summon from your 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)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate 1 of these effects (but you can only use each effect of "Volcanic Emission" once per turn); ● Take 1 "Volcanic" monster from your Deck, and either add it to your hand or Special Summon it, ignoring its Summoning conditions, but return it to the hand during the End Phase. ● Target 1 Pyro monster on the field; i... | --ヴォルカニック・エミッション
--Volcanic Emission
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_STANDBY_PHASE|TIMING_M... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by discarding 1 card. You can only Special Summon "Nightmare Apprentice" once per turn this way. If this card battles a monster, neither can be destroyed by that battle. If this card is Normal or Special Summoned: You can add 1 Illusion monster from your Deck to your ha... | --幻惑の見習い魔術師
--Nightmare Apprentice
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--You can Special Summon this card (from your hand) by discarding 1 card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Must be Special Summoned with "Mask Change". Gains 100 ATK for each "HERO" monster in your GY. | --M・HERO 剛火
--Masked HERO Goka
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special summon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetValue(aux.FA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card was Special Summoned by the effect of an "Armed Dragon" monster, it gains the following effects based on its ATK. ● 1+: Its name becomes "Armed Dragon LV10". ● 10+: Control of it cannot switch. ● 100+: Cannot be destroyed by battle. ● 1000+: Once per opponent's turn (Quick Effect): You can send 1 card from... | --アームド・ドラゴン・サンダー LV10
--Armed Dragon Thunder LV10
--Scripted by AlphaKretin
Duel.LoadCardScript("c59464593.lua")
local s,id=GetID()
function s.initial_effect(c)
--Register if this card is Special Summoned by the effect of an "Armed Dragon" monster
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE+EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Summoned: You can banish 1 "Ninja" or "Ninjitsu Art" card from your GY, then target 1 Set card your opponent controls; reveal that Set card, then return it to either the top or bottom of the Deck. Your opponent cannot activate the targeted card in response to this effect's activation. You can only use... | --赤竜の忍者
--Red Dragon Ninja
local s,id=GetID()
function s.initial_effect(c)
--todeck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares an attack: All Attack Position monsters your opponent currently controls lose 800 ATK for each monster they control. | --分断の壁
--Wall of Disruption
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.condition(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If there is no face-up "Kozaky" on the field, destroy this card. If this face-up card is destroyed, inflict damage equal to the original ATK of this card to its current controller. | --G・コザッキー
--Giant Kozaky
local s,id=GetID()
function s.initial_effect(c)
--self destroy
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_SELF_DESTROY)
e1:SetCondition(s.sdcon)
c:RegisterEffect(e1)
--damage
loc... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay half your LP; once, if you Fusion Summon a Machine Fusion Monster this turn, you can banish monsters from your hand, field, and/or GY as the Fusion Materials. You can only activate 1 "Cybernetic Fusion Support" per turn. | --サイバネティック・フュージョン・サポート
--Cybernetic Fusion Support
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetCost(s.cost)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card and 1 Dragon or LIGHT monster; add 2 "Dragon Ruler" monsters from your Deck to your hand, except "Spectral, Dragon Ruler of Flickers". You can banish from your GY, this card and 1 Dragon or LIGHT monster, then target 1 "Chasma, Dragon Ruler of Auroras" in your GY; Special Summon it. You can on... | --光征竜-スペクトル
--Spectral, Dragon Ruler of Flickers
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Add 2 "Dragon Ruler" monsters from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card's name becomes "Umi" while on the field or in the GY. Your opponent cannot target WATER monsters you control with non-WATER monster effects. At the start of the Battle Phase: You can Special Summon from your hand or GY, 1 monster that mentions "Umi", or 1 WATER Normal Monster, in Defense Position, but destroy... | --潜海奇襲Ⅱ
--Sea Stealth II
--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)
--Its name becomes "Umi"
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)... |
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 LV6", banish your opponent's monsters destroyed by battle with this card, also negate their effects. | --漆黒の魔王 LV8
--Dark Lucius LV8
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:SetCondition(s.discon)
e1:SetOperation(s.disop)
c:RegisterEffect(e1)
--redirect
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (Quick Effect): You can banish this card on the field and 1 Normal Trap in your GY; apply that banished Trap's effect. (The Trap's activation requirements must still be correct, but costs are not paid.) | --ジャンク・コレクター
--Junk Collector
local s,id=GetID()
function s.initial_effect(c)
--copy trap
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_DRAW_PHASE|TIMINGS_CHECK_MONSTER_E)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is destroyed by battle and sent to the GY: You can Special Summon 1 Level 7 or lower "Red-Eyes" monster from your Deck, and if you do, equip this card from the GY to it. It gains 300 ATK. If this card is sent to the GY while equipped to a monster: You can add 1 Level 1 Dragon monster from your Deck or GY... | --真紅眼の幼竜
--Red-Eyes Baby Dragon
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Red-Eyes" monster and equip itself to it
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All face-up monsters you control gain 300 ATK for each "T.G." monster you control. | --TGX300
--TGX300
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)
--Face-up monsters you control gain 300 ATK for each "T.G." monster you control
local e2=Effect.CreateEffect(c)
e2:SetTy... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is changed from Attack Position to face-up Defense Position, destroy 1 monster on your opponent's side of the field. | --ブレードラビット
--Blade Rabbit
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_CHANGE_POS)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish 4 "HERO" monsters from your GY and/or face-up field, then target 1 "HERO" monster in your GY; Special Summon it, ignoring its Summoning conditions. If you banished EARTH, WATER, FIRE, and WIND Attributes to activate this effect, the monster's original ATK becomes doubled, also negate the effects of all face-up c... | --マジスタリー・アルケミスト
--Magistery Alchemist
--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+CATEGORY_ATKCHANGE+CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Dinosaur-Type monster you control; equip this card to that target. It gains 1000 ATK. When that attacking monster destroys an opponent's monster by battle and sends it to the Graveyard: You can activate this effect; the equipped monster can make a second attack on an opponent's monster in a row. | --生存競争
--Survival of the Fittest
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can reveal this card in your hand; add 1 "Mask Change" or "Polymerization" from your Deck to your hand, then discard 1 card. You cannot Special Summon from the Extra Deck the turn you activate this effect, except "HERO" monsters. If you Special Summon a non-FIRE "HERO" Fusion Monster(s): You can Special Summon this... | --M・HERO ファーネス
--Masked HERO Furnace
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Mask Change" or "Polymerization" from your Deck to your hand, then discard 1 card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEAR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the GY to activate a monster effect: You can add this card to your hand. If a monster(s) is sent to your GY, except by battle, while this card is in your GY (except during the Damage Step): You can discard 1 card to the GY; Special Summon this card. You can only use 1 "Butterfly Fish" effect per... | --バタフライ・フィッシュ
--Butterfly Fish
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Add this card to your 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:SetProperty(EFFECT_FLAG_DELAY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Must be Special Summoned with "The Fang of Critias", using "Tyrant Wing". This card can attack all your opponent's monsters, once each. You can target 1 face-up monster you control; equip this monster to that target. It gains 400 ATK/DEF, also it can make 3 attacks during each Battle Phase. | --タイラント・バースト・ドラゴン
--Tyrant Burst Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
c:RegisterEffec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During damage calculation, if your monster battles an opponent's monster: Play rock-paper-scissors with your opponent. Make the losing player banish the battling monster they control, face-down. | --変則ギア
--Transmission Gear
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
l... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase this turn, you can conduct 1 Pendulum Summon of a monster(s) from your Extra Deck in addition to your Pendulum Summon. (You can only gain this effect once per turn.) | --EXP
--Extra Pendulum
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--During your Main Phase this turn, you can conduct 1 Pendulum Summon of a monster(s) from your Extra Deck in addition to your Pendulum Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetTyp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent from your field to your GY by an opponent's card: Target 1 monster in your opponent's GY; banish that target. | --破戒僧 ランシン
--Anarchist Monk Ranshin
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_TO_GRAVE... |
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 sending 2 other monsters from your hand and/or field to the GY. Gains 300 ATK for each banished card. Once per turn: You can pay half your LP; apply 1 of these effects, depending on the number of "Gandora" monsters with different names in... | --破壊竜ガンドラ-ギガ・レイズ
--Gigarays Gandora the Dragon of Destruction
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special Summon procedure
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EFFECT_SPSUMMON_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Fiend-Type monster + 1 Rock-Type monster Must be Special Summoned with "Dark Fusion". The original ATK of this card becomes the combined original ATK of the materials used for its Fusion Summon. When this card declares an attack: You can change all Defense Position monsters your opponent controls to face-up Attack Po... | --E-HERO ダーク・ガイア
--Evil HERO Dark Gaia
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion material
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsRace,RACE_FIEND),aux.FilterBoolFunctionEx(Card.IsRace,RACE_ROCK))
--lizard check
local e0=Effect.CreateEffect(c)
e0:SetType(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While this card is an Equip Card, your opponent cannot target the equipped monster with card effects. You can only use each of the following effects of "Infernoble Knight Oliver" once per turn. You can send 1 FIRE Warrior monster or 1 Equip Spell from your hand or face-up field to the GY; Special Summon this card from ... | --焔聖騎士-オリヴィエ
--Infernoble Knight Oliver
--Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
--While this card is an Equip Card, your opponent cannot target the equipped monster with card effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Zombie monster: You can Special Summon this card from your hand. During your Main Phase: You can return this card from the field to the hand, then you can Special Summon 1 Zombie monster from your hand. You can only use each effect of "Vulcarrion the Rotting Phoenix" once per turn. | --腐死鳥ヴァルコプス
--Vulcarrion the Rotting Phoenix
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each of your opponent's monsters in the same column as one of your "S-Force" monsters loses 600 ATK. If this card is Normal or Special Summoned: You can target 1 of your banished "S-Force" monsters, except "S-Force Pla-Tina"; Special Summon it. You can only use this effect of "S-Force Pla-Tina" once per turn. | --S-Force プラ=ティナ
--S-Force Pla-Tina
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 of your banished "S-Force" monsters
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can discard 1 card, then target 1 card in either player's Pendulum Zone; destroy that card, and if you do, draw 1 card. | --凶星の魔術師
--Doomstar Magician
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+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Crystal Beast" Monster Card you control; destroy it, then Special Summon 1 "Crystal Beast Token" with the destroyed monster's original Type, Attribute, Level, and ATK/DEF. If a "Crystal Beast" card(s) is placed in your Spell & Trap Zone while this card is in your GY, even during the Damage Step: You can banis... | --宝玉の加護
--Crystal Aegis
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Destroy 1 "Crystal Beast" Monster Card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a card or effect: Return 1 Level 7 LIGHT Dragon monster you control to the hand; negate that effect, and if you do, destroy that card. You can only activate "Starry Knight Blast" once per turn. | --聖なる煌炎
--Starry Knight Blast
--Scripted by DyXel
local s,id=GetID()
function s.initial_effect(c)
--Negate by returning to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,1))
e1:SetCategory(CATEGORY_DISABLE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target Spells/Traps on the field, up to the number of co-linked monsters on the field; destroy them. | --星遺物への抵抗
--World Legacy Struggle
--
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a "Cipher" monster you control is destroyed by battle and sent to your Graveyard: You can discard this card; send 1 card from your hand or field to the Graveyard, and if you do, Special Summon that destroyed monster. During the End Phase, if this card is in the Graveyard because it was sent there this turn: You ca... | --光波鏡騎士
--Cipher Mirror Knight
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_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVEN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when a Fusion Monster is Special Summoned. Return all face-up Fusion Monsters to their respective Extra Decks. | --融合失敗
--Mispolymerization
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase, you can Normal Summon 1 "Starry Knight" monster, or 1 Level 7 LIGHT Dragon monster, in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) During your turn, if a face-up Level 7 LIGHT Dragon monster you control returns to the hand: You can draw 1 card. You can only... | --煌めく聖夜
--Starry Knight Sky
--Scripted by The Razgriz
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)
--Additional Normal summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Str... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 1 "Queen's Knight", "King's Knight", and "Jack's Knight" from your hand and/or face-up Monster Zone to the GY, then Special Summon 1 monster from your hand, Deck, Extra Deck, or GY that mentions all of "Queen's Knight", "King's Knight", and "Jack's Knight". | --ロイヤル・ストレート
--Royal Straight
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Send "Jack's Knight", "Queen's Knight", and "King's Knight" to the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish any number of Dinosaur-Type monsters from your Graveyard; gain 400 Life Points for each Dinosaur-Type monster banished to activate this card. | --生存本能
--Survival Instinct
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster you control; destroy it, and if you do, Special Summon 1 "Rokket" monster with a different original name from your Deck or GY. You can only activate 1 "Tactical Exchanger" per turn. | --タクティカル・エクスチェンバー
--Tactical Exchanger
local s,id=GetID()
function s.initial_effect(c)
--Destroy 1 monster and Special Summon 1 "Rokket" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetPro... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster on the field; it becomes Level 4 until the End Phase. | --波動共鳴
--Harmonic Waves
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.filter(c... |
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 "Infernoid" monster from your Deck to the GY, except "Infernoid Decatron", and if you do, increase this card's Level by the Level of the sent monster, and if you do that, this card's name becomes that monster's original name, and replace this effect with that m... | --インフェルノイド・デカトロン
--Infernoid Decatron
local s,id=GetID()
function s.initial_effect(c)
--mill and name change
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DEL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can pay 800 Life Points and select 1 other face-up Psychic-Type monster you control. That monster can attack twice during each Battle Phase. This card cannot attack the turn you activate this effect. | --サイコ・ウォールド
--Psychic Snail
local s,id=GetID()
function s.initial_effect(c)
--Targeted psychic monster can make a second attack
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetConditio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Machine monster: Change your opponent's Attack Position monsters (if any) to Defense Position, also, until the end of this turn, if a monster(s) is Normal or Special Summoned to your opponent's field, change them to Defense Position. | --パルス・ボム
--Pulse Mines
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:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Edge Imp" monster + 2 "Fluffal" monsters Gains 300 ATK for each Fairy and Fiend monster in your GY, during your turn only. When this Fusion Summoned card destroys a monster by battle: You can send "Frightfur", "Fluffal", and/or "Edge Imp" monsters from your Deck to the GY, equal to the original Level of that destroy... | --デンジャラス・デストーイ・ナイトメアリー
--Dangerous Frightfur Nightmary
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_EDGE_IMP),1,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_FLUFFAL),2)
--atk up
local e1=Effec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal or Special Summoned: You can discard 1 WATER monster to the Graveyard; add 1 Level 3 WATER monster from your Deck to your hand. You can only use this effect of "Mermail Abysspike" once per turn. | --水精鱗-アビスパイク
--Mermail Abysspike
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can target 1 Set card on the field; return that target to the hand. This effect can be used only once while this card is face-up on the field. | --ゼンマイマイ
--Wind-Up Snail
local s,id=GetID()
function s.initial_effect(c)
--to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_NO_TURN_RESET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an "Amazoness" monster you control destroys an opponent's monster by battle and sends it to the GY: Special Summon 1 Level 4 or lower "Amazoness" monster from your Deck. | --女王の選択
--Queen's Pawn
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_BATTLE_DESTROYED)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Must be Special Summoned by "Mask Change". Any card sent to your opponent's GY is banished instead. Once per turn, if your opponent adds a card(s) from their Deck to their hand (except during the Draw Phase or the Damage Step): You can banish 1 random card from your opponent's hand. | --M・HERO ダーク・ロウ
--Masked HERO Dark Law
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Must be Special Summoned by "Mask Change"
c:AddCannotBeSpecialSummoned()
--Any card sent to your opponent's GY is banished instead
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetPro... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute Summon this card in face-up Attack Position by Tributing 1 "Steelswarm" monster. When this card is Tribute Summoned by Tributing a "Steelswarm" monster(s): You can target 1 card your opponent controls; send that target to the Graveyard and gain 1000 Life Points. | --インヴェルズ・ギラファ
--Steelswarm Girastag
local s,id=GetID()
function s.initial_effect(c)
--summon with 1 tribute
local e1=aux.AddNormalSummonProcedure(c,true,true,1,1,SUMMON_TYPE_TRIBUTE,aux.Stringid(id,0),s.otfilter)
--summon success
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,1))
e2:SetCategory... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 "Fire Fist" monsters You can detach 2 materials from this card, then target 2 "Fire Fist" / "Fire Formation" cards in your GY and/or face-up field, and 2 cards in your opponent's GY and/or face-up field; shuffle those targets into the Deck. You can only use this effect of "Brotherhood of the Fire Fist - Cardi... | --間炎星-コウカンショウ
--Brotherhood of the Fire Fist - Cardinal
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_FIRE_FIST),4,2)
c:EnableReviveLimit()
--todeck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the Graveyard as a Synchro Material: Draw 1 card. A Synchro Monster that used this card as a Synchro Material cannot be destroyed by card effects. | --クリア・エフェクター
--Clear Effector
local s,id=GetID()
function s.initial_effect(c)
--If sent to GY as synchro material, draw 1
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Skull Servant" + "Dissolverock" | --フレイム・ゴースト
--Flame Ghost
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Fusion summon procedure
Fusion.AddProcMix(c,true,true,CARD_SKULL_SERVANT,40826495)
end
s.listed_names={CARD_SKULL_SERVANT} |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Level 4 or higher monsters cannot attack directly. During your turn: You can send this face-up card from the field to the Graveyard to target 2 Level 3 or lower WATER monsters with the same name in your Graveyard; Special Summon those targets. Their effects are negated. | --バブル・ブリンガー
--Bubble Bringer
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 direct attack
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_CANNO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish 1 WIND monster from your GY, then target 1 card your opponent controls; return it to the hand. During your Main Phase, if this card is in your GY: You can target 1 Level 2 or higher "Speedroid" monster you control; reduce its Level by 1, and if you do, Special Summon this card as a Normal Monster (Machine/Tuner/... | --SRデュプリゲート
--Speedroid Dupligate
--Scripted by Larry126
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)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 "Metalfoes" Fusion Monster from your Extra Deck, using up to 1 monster each from your hand, field, and/or face-up Extra Deck as Fusion Material. You can only activate 1 "Parametalfoes Fusion" per turn. | --混錬装融合
--Parametalfoes Fusion
--Scripted by edo9300
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Fusion.CreateSummonEff({handler=c,fusfilter=aux.FilterBoolFunction(Card.IsSetCard,SET_METALFOES),extrafil=s.extrafil})
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
c:RegisterEffect(e1)
end
s.lis... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: When this card is sent to the Graveyard after being flipped, each player selects 1 monster from their Graveyard, and Special Summons it in face-up Attack Position or face-down Defense Position. | --ダークファミリア
--Spear Cretin
local s,id=GetID()
function s.initial_effect(c)
--flip effect
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_FLIP)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetOperation(s.flipop)
c:RegisterEffect(e1)
--special summon
local e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent controls a monster, you can Tribute Summon this card face-up with 1 Tribute. If this card attacks a Defense Position monster, inflict piercing battle damage. | --E-HERO マリシャス・エッジ
--Evil HERO Malicious Edge
local s,id=GetID()
function s.initial_effect(c)
--summon with 1 tribute
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SUMMON_PROC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While your LP are higher than your opponent's, if a Plant monster you control attacks, your opponent cannot activate monster effects until the end of the Damage Step. Once per turn, if you gain LP: Target 1 face-up monster on the field; change its battle position. | --アロマージ-ローズマリー
--Aromage Rosemary
local s,id=GetID()
function s.initial_effect(c)
--active limit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.actcon)
e1:SetOperation(s.actop)
c:RegisterEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 Fusion Monster from your Extra Deck, using 3 or more monsters from your hand or field as material. You can also banish monsters from your Extra Deck as material, up to the number of monsters your opponent controls, but you lose LP equal to the total ATK of monsters banished this way, when the monster is... | --多層融合
--Heavy Polymerization
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
Fusion.RegisterSummonEff{handler=c,mincount=3,extrafil=s.fextra,extratg=s.extratg,extraop=s.extraop,stage2=s.stage2}
end
function s.fcheck(tp,sg,fc)
return sg:FilterCount(Card.IsLocation,nil,LOCATION_EXTRA)<=Duel.GetField... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent declares a monster Level from 1 to 12. Excavate cards from the top of your Deck until you excavate a monster that can be Normal Summoned/Set, then, if that monster is the same Level as the one declared by your opponent, send all excavated cards to the GY. If not, Special Summon the excavated monster, also... | --名推理
--Reasoning
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DECKDES)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by sending 1 other monster from your hand to the GY. You can only Special Summon "Defrag Dragon" once per turn this way. If this card is in the GY: You can banish 3 monsters from your GY with the same name, except "Defrag Dragon"; Special Summon this card. You can only ... | --デフラドラグーン
--Defrag Dragon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--special summon procedure from hand
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:SetCountLimi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each of your opponent's monsters in the same column as one of your "S-Force" monsters cannot change its battle position. If this card is Normal or Special Summoned: You can target 1 face-up monster your opponent controls; change its battle position. You can only use this effect of "S-Force Professor DiGamma" once per t... | --S-Force プロフェッサーϜ
--S-Force Professor DiGamma
--Scripted by edo9300
local s,id=GetID()
function s.initial_effect(c)
--Change the battle position of an opponent's face-up monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_SINGLE+EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 or more Level 5 LIGHT Insect-Type monsters You can also Xyz Summon this card by detaching 2 Xyz Materials from a Rank 3 or 4 Insect-Type Xyz Monster you control, then using that Xyz Monster as the Xyz Material. (Xyz Materials attached to that monster also become Xyz Materials on this card.) Once per turn: You can det... | --電子光虫-コアベージ
--Digital Bug Corebage
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Xyz.AddProcedure(c,s.mfilter,5,2,s.ovfilter,aux.Stringid(id,2),Xyz.InfiniteMats,s.xyzop)
--Back to Deck
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_TODECK)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Gaia Knight, the Force of Earth" + 1 non-Effect Synchro Monster This card cannot be targeted by, or destroyed by, the effects of Effect Monsters. | --地天の騎士ガイアドレイク
--Gaia Drake, the Universal Force
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,97204936,s.ffilter)
--cannot be target
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET)
... |
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 1 "Forbidden One" monster, and cannot be Special Summoned by other ways. This card gains 1000 ATK for each "Forbidden One" monster in your Graveyard. Unaffected by other cards' effects. Once per turn, during your End Phase: Add 1 "For... | --召喚神エクゾディア
--The Legendary Exodia Incarnate
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:Regis... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Switch the opponent's Spell Card effect that targets 1 Spell or Trap Card to another correct target. | --悪魔の手鏡
--Fiend's Hand Mirror
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_CHAINING)
e1:SetCondition(s.tgcon)
e1:SetTarget(s.tgtg)
e1:SetOperation(s.tgop)
c:RegisterEffect(e1)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent from the field to the Graveyard: Add 1 Level 8 Fiend-Type monster from your Deck to your hand. You can only use this effect of "Doomdog Octhros" once per turn. | --魔犬オクトロス
--Doomdog Octhros
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetCountLimit(1,id)
e1:SetCondition(s.condition)
e1:SetTarget(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a monster(s) is Set on your opponent's field: Target 1 of those Set monsters; change that Set monster to face-up Attack Position. (Flip Effects are not activated.) | --誘惑のシャドウ
--Shadow of Eyes
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_CHANGE_POS)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
local e2=e1:Clone()
e2:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When you Xyz Summon a monster: You can target 1 card on the field; destroy it. | --エクシーズエフェクト
--Xyz Effect
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_SPSUMMON_SUCCESS)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Trap effect that inflicts damage is activated: Make that effect damage 0. | --防御輪
--Ring of Defense
local s,id=GetID()
function s.initial_effect(c)
--reflect
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
function s.condition(e,tp,eg,ep,ev,re,r,rp)
if not re:I... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent Special Summons a monster(s) while you control no cards: You can discard this card, then target 1 face-up monster your opponent controls; this turn, that monster cannot be Tributed, or used as material for a Fusion, Synchro, Xyz, or Link Summon. You can only use this effect of "Gnomaterial" once per tu... | --ノーマテリア
--Gnomaterial
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Limit material
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase, if "Necrovalley" is on the field: You can Fusion Summon 1 Spellcaster Fusion Monster from your Extra Deck, using this card you control and other monsters from your hand or field as Fusion Material. You can only use this effect of "Gravekeeper's Spiritualist" once per turn. | --墓守の霊術師
--Gravekeeper's Spiritualist
local s,id=GetID()
function s.initial_effect(c)
--fusion summon
local params = {aux.FilterBoolFunction(Card.IsRace,RACE_SPELLCASTER),nil,nil,nil,Fusion.ForcedHandler}
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_FUSION_SUMMON)
e1:SetType(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Dinosaur Tuner + 1+ non-Tuner monsters If this card battles, your opponent cannot activate Spell/Trap Cards until the end of the Damage Step. Your opponent's monsters cannot target monsters for attacks, except this one. Once per turn: You can target 1 monster your opponent controls; destroy it. If this card would be ... | --ダイナレスラー・ギガ・スピノサバット
--Dinowrestler Giga Spinosavate
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DINOSAUR),1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--actlimit upon attacking
local e1=Effect.CreateEffect(c)
e1:SetTyp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal Summoned: You can make this card Level 4, then you can add 1 "Spirit Converter" from your Deck or GY to your hand. You can target 1 other card you control; send both it and this card to the GY, and if you do, draw 1 card. You can only use each effect of "Electrode Beast Anion" once per turn. | --電極獣アニオン
--Electrode Beast Anion
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Make this card become Level 4 and search 1 "Spirit Converter"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_LVCHANGE+CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the Graveyard as a Synchro Material Monster for a Synchro Summon, send the top 2 cards from your opponent's Deck to the Graveyard. | --二角獣レーム
--Bicorn Re'em
local s,id=GetID()
function s.initial_effect(c)
--deckdes
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DECKDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BE_MATERIAL)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in the GY and your opponent has 5 or more cards in their Extra Deck than you do: You can pay 2000 LP; Special Summon this card, but banish it when it leaves the field. You can only use this effect of "Re-Cover" once per turn. | --リ・バイブル
--Re-Cover
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_GRAVE)
e1:SetCountLimit(1,id)
e1:SetCondition(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 3 monsters Monsters this card points to cannot be destroyed by card effects. If this card would be destroyed by battle or an opponent's card effect, you can send 1 other card you control to the GY instead. You can send 1 Level 3 monster from your Deck to the GY, then target 1 "Burning Abyss" monster on the fiel... | --彼岸の黒天使 ケルビーニ
--Cherubini, Ebon Angel of the Burning Abyss
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--link summon
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunction(Card.IsLevel,3),2,2)
--indestructable
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_SET_A... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Negate any card effects activated in this card's column. ---------------------------------------- [ Monster Effect ] If there is a column with no cards, you can Special Summon this card (from your hand) to your zone in that column. You can only Special Summon "Disablaster the Negation Fortress" once... | --無孔砲塔-ディセイブラスター
--Disablaster the Negation Fortress
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
--Negate all cards and effects activated in this card's column
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_CHA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Pyro-Type Level 4 monsters Once per turn: You can detach 1 Xyz Material from this card; this card gains 500 ATK until your opponent's End Phase. When this card with 2500 or more ATK is destroyed: Target 3 monsters in any Graveyard(s); banish those targets. | --ヘルフレイムゴースト
--Infernal Flame Vixen
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_PYRO),4,2)
c:EnableReviveLimit()
--attack up
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetDescription(aux.Stringid(id,0))
e1:S... |
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; if you have more cards in your Extra Deck than your opponent's, apply these effects in sequence, depending on the difference. ● 1+: This card gains 1000 ATK until the end of your opponent's turn. ● 5+: Neither player can target this card with card effects unt... | --ペンドラザクション
--Pendransaction
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Xyz Summon
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--Apply effect
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can target 1 "Super Quant" monster you control; all face-up monsters you currently control become that monster's Level. You can Tribute this card; reveal 3 "Super Quant" monsters with different names from your Deck, your opponent randomly picks 1 for you to Special Summon to your field, and you send ... | --超量妖精アルファン
--Super Quantal Fairy Alphan
local s,id=GetID()
function s.initial_effect(c)
--lv
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetTarget(s.target)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Change all face-up Reptile-Type "Worm" monsters you control to face-down Defense Position, except this card. | --ワーム・ファルコ
--Worm Falco
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FLIP+EFFECT_TYPE_SINGLE)
e1:SetCategory(CATEGORY_POSITION)
e1:SetTarget(s.postg)
e1:SetOperation(s.posop)
c:RegisterEffect(e1)
end
s.listed_series={SET_WORM}
function s.filter(c)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a card or effect is activated that includes an effect that adds a card(s) from the Deck to the hand: The activated effect becomes "Your opponent takes 1 card from their Deck for you to add to your hand, and you must keep that card revealed. During the End Phase of this turn, shuffle it into the Deck, and if you do... | --誤出荷
--Shipping Error
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--An activated effect becomes "Your opponent takes 1 card from their Deck for you to add to your hand, and you must keep that card revealed"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card remains on the field for 2 of your opponent's turns. While this card is face-up on the field, no monsters can attack. | --悪夢の鉄檻
--Nightmare's Steelcage
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)
c:RegisterEffect(e1)
--cannot attack
local e2=Effect.CreateEffect(c)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish 1 Level 5 or higher monster from your Graveyard; Special Summon this card from your hand, also you cannot Special Summon monsters from the Extra Deck for the rest of this turn. If this card is Tributed for a Tribute Summon: You can look at all Set cards your opponent controls. Your opponent cannot activa... | --邪帝家臣ルキウス
--Lucius the Shadow Vassal
local s,id=GetID()
function s.initial_effect(c)
--special summon
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)
e1:SetTarget(s.sptg)
e1:SetOpera... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay half your LP; Special Summon up to 2 "Darklord" monsters from your Graveyard in Defense Position, with the same Level as 1 face-up monster your opponent controls. | --堕天使降臨
--Darklord Descent
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:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: You can add 1 "Drytron" Spell/Trap from your Deck to your hand, except "Drytron Fafnir". The activation and the activated effects of Ritual Spell Cards cannot be negated. Once per turn, if a monster is Normal or Special Summoned face-up while you control a "Drytron" monster (except during t... | --竜輝巧-ファフニール
--Drytron Fafnir
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetOperation(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be Normal Summoned or Set. This card can only be Special Summoned by removing from play 1 Spell Card from your hand. When you Synchro Summon using this card and a Beast-Type Tuner monster as the Synchro Material Monsters, you can select 1 Beast-Type Tuner monster used for the Synchro Summon and Special... | --モノケロース
--Monoceros
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special summon procedure
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:SetT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Ritual Beast" monsters "Ritual Beast" monsters this card points to gain 600 ATK/DEF. You can banish 1 "Ritual Beast" card from your GY; immediately after this effect resolves, Normal Summon 1 "Ritual Beast" monster from your hand. You can only use this effect of "Ritual Beast Ulti-Kimunfalcos" once per turn. (Quick ... | --聖霊獣騎キムンファルコス
--Ritual Beast Ulti-Kimunfalcos
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2 "Ritual Beast" monsters
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_RITUAL_BEAST),2)
--"Ritual Beast" monsters this card points to gain 600 ATK/DEF
loc... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card destroys an opponent's monster by battle and sends it to the Graveyard: You can Special Summon 1 "Blackwing" monster with 1500 or less ATK from your Deck, but its effects are negated. | --BF-蒼炎のシュラ
--Blackwing - Shura the Blue Flame
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 9 monsters You can also Xyz Summon this card by using a "Galaxy-Eyes" Xyz Monster you control as the Xyz Material. (Xyz Materials attached to that monster also become Xyz Materials on this card.) Cannot be used as an Xyz Material for an Xyz Summon. When this card is Xyz Summoned: You can send 3 Dragon-Type mons... | --No.95 ギャラクシーアイズ・ダークマター・ドラゴン
--Number 95: Galaxy-Eyes Dark Matter Dragon
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,9,3,s.ovfilter,aux.Stringid(id,0))
c:EnableReviveLimit()
--xyzlimit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is used to Ritual Summon "Knight of Armor Dragon". You must also Tribute monsters from your hand or field whose total Levels equal 4 or more. During your Main Phase, except the turn this card was sent to the GY: You can banish monsters from your hand or face-up field whose total Levels equal 4 or more; banish... | --鎧竜降臨
--Armor Dragon Ritual
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
Ritual.AddProcGreaterCode(c,4,nil,75901113)
--Special summon 1 "Paladin of Armored Dragon" from GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Summoned, if you control a "Big Piece Golem", you can Special Summon 1 "Small Piece Golem" from your Deck. That monster's effect is negated while it is face-up on the field. | --ミッド・ピース・ゴーレム
--Medium Piece Golem
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCondition(s.spco... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Any card sent to the GY is banished instead, except Monster Cards. ---------------------------------------- [ Monster Effect ] You can reveal this card in your hand; add 1 other Pendulum Monster from your hand, or 1 card from your Pendulum Zone, to its owner's Extra Deck face-up, and if you do, Spec... | --人攻智能ME-PSY-YA
--Antihuman Intelligence ME-PSY-YA
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Pendulum Summon
Pendulum.AddProcedure(c)
--Banish non-monster cards sent to the GY
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_SET_AVAILABLE+EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Spell Card is activated: Discard 1 Spell; negate the activation, and if you do, destroy it, and if you do that, your opponent cannot activate Spell Cards with that name for the rest of this Duel. | --封魔の呪印
--Cursed Seal of the Forbidden Spell
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:SetCost(s.cost)
e1:SetTarget(s.targ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 4 monsters If this card is Xyz Summoned: You can target 1 "tellarknight" and/or 1 "Constellar" card in your GY; add them to your hand. You can banish 1 "tellarknight" or 1 "Constellar" monster from your hand or Deck, and detach 1 material from this card; this effect becomes that banished monster's effect that ... | --星騎士 セイクリッド・カドケウス
--Tellarknight Constellar Caduceus
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2+ Level 4 monsters
Xyz.AddProcedure(c,nil,4,2,nil,nil,Xyz.InfiniteMats)
--Add 1 "tellarknight" and/or 1 "Constellar" card from your GY to your hand
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "V-Tiger Jet" + "W-Wing Catapult" Must first be Special Summoned (from your Extra Deck) by banishing the above cards you control. You can discard 1 card, then target 1 monster your opponent controls; change that target's battle position. (Flip effects are not activated.) | --VW-タイガー・カタパルト
--VW-Tiger Catapult
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,51638941,96300057)
Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit)
--pos
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(id,0))
e3:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This monster may attack your opponent's Life Points directly. | --ラージマウス
--Ooguchi
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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.