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: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand or GY) by banishing 3 Pyro monsters or 1 "Blaze Accelerator" card from your face-up field and/or GY. You can only Special Summon "Volcanic Emperor" once per turn. When Summoned this way: You can inflict 500 damage to your opponent for each banished... | --ヴォルカニック・エンペラー
--Volcanic Emperor
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:SetSPSummonOnce(id)
c:EnableReviveLimit()
c:AddMustBeSpecialSummoned()
--Must be Special Summoned (from your hand or GY) by banishing 3 Pyro monsters or 1 "Blaze Accelerator" card from your face-up field and/or G... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can send 1 "Elementsaber" monster from your hand to the GY, then target 1 "Elementsaber" or "Elemental Lord" monster in your GY, except "Elementsaber Nalu"; add it to your hand. Once per turn, if this card is in the GY: You can declare 1 Attribute; this card in the GY becomes that Attribute until the... | --エレメントセイバー・ナル
--Elementsaber Nalu
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "End of the World". When this attacking card destroys an opponent's monster by battle: You can activate this effect; this card can make a second attack in a row. | --破滅の女神ルイン
--Ruin, Queen of Oblivion
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--chain attack
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetCondition(s.atcon)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can discard your entire hand. If this card is sent to the GY: You can send 1 "Infernity" monster from your Deck to the GY. You must have no cards in your hand to activate and to resolve this effect. You can only use each effect of "Infernity Sage" once per turn. | --インフェルニティ・セイジ
--Infernity Sage
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Discard your entire hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the End Phase of the turn this card was activated, add "Spellbook" Spells from your Deck to your hand, except "Spellbook of Judgment", up to the number of Spell Cards activated after this card's resolution, then, you can Special Summon from your Deck 1 Spellcaster monster whose Level is less than or equal to the... | --魔導書の神判
--Spellbook of Judgment
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_SEARCH+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Select 1 Trap Card on the field and destroy it. If the selected card is Set, pick up and see the card. If it is a Trap Card, it is destroyed. If it is a Spell Card, return it to its original position. | --トラップ・マスター
--Trap Master
local s,id=GetID()
function s.initial_effect(c)
--Destroy 1 Trap card on the field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetTarget(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can Synchro Summon. Send this card to the Graveyard during your 3rd End Phase after activation. | --不協和音
--Discord
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:SetTarget(s.target)
c:RegisterEffect(e1)
--disable spsummon
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] If you control a Ritual Monster: You can target 1 monster on the field; Special Summon this card, then change that monster's battle position. You can only use this effect of "Poissonniere de Nouvelles" once per turn. ---------------------------------------- [ Monster Effect ] If this card is Normal ... | --ポワソニエル・ド・ヌーベルズ
--Poissonniere de Nouvelles
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Pendulum Attributes
Pendulum.AddProcedure(c)
--Special Summon itself from the Pendulum Zone and change the position of a monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster on the field; if that monster's ATK, DEF, or Level is higher than its original value, it becomes its original value, then pay LP in multiples of 100 (min. 100, max. 1000). During your Main Phase, if both players have the same LP and this card is in your GY: You can Set this card. You can only u... | --トン=トン
--Pig Iron vs. Pen Peg
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Reset monster's ATK/DEF/Level and pay LP
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE+CATEGORY_LVCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All "Metalfoes" monsters you control gain 300 ATK and DEF. While a "Metalfoes" card is in your Pendulum Zone, "Metalfoes" monsters you control, except Effect Monsters, are unaffected by your opponent's card effects. | --メタモルF
--Metamorformation
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you control 2 or more face-up Attack Position monsters, your opponent cannot target your monster(s) with the lowest ATK for an attack. | --ガリトラップ-ピクシーの輪-
--Pixie Ring
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--cannot be battle target
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_CANNOT_SELECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a Spell Card that includes an effect that Special Summons a monster(s) (Quick Effect): You can Special Summon this card from your hand. If Summoned this way, while this card is face-up on the field, any card sent to the GY is banished instead. If this card is sent from the field to the GY: ... | --応戦するG
--Retaliating "C"
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
e1:SetCost(s.spcost)
e1:SetTarget(s.sptg)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 300 ATK for each Continuous Spell in your Spell & Trap Zone. | --龍脈に棲む者
--Dweller in the Depths
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(s.atkval)
c:RegisterEffect(e1)
end
function ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) is sent from the hand or Deck to the GY, while this card is in your GY (except during the Damage Step): You can Special Summon this card, also you cannot Special Summon monsters until the end of the next turn, except Reptile monsters. If you control this card that was Special Summoned from the GY: You c... | --溟界神-ネフェルアビス
--Nephilabyss, the Ogdoadic Overlord
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All Rock monsters you control gain 500 ATK/DEF. Once per turn, during your Main Phase: You can take up to 5 "Adamancipator" cards from your Deck and place them on top of your Deck in any order. | --アダマシア・ラピュタイト
--Adamancipator Laputite
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) to your opponent's field in Defense Position, by Tributing 1 monster they control. If Summoned this way, once, during the End Phase of this turn: You can draw 1 card. | --サタンクロース
--Santa Claws
local s,id=GetID()
function s.initial_effect(c)
--special summon
aux.AddLavaProcedure(c,1,POS_FACEUP_DEFENSE,nil,1)
--
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetCondition(s.ctcon)
e1:SetOperation(s.ctop)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each player can Special Summon 1 monster from their GY that was destroyed by battle this turn, in Attack Position, and if you Special Summoned "Elemental HERO Neos" by this effect, if it battles your opponent's monster this turn, its ATK becomes doubled during the Damage Step only. You can only activate 1 "Battle of Sl... | --鎮魂の決闘
--Battle of Sleeping Spirits
--Scripted by Hatter
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_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 "Des Dendle" from your hand. | --ブラッド・オーキス
--Vampiric Orchis
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.sptg)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this face-up card on the field is destroyed and sent to the Graveyard, you can select 2 "Genex" monsters from your Graveyard, and return them to the Deck. | --レアル・ジェネクス・ウルティマム
--R-Genex Ultimum
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_TODECK)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned: You can add 1 "Lyrilusc" Spell/Trap from your Deck to your hand. If this card is in your GY: You can target 1 "Lyrilusc" Xyz Monster you control; attach this card to it as material. You can only use each effect of "Lyrilusc - Celestine Wagtail" once per turn. | --LL-セレスト・ワグテイル
--Lyrilusc - Celestine Wagtail
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Lyrilusc" Spell/Trap 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_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be used as an Xyz Material for an Xyz Summon, except for the Xyz Summon of a Winged Beast-Type monster. If this card is in your hand: You can target 1 "Raidraptor" monster you control that has a Level; take damage equal to its ATK or DEF (whichever is lower, but your choice if tied), and if you do, Special Summo... | --RR-ペイン・レイニアス
--Raidraptor - Pain Lanius
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,id)
e1:SetTarget(s.s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] While you have a card in your other Pendulum Zone: You can target 1 Pendulum Monster you control or in your GY; Special Summon the card in your other Pendulum Zone, and if you do, place that targeted Pendulum Monster in your Pendulum Zone. You can only use this effect of "D/D/D Deviser King Deus Mac... | --DDD赦俿王デス・マキナ
--D/D/D Deviser King Deus Machinex
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Pendulum.AddProcedure(c,false)
--Can only control 1 in your Monster Zone
c:SetUniqueOnField(1,0,id,LOCATION_MZONE)
--Xyz Summoning procedure
Xyz.AddProcedure(c,aux.Filte... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 of your banished monsters, except "Nemeses Umbrella"; Special Summon this card from your hand, and if you do, shuffle that target into the Deck. You can target 1 "Nemeses" monster in your GY, except "Nemeses Umbrella"; add it to your hand. You can only use each effect of "Nemeses Umbrella" once per tur... | --ネメシス・アンブレラ
--Nemeses Umbrella
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--sp summon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCount... |
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 Level 5 or higher monster with 1600 or less ATK from your Deck. | --カオスエンドマスター
--Chaos-End Master
local s,id=GetID()
function s.initial_effect(c)
--search
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_BATTLE_DESTROYED)
e1:SetRange(LOCATION_MZONE)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a monster effect that would inflict damage (Quick Effect): You can discard this card; negate the activation. When an opponent's monster declares a direct attack: You can banish this card from your GY; draw 1 card, and if it is a monster, you can Special Summon it, then change the attack tar... | --クリアクリボー
--Clear Kuriboh
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)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetRange(LOCATION_HAND)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 LIGHT Fiend monsters Monsters your opponent controls lose 600 ATK. You can only use each of the following effects of "Fiendsmith's Lacrima" once per turn. If this card is Fusion Summoned: You can target 1 of your LIGHT Fiend monsters that is banished or in your GY; add it to your hand or Special Summon it. If this ca... | --刻まれし魔ラクリモーサ
--Fiendsmith's Lacrima
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials
Fusion.AddProcMixN(c,true,true,s.matfilter,2)
--Monsters your opponent controls lose 600 ATK
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Monsters your opponent controls cannot attack "World Legacy" monsters you control, except this one. You can only use each of the following effects of "World Legacy - "World Lance"" once per turn. ● During damage calculation, if a Link Monster battles a monster (Quick Effect): You can discard this card; the opponent's b... | --星遺物-『星槍』
--World Legacy - "World Lance"
local s,id=GetID()
function s.initial_effect(c)
--atkdown
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetRange(LOCATION_HAND)
e1:SetCou... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 cards in the GY(s); shuffle those targets into the Deck(s). | --転生の予言
--The Transmigration Prophecy
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
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 your opponent Special Summons a monster(s) from their Main Deck: Destroy that monster(s), and if you do, draw 1 card. | --呪言の鏡
--Mirror of Oaths
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
funct... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card gains 300 ATK and DEF for each card in your hand. | --ムカムカ
--Muka Muka
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_MZONE)
e1:SetValue(s.val)
c:RegisterEffect(e1)
--defup
local e2=e1:Clone()
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can send 1 other LIGHT monster from your hand to the GY; Special Summon this card from your hand in Defense Position. When this card is Special Summoned: You can add 1 "Galaxy" monster from your Deck to your hand. You can only use this effect of "Galaxy Soldier" once per turn. | --銀河戦士
--Galaxy Soldier
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCost(s.spcost)
e1:SetTarget(s.sptg)
e1:SetOper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase, if a face-up "War Rock" monster(s) you control leaves the field by an opponent's card effect: Destroy up to 2 cards your opponent controls. You can only activate 1 "War Rock Big Blow" per turn. | --ウォークライ・ビッグブロウ
--War Rock Big Blow
local s,id=GetID()
function s.initial_effect(c)
--Destroy up to 2 cards your opponent controls
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_LEAVE_FIELD)
e1:SetProperty(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a face-up Beast monster you control is destroyed and sent to the GY, while this card is in your hand or GY (except during the Damage Step): You can pay 1000 LP; Special Summon this card. | --森の番人グリーン・バブーン
--Green Baboon, Defender of the Forest
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_HAND|LOCATION_GRA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Faith Bird" + "Skull Red Bird" | --紅陽鳥
--Crimson Sunbird
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,75582395,10202894)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card gains 100 ATK for each Machine-Type monster on the field. | --機械王
--Machine King
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_MZONE)
e1:SetValue(s.val)
c:RegisterEffect(e1)
end
function s.val(e,c)
retur... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Valkyrie" monsters you control gain 200 ATK for each of your opponent's banished monsters. If you control a "Valkyrie" monster other than "Valkyrie Funfte": You can send 1 Spell/Trap from your Deck to the GY. You can only use this effect of "Valkyrie Funfte" once per turn. | --ワルキューレ・フュンフト
--Valkyrie Funfte
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--atk boost
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarget(aux.TargetBoolFunction(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card on the field is destroyed and sent to the Graveyard: Reduce the next battle damage you would take this turn to 0. | --BF-銀盾のミストラル
--Blackwing - Mistral the Silver Shield
local s,id=GetID()
function s.initial_effect(c)
--change damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetCondition(s.condition)
e1:SetOperation(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Machine monsters, including "Cyber Dragon" This card's name becomes "Cyber Dragon" while on the field or in the GY. During each Battle Phase, if this card has not declared an attack (Quick Effect): You can target 1 Machine monster you control with 2100 or more ATK; for the rest of this turn, that monster gains 2100 A... | --サイバー・ドラゴン・ズィーガー
--Cyber Dragon Sieger
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--link summon
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_MACHINE),2,2,s.lcheck)
--Change name
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 "HERO" monsters After this card is Fusion Summoned, for the rest of this turn, this card's ATK becomes double its original ATK. This Fusion Summoned card can make a second and third attack during each Battle Phase. Cannot attack directly. | --V・HERO トリニティー
--Vision HERO Trinity
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_HERO),3)
--summon success
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_SINGLE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters Once per chain, during your Main Phase or your opponent's Battle Phase, if your opponent has more total cards in their hand and field than you do (Quick Effect): You can detach 1 material from this card; destroy all other cards on the field, also your opponent takes no further damage this turn. | --励輝士 ヴェルズビュート
--Evilswarm Exciton Knight
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 4 monsters
Xyz.AddProcedure(c,nil,4,2)
--Destroy all other cards on the field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a "Kuriboh" Monster Card is on the field: You can Special Summon this card from your hand. When your opponent activates a monster effect on the field (Quick Effect): You can equip this card you control to that opponent's monster as an Equip Spell with the following effect. ● The equipped monster's effects are negate... | --機雷化するクリボー
--Detonating Kuriboh
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_H... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You cannot Pendulum Summon monsters, except "D/D" monsters. This effect cannot be negated. Once, while this card is in your Pendulum Zone, you can negate an activated Spell effect that would inflict damage to you, then destroy this card. ---------------------------------------- [ Monster Effect ] If... | --DD魔導賢者コペルニクス
--D/D Savant Copernicus
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--splimit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_PZONE)
e1:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET+... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters If this card is Special Summoned: You can take 1 Level 4 or lower FIRE Warrior monster or 1 "Battlin' Boxing" Spell/Trap from your Deck, and either add it to your hand or send it to the GY. (Quick Effect): You can detach 1 material from a monster you control, and if you do, apply the following effect... | --BK キング・デンプシー
--Battlin' Boxer King Dempsey
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon Procedure
Xyz.AddProcedure(c,nil,4,2)
--Take 1 Level 4 or lower FIRE Warrior or 1 "Battlin' Boxing" Spell/Trap
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.St... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While 6 or more of your cards are banished, you can Normal Summon this card without Tributing. You can only use each of the following effects of "Gizmek Makami, the Ferocious Fanged Fortress" once per turn. If this card is Normal or Special Summoned: You can discard 1 monster; add 1 monster whose ATK equals its own DEF... | --機巧牙-御神尊真神
--Gizmek Makami, the Ferocious Fanged Fortress
--scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Normal Summon without Tributing
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(E... |
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 target 1 Fish monster you control and 1 card your opponent controls; banish them. If this card is banished: You can banish 1 Fish monster from your GY; Special Summon this card. You can only use each effect of "Askaan, the Bicorned Ghoti" once pe... | --ゴーティスの双角アスカーン
--Askaan, the Bicorned Ghoti
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--1 Tuner + 1+ Non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Banish 1 Fish monster you control and 1 card your opponent controls
local e1=Effect.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card attacks a Defense Position monster, inflict piercing battle damage. If this card inflicts battle damage to your opponent: Make your opponent discard 1 random card. | --地獄将軍・メフィスト
--Mefist the Infernal General
local s,id=GetID()
function s.initial_effect(c)
--handes
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_DAMAGE)
e1:SetCondition(s.conditio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent has 2 or more cards in their hand than you do: You can reveal 1 "Fabled" monster in your hand and Tribute this face-up card, then target 2 Spell/Trap Cards your opponent controls; destroy those targets. | --魔轟神トピー
--Fabled Topi
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.con)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent activates a card's effect that targets and destroys a Spell or Trap Card(s) you control, you can discard 1 card to negate its activation and destroy the card. | --ネイビィロイド
--Carrierroid
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+EFFECT_FLAG_DAM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters All monsters you control gain 800 DEF. You can detach 1 Xyz Material from this card, then target 1 Level 4 EARTH Rock-Type monster in your Graveyard; add that target to your hand. You can only use this effect of "Number 55: Gogogo Goliath" once per turn. | --No.55 ゴゴゴゴライアス
--Number 55: Gogogo Goliath
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetPrope... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Six Samurai" monster in your GY; Special Summon that target. Destroy it during the End Phase of this turn. | --六武衆推参!
--Return of the Six Samurai
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) to your Main Monster Zone, adjacent to a "Scareclaw" monster you control or in its column. You can only Special Summon "Scareclaw Acro" once per turn this way. Your "Scareclaw" monsters in the Extra Monster Zone(s) gain 300 ATK for each Defense Position monster you cont... | --スケアクロー・アクロア
--Scareclaw Acro
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--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:SetCountLimit(1,id,EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 1 monsters This card gains 200 ATK for each "Ghostrick" card you control. Once per turn (Quick Effect): You can detach 1 material from this card, then target 1 face-up monster on the field; halve its ATK, until the end of this turn. If this card is sent to the GY: You can target 1 other "Ghostrick" card in your... | --ゴーストリック・デュラハン
--Ghostrick Dullahan
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,1,2)
c:EnableReviveLimit()
--atk
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is destroyed by your opponent's card (either by battle or by card effect), your opponent cannot Special Summon a monster, or activate Spells, Traps, Spell/Trap effects, or Monster Card effects, for the rest of this turn. | --エレキツネ
--Wattfox
local s,id=GetID()
function s.initial_effect(c)
--act limit
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_DESTROYED)
e1:SetCondition(s.condition)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as a "Salamangreat" card.) If your opponent controls more cards than you do: Target 1 Link Monster your opponent controls; draw cards equal to its Link Rating. You can only activate 1 "Burning Draw" per turn. You cannot Normal or Special Summon monsters the turn you activate this card, exce... | --逆巻く炎の宝札
--Burning Draw
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The equipped monster gains 800 ATK for each other face-up monster on the field that has the same name it does. | --ヘル・アライアンス
--Chthonian Alliance
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--Atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(s.value)
c:RegisterEffect(e2)
end
function s.filter(c,code)
return c:IsFaceup() and c:IsCode(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Inflict 1000 points of damage to your opponent's Life Points and 500 points of damage to your Life Points. | --火炎地獄
--Tremendous Fire
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DAMAGE)
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,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Negate the effects of monsters in the Extra Monster Zones while this card is in the Main Monster Zone. When this card is destroyed by battle: You can Special Summon 1 "Beatraptor" from your Deck. You can only use this effect of "Beatraptor" once per turn. | --縄張恐竜
--Beatraptor
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--disable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_DISABLE)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE)
e1:SetCondition(s.discon)
e1:SetTarget(s.d... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned, unless you control a "Ghostrick" monster. Once per turn: You can change this card to face-down Defense Position. When this card is flipped face-up: During the End Phase, change as many face-up monsters on the field as possible to face-down Defense Position, then you can Special Summon 1 "Ghos... | --ゴーストリックの人形
--Ghostrick Doll
local s,id=GetID()
function s.initial_effect(c)
--Summon limit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_SUMMON)
e1:SetCondition(s.sumcon)
c:RegisterEffect(e1)
--Change itself to face-down
local e2=Effect.CreateEffect(c)
e2:SetDescript... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters with the same Type and Attribute, except Tokens When a Spell/Trap Card or effect is activated (Quick Effect): You can send 1 Fairy monster from your hand to the GY; negate the activation, and if you do, destroy it. If this card in your possession is sent to your GY by your opponent: You can add up to 2 Ritua... | --虚光の宣告者
--Herald of Mirage Lights
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,aux.NOT(aux.FilterBoolFunctionEx(Card.IsType,TYPE_TOKEN)),2,nil,s.spcheck)
--Negate Spell/Trap or effect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can Special Summon 1 Level 5 or lower "Earthbound" monster from your Deck or GY, except "Earthbound Prisoner Ground Keeper", also you cannot Special Summon from the Extra Deck for the rest of this turn, except Fusion or Synchro Monsters. You can only use this effect of "E... | --地縛囚人グランド・キーパー
--Earthbound Prisoner Ground Keeper
--Scripted by Satella
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Level 5 or lower "Earthbound" monster from your Deck or GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Effect Monsters While this card is co-linked, it and its co-linked monsters gain 500 ATK, also your opponent cannot target any of them with card effects. You can target 1 Link-3 or lower Cyberse Link Monster in your GY, except "Transcode Talker"; Special Summon it to your zone this card points to. You cannot Special... | --トランスコード・トーカー
--Transcode Talker
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2)
--atk gain
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card on the field is unaffected by all other card effects, as long as "Necrovalley" is also on the field. | --墓守の異端者
--Gravekeeper's Heretic
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_IMMUNE_EFFECT)
e1:SetCondition(s.con)
e1:SetValue(s.efilter)
c:RegisterEffect(e1)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 WATER Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned: You can Special Summon 1 Level 4 or lower Fish monster from your hand or GY in Defense Position, then you can Special Summon 1 monster with that same name from your GY. You can only use this effect of "White Aura Porpoise" once per turn. If this ca... | --白闘気砂滑
--White Aura Porpoise
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 WATER Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),1,1,Synchro.NonTuner(nil),1,99)
--Special Summo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 face-up Attack Position monsters you control with the same ATK; this turn, one of them can attack your opponent directly and the other cannot attack. | --クロス・アタック
--Cross Attack
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... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When the equipped monster is destroyed and this card is sent to the Graveyard, inflict damage to the player who controlled the equipped monster, equal to the monster's original DEF. | --呪いのお札
--Cursed Bill
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--damage
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(id,0))
e3:SetCategory(CATEGORY_DAMAGE)
e3:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e3:SetCode(EVENT_TO_GRAVE)
e3:SetCondition(s.damcon)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by banishing 1 face-up monster you control or 1 monster in your GY; Special Summon this card as a Normal Monster (Spellcaster/LIGHT/ATK 0/DEF 0) with the same Level as that banished monster. (This card is also still a Trap.) You can only activate 1 "Dwimmered Glimmer" per turn. | --救魔の奇石
--Dwimmered Glimmer
--Scripted by Eerie Code
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.activa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] If you have a Pendulum Monster Card with the same Level as this card in your other Pendulum Zone: You can destroy the card in your other Pendulum Zone, and if you do, Special Summon this card. You can only use this effect of "Saambell the Star Bonder" once per turn. ---------------------------------... | --絆醒師セームベル
--Saambell the Star Bonder
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Pendulum Summon
Pendulum.AddProcedure(c)
--Destroy and Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON)
e1:SetTyp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card's Normal Summon cannot be negated. After this card was Normal Summoned, your opponent cannot activate Counter Trap Cards for the rest of that turn. | --アボイド・ドラゴン
--Dodger Dragon
local s,id=GetID()
function s.initial_effect(c)
--summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_DISABLE_SUMMON)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
c:RegisterEffect(e1)
--summon success
local e2=Effect.Cre... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 4 Level 10 monsters Cannot be destroyed by battle. When a monster you control inflicts battle damage to your opponent: You gain LP equal to the damage they took. If this card has "Number 92: Heart-eartH Dragon" as an Xyz Material, it gains this effect. ● Once per turn: You can detach 1 material from this card; negate t... | --CNo.92 偽骸虚龍 Heart-eartH Chaos Dragon
--Number C92: Heart-eartH Chaos Dragon
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,10,4)
c:EnableReviveLimit()
--battle
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetVal... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you Normal or Special Summon a "U.A." monster(s) (except during the Damage Step): You can Special Summon this card from your hand. If this card is Special Summoned: You can activate 1 of these effects. ● Target 1 card on the field; destroy it. ● Negate the effects of all face-up monsters on the field until the end o... | --U.A.プレイングマネージャー
--U.A. Player Manager
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card destroys an opponent's monster by battle: Draw 1 card, then return 1 card from your hand to the bottom of the Deck. | --白兵戦型お手伝いロボ
--Helping Robo for Combat
local s,id=GetID()
function s.initial_effect(c)
--Draw 1 card and return 1 card to the Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned with "Assault Mode Activate". You can only use each of the following effects of "T.G. Halberd Cannon/Assault Mode" once per turn. ● When your opponent would Summon a monster (Quick Effect): You can negate the Summon, and if you do, banish that monster and all Spec... | --TG ハルバード・キャノン/バスター
--T.G. Halberd Cannon/Assault Mode
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
c:AddMustBeSpecialSummoned()
--Negate an opponent's Summon, and if you do, banish that monster and all Special Summoned monsters your opponent controls
local e1a=Eff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains ATK equal to the total Link Rating of the Link Monsters in your GY x 400. During the Main Phase, if this card is in your hand (Quick Effect): You can Tribute 1 Cyberse monster or 1 Link Monster; Special Summon this card. You can only use this effect of "L Magi Mergy" once per turn. | --Lマジマージ
--L Magi Mergy
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from the 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:SetRang... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Geargia" monster, you can Special Summon this card (from your hand) in Defense Position. When this card is sent from the field to the Graveyard: You can target 1 "Geargia" monster in your Graveyard, except "Geargiaccelerator"; add that target to your hand. | --ギアギアクセル
--Geargiaccelerator
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_SPSUM_PARAM)
e1:SetRange(LOCATION_HAND)
e1:SetTargetRange(POS_FACEUP_DEFENSE,0)
e1:SetCondition... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal Summoned: You can Special Summon 1 "Photon Delta Wing" from your hand or Deck in Defense Position, also you cannot Special Summon for the rest of this turn, except LIGHT monsters. Your opponent cannot declare an attack while you control another "Photon Delta Wing". | --フォトン・デルタ・ウィング
--Photon Delta Wing
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Photon Delta Wing" from the hand or Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gain 3000 LP. If this face-up card leaves the field, the controller of this card takes 3000 damage. | --女神の加護
--Aegis of Gaia
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_RECOVER)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.rectg)
e1:SetOperation(s.recop)
c:RegisterEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters You can detach 1 material from this card, then target 1 Level/Rank 4 Psychic monster in your GY, except "Sakra Vendirage"; Special Summon it. If a monster(s) is Special Summoned, while this card is in your Monster Zone (except during the Damage Step): You can target 1 other face-up monster on the fie... | --雷霆ノ魔軍神
--Sakra Vendirage
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 4 monsters
Xyz.AddProcedure(c,nil,4,2)
--Special Summon 1 Level/Rank 4 Psychic monster from your GY, except "Sakra Vendirage"
local e1=Effect.CreateEffect(c)
e1:SetDe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] If a "Performapal" monster(s) is Pendulum Summoned to your field: All "Performapal" monsters you currently control gain 1000 ATK until the end of this turn (even if this card leaves the field). ---------------------------------------- [ Monster Effect ] If this card is Special Summoned: You can targ... | --EMペンデュラム・マジシャン
--Performapal Pendulum Sorcerer
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e2:SetRange(LOCATION_PZONE)
e2:SetCode(EVENT_SPSUMMON_SUCCESS)
e2:SetCondition(s.a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card you control is destroyed by your opponent's card (either by battle or by card effect) and sent to your Graveyard: You can excavate the top card of your Deck, and if it is a Plant-Type monster, send it to the Graveyard. Otherwise, place it on the bottom of your Deck. If this card is excavated from the Dec... | --森羅の蜜柑子 シトラ
--Sylvan Mikorange
local s,id=GetID()
function s.initial_effect(c)
--Excavate the top card of your Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DECKDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Monsters your opponent controls lose 300 ATK/DEF. You can only use each of the following effects of "Urubonus, the Avatar of Malice" once per turn. You can Tribute 1 Reptile monster; Special Summon this card from your hand. You can Tribute 1 monster; all monsters your opponent currently controls lose ATK/DEF equal to t... | --呪念の化身ウルボヌス
--Urubonus, the Avatar of Malice
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,{id,0})
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. Neither player can Special Summon monsters. | --虚無魔人
--Vanity's Fiend
local s,id=GetID()
function s.initial_effect(c)
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetValue(aux.FALSE)
c:RegisterEffect(e1)
--dis... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you Ritual Summon exactly 1 WATER Ritual Monster with a card effect that requires use of monsters, this card can be used as the entire requirement. You can discard this card; add 1 "Gishki" Ritual Monster from your Deck to your hand. | --ヴィジョン・リチュア
--Gishki Vision
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCost(Cost.SelfDiscard)
e1:SetTarget(s.targ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If the only monster you control is "Worm Xex", you can Special Summon this card from your Graveyard in face-down Defense Position. If you do, remove it from play when it is removed from the field. When this card is flipped face-up, select 1 face-up monster your opponent controls, and return it to its owner's hand. | --ワーム・ヤガン
--Worm Yagan
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_GRAVE)
e1:SetCondition(s.spcon)
e1:SetTarget(s.sptg)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is treated as a Normal Monster while face-up on the field. While equipped with a "Noble Arms" Equip Spell, this card becomes an Effect Monster with these effects. ● This card becomes DARK and its Level is increased by 1. ● During your Main Phase: You can reveal 3 "Noble Arms" cards from your Deck, have your o... | --聖騎士ボールス
--Noble Knight Borz
local s,id=GetID()
function s.initial_effect(c)
--Normal monster
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_ADD_TYPE)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.eqcon1)
e1:SetValue(TYPE_NORMAL)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a "Crystal Beast" monster you control is destroyed by battle and sent to the GY: Place 1 "Crystal Beast" monster from your Deck face-up in your Spell & Trap Zone as a Continuous Spell, and if you do, you take no battle damage for the rest of this turn. | --宝玉の双璧
--Crystal Pair
local s,id=GetID()
function s.initial_effect(c)
--Place 1 "Crystal Beast" monster from your Deck face-up in your Spell & Trap Zone as a Continuous Spell
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_BATTLE_DESTROYED)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned: Target 1 face-up card your opponent controls; banish that target. If this face-up card leaves the field: Set the card that was banished by this effect to your opponent's side of the field. * The above text is unofficial and describes the card's functionality in the OCG. | --スペースタイムポリス
--Space-Time Police
local s,id=GetID()
function s.initial_effect(c)
--remove
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_SPSUMMON_SU... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can activate cards or effects in response to this card's activation. When a monster declares an attack: Destroy 2 Set cards you control, and if you do, negate that attack, then, if any Monster Cards were destroyed by this effect and sent to the GY, choose 1 and destroy as many monsters your opponent cont... | --報復の隠し歯
--Hidden Fangs of Revenge
--Scripted by Eerie Code
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:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTarget(s.t... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 7 monsters Once per turn: You can detach 1 material from this card; destroy 2 cards (1 from your hand or field, and 1 your opponent controls). You can banish a total of 2 FIRE and/or Dragon monsters from your hand and/or GY; Special Summon this card from your GY, but return it to the Extra Deck when it leaves t... | --征覇竜-ブレイズ
--Blaze, Supreme Ruler of all Dragons
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure
Xyz.AddProcedure(c,nil,7,2)
--Destroy 1 card in your hand or field and 1 card your opponent controls
local e1=Effect.CreateEffect(c)
e1:SetDescription(au... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only control 1 "Crystal Brilliance". Each "Crystal Beast" monster you control gains ATK equal to its original DEF. If a "Crystal Beast" card(s) is placed in your Spell & Trap Zone, even during the Damage Step: You can send this face-up card to the GY; Special Summon 1 "Crystal Beast" monster from your hand or G... | --宝玉の玲瓏
--Crystal Brilliance
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--Activate
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e0)
--"Crystal Beast" monsters gain ATK equal to their original DEF
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Summoned unless you control a face-up "Gravity Axe - Grarl". If this is the only card in your hand, you can Special Summon it (from your hand). | --ガーディアン・グラール
--Guardian Grarl
local s,id=GetID()
function s.initial_effect(c)
--sum limit
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_SUMMON)
e1:SetCondition(s.sumlimit)
c:RegisterEffect(e1)
local e2=e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters If this card is Link Summoned: You can send 1 "Destruction Sword" card from your Deck to the GY, then, you can Special Summon 1 "Buster Blader" monster from your hand. At the end of your Battle Phase, if your opponent controls no monsters: You can target 1 "Buster Blader" monster you control that did not dec... | --破壊剣士の守護絆竜
--Protector Whelp of the Destruction Swordsman
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,nil,2,2)
--Upon link summon, send 1 "Destruction Sword" from de... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Tri-Brigade" monsters You can discard 2 cards, then target 1 of your banished Level 4 or lower Beast, Beast-Warrior, or Winged Beast monsters; Special Summon it. If this card is sent to the GY: You can add 1 "Tri-Brigade" Spell/Trap from your Deck to your hand, then, place 1 card from your hand on the bottom of the ... | --鉄獣戦線 塊撃のベアブルム
--Tri-Brigade Bearbrumm the Rampant Rampager
--Scripted by Kohana Sonogami
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_TRI_BRIGADE),2,2)
--Special Summon 1 banished Level 4 or lower Beast/Beast-Wa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 2 Machine monsters, then target 1 monster in your GY; Special Summon it. If your opponent controls a Link Monster, you can target 2 monsters, instead. You can only activate 1 "Orcustrated Release" per turn. | --オルフェゴール・リリース
--Orcustrated Release
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Yubel" monster + 1+ Effect Monsters on the field If this card is Fusion Summoned: You can inflict 500 damage to your opponent for each material used. You can only use this effect of "Yubel - The Loving Defender Forever" once per turn. Cannot be destroyed by battle or card effects, also you take no battle damage from... | --ユベル-Das Ewig Liebe Wächter
--Yubel - The Loving Defender Forever
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Summon procedure
Fusion.AddProcMixRep(c,true,true,s.ffilter,1,99,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_YUBEL))
--Inflict 500 damage to your... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Insect Xyz Monster you control; Special Summon from your Extra Deck, 1 Insect monster that is 2 Ranks higher or lower than that monster you control, by using it as the Xyz Material. (This Special Summon is treated as an Xyz Summon. Xyz Materials attached to that target also become Xyz Materials on the Summoned... | --光虫信号
--Bug Signal
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTarget(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 4 monsters Unaffected by other cards' effects. If this card is Xyz Summoned, also once per turn during your Standby Phase: Attach the top 3 cards of your Deck to this card as material, then apply the following effect based on the number of monsters attached to this card. ● 4 or less: Give control of this card ... | --四獣層ウォンキー
--Wonky Quartet
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon Procedure
Xyz.AddProcedure(c,nil,4,2,nil,nil,Xyz.InfiniteMats)
--Unaffected by other cards' effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn: You can target 1 "D/D" monster you control; it gains 800 ATK until the end of this turn (even if this card leaves the field). ---------------------------------------- [ Monster Effect ] Once per turn, if a monster(s) you control is destroyed by battle or card effect: You can target 1 ... | --DDD死偉王ヘル・アーマゲドン
--D/D/D Doom King Armageddon
local s,id=GetID()
function s.initial_effect(c)
--Enable pendulum summon
Pendulum.AddProcedure(c)
--Targeted "D/D" monster gains 800 ATK
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_PZONE)
e1:SetProperty(EFFECT_FLAG_CARD_TARG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can discard any number of cards, and if you do, this card gains 1 Level and 400 ATK for each discarded card, until the end of this turn. | --魔轟神レイヴン
--Fabled Raven
local s,id=GetID()
function s.initial_effect(c)
--lv atk up
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_HANDES+CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(s.tg)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Runick" monsters When an attack is declared involving this card in the Extra Monster Zone: You can banish the top 2 cards of your opponent's Deck. Neither player takes any battle damage from attacks involving this card. If this card on the field is destroyed by battle or card effect: You can target 1 "Runick" Quick-... | --神碑の牙フレーキ
--Freki the Runick Fangs
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_RUNICK),2)
--Neither player takes battle damage
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: Look at the top 3 cards of your Deck, then you can reveal 1 of them that is "Dark Magician" or a Spell/Trap that mentions "Dark Magician", and add it to your hand, also place the remaining cards on top of your Deck in any order. If "Dark Magician" is Normal or Special Summoned to your field... | --黒の魔導陣
--Dark Magical Circle
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)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regi... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.