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: | When your opponent adds a card(s) from their Deck to their hand, including drawing: They must discard 1 of those cards. | --強烈なはたき落とし
--Drastic Drop Off
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_HANDES)
e1:SetCode(EVENT_TO_HAND)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Ancient Gear" monster you control; destroy it, and if you do, inflict damage to your opponent equal to half its original ATK. | --古代の機械爆弾
--Ancient Gear Explosive
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Add up to 3 face-up "Qli" Pendulum Monster Cards from your Extra Deck to your hand. You can only activate 1 "Qlimate Change" per turn. | --隠されし機殻
--Qlimate Change
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:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
s.listed_se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 monster with a Venom Counter(s). Remove all Venom Counters from that card, and inflict 700 damage to your opponent for each Venom Counter removed. | --ヴェノム・スプラッシュ
--Venom Burn
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) you control or in your hand is destroyed by battle or card effect: You can Special Summon this card from your hand. If this card in its owner's possession is destroyed by an opponent's card: You can target 1 other Dinosaur monster and/or 1 Rock monster in your GY; Special Summon them. You can only use e... | --岩竜ベアロック
--Bayerock Dragon
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can look at the top 3 cards of your opponent's Deck, and if you do, place them on top of their Deck in any order. (Quick Effect): You can Tribute this card, then target 1 "SPYRAL" monster you control; it gains 500 ATK for each card your opponent controls. You can banish t... | --SPYRAL GEAR-ドローン
--SPYRAL GEAR - Drone
local s,id=GetID()
function s.initial_effect(c)
--sort
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.sttg)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Cyberse monsters If this card is Link Summoned: You can add 1 "Cynet Fusion" from your Deck to your hand. If a monster(s) is Special Summoned to a zone(s) this card points to (except during the Damage Step): You can target 1 Level 4 or lower Cyberse monster in your GY; Special Summon it, but negate its effects, also ... | --クロック・スパルトイ
--Clock Spartoi
--scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_CYBERSE),2,2)
c:EnableReviveLimit()
--to hand
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: | Linked monsters you control can make up to 2 attacks on monsters during each Battle Phase. You can only use each of the following effects of "Full Active Duplex" once per turn. You can banish 2 Link Monsters from your GY; Special Summon this card from your hand. If this card is sent to the GY: You can target 1 Cyberse ... | --フルアクティブ・デュプレックス
--Full Active Duplex
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Linked monsters can make up to 2 attacks on monsters
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_EXTRA_ATTACK_MONSTER)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time your opponent declares a face-up Defense Position monster as an attack target, toss a coin and call it. If you call it right, change the targeted monster to Attack Position. If you call it wrong, the controller of this card takes damage equal to the amount that the ATK of the attacking monster is higher than ... | --反撃準備
--Prepare to Strike Back
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_BATTLE_START)
e1:SetTarget(s.atktg1)
e1:SetOperation(s.atkop)
c:RegisterEffect(e1)
--Toss a coin and... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You can pay 1000 LP, then target 1 of your banished Dragon monsters; destroy this card, and if you do, add that monster to your hand. You can only use this effect of "Chaos Emperor, the Dragon of Armageddon" once per turn. ---------------------------------------- [ Monster Effect ] Cannot be Normal ... | --終焉龍 カオス・エンペラー
--Chaos Emperor, the Dragon of Armageddon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Pendulum.AddProcedure(c)
--Add 1 banished Dragon monster to the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGOR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Increase the DEF of all monsters on your side of the field by 300 points. | --カオス・シールド
--Yellow Luster Shield
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)
--Def up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOCATION_SZONE)
e2:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned by its own effect. When a face-up monster you control is destroyed by a card effect and sent to the GY (except during the Damage Step): You can Special Summon this card from your hand. Once per turn: You can target 1 Synchro Monster your opponent controls; equip t... | --機皇帝グランエル∞
--Meklord Emperor Granel
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(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an Xyz Monster battles another monster, that Xyz Monster gains 200 ATK & DEF x its Rank, during damage calculation only. If this face-up card on the field would be destroyed by a card effect, you can detach 1 Xyz Material from a monster you control instead. | --エクシーズ・テリトリー
--Xyz Territory
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)
--ad up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Damage Step of either player's turn, when a "Battlin' Boxer" monster you control is attacking or being attacked: You can banish this card from your hand or Graveyard; that monster gains 1000 ATK, until the end of this turn. You can only use the effect of "Battlin' Boxer Counterpunch" once per turn. | --BK カウンターブロー
--Battlin' Boxer Counterpunch
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetRan... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card destroys an opponent's monster by battle: You can target 1 Cyberse monster with 1500 or less ATK in your GY; Special Summon it. | --リビルディア
--Rebuildeer
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "Dragon Ruler" monster from your hand, GY, or banishment, then immediately after this effect resolves, you can Xyz Summon 1 "Dragon Ruler" Xyz Monster using only "Dragon Ruler" monsters you control. During your Main Phase: You can banish this card from your GY, then target any number of your banished "... | --超竜災禍
--Here There Be Dragons
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Dragon Ruler" monster from your hand, GY, or banishment then you can Xyz Summon 1 "Dragon Ruler" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Apply 1 of these effects. You must control a "Vaalmonica" Monster Card to activate and to resolve this effect. If you control a "Vaalmonica" Link Monster, you can apply both effects in sequence. ● Gain 500 LP, then you can destroy 1 Spell/Trap on the field. ● Take 500 damage, then you can return 1 monster from the fiel... | --律導のヴァルモニカ
--Vaalmonica Followed Rhythm
--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_RECOVER+CATEGORY_DESTROY+CATEGORY_DAMAGE+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a Beast-Type monster you control attacks a Defense Position monster, inflict piercing battle damage to your opponent. If you inflict battle damage to your opponent with this effect: Target 1 face-up monster your opponent controls; that target loses 500 ATK and DEF. (This remains even if this card leaves the field.) | --吠え猛る大地
--Roaring Earth
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)
--pierce
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_PIERCE)
e2:SetRange(LO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Amazoness Queen" + 1 "Amazoness" monster Other "Amazoness" cards you control cannot be destroyed by battle or card effects. If your "Amazoness" monster attacks a Defense Position monster, inflict piercing battle damage to your opponent. If this face-up Fusion Summoned card is destroyed by battle, or leaves the field b... | --アマゾネス女帝
--Amazoness Empress
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,15951532,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_AMAZONESS))
--indes
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as an "Infernity" card.) Special Summon 1 of your "Infernity" monsters that is banished, or in your hand or GY. If a face-up "Infernity" monster(s) you control is destroyed by battle, or leaves the field because of an opponent's card effect, while this card is in your GY: You can Set this c... | --舞い戻った死神
--This Creepy Little Punk
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,{id,0}... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as a "Galaxy-Eyes" card.) Pay half your LP, then target 2 monsters in your GY; Special Summon both, but negate their effects, then, immediately after this effect resolves, Xyz Summon 1 "Number" Xyz Monster using only those 2 monsters, also for the rest of this turn after this card resolves,... | --最後の希望
--Numbers Last Hope
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CH... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you control another Reptile monster, if a Reptile monster you control attacks a Defense Position monster, inflict piercing battle damage. | --ライオ・アリゲーター
--Lion Alligator
local s,id=GetID()
function s.initial_effect(c)
--pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_PIERCE)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
c:RegisterEffect(e1)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | A Fiend-Type monster equipped with this card increases its ATK and DEF by 300 points. | --闇・エネルギー
--Dark Energy
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsRace,RACE_FIEND))
--atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(300)
c:RegisterEffect(e2)
--def up
local e3=Eff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Valkyrion the Magna Warrior" + "Berserkion the Electromagna Warrior" Must be Fusion Summoned with the above Fusion Materials and cannot be Special Summoned by other ways. Once per turn, during either player's turn, when your opponent activates a Spell/Trap Card, or monster effect: You can negate the activation, and if... | --超電導戦機インペリオン・マグナム
--Imperion Magnum the Superconductive Battlebot
local s,id=GetID()
function s.initial_effect(c)
--Fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,false,false,75347539,42901635)
--Special Summon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card on the field can be treated as a Level 8 monster when used for a Synchro Summon. A Synchro Monster that used this card as material gains this effect based on its original Level. ● 8 or lower: Gains 800 ATK/DEF. ● 9 or higher: If this card attacks a Defense Position monster, inflict piercing battle damage. | --ヤマタコオロチ
--Yamatako Orochi
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Can be treated as Level 8 for a Synchro Summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SYNCHRO_LEVEL)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_ONFIELD)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 monster to activate this card. All face-up monsters on the field that you own are unaffected by other Trap Cards. | --暴君の威圧
--Tyrant's Temper
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
c:RegisterEffect(e1)
--immune
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_IM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no cards, you can Special Summon this card (from your hand). A "Utopia" Xyz Monster that was Summoned using this card on the field as material gains this effect. ● If this card is Xyz Summoned: You can add 1 "Rank-Up-Magic" Normal Spell from your Deck to your hand. You can only use this effect of "ZS - A... | --ZS-昇華賢者
--ZS - Ascended Sage
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If an "Abyss Script" Spell Card, or its effect, was activated this turn: Add face-up "Abyss Actor" Pendulum Monsters from your Extra Deck to your hand, up to the number of "Abyss Script" Spells in your GY. Then, you can Special Summon "Abyss Actor" Pendulum Monsters from your hand with different names, up to the number... | --魔界劇団のカーテンコール
--Abyss Actors' Curtain Call
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Metalfoes" monster + 1 Pendulum Monster You can target 2 "Metalfoes" cards in your GY and 1 card on the field; shuffle the targets from your GY into the Deck, and if you do, return the target on the field to the hand. You can only use this effect of "Metalfoes Mithrilium" once per turn. If this card is sent from the... | --メタルフォーゼ・ミスリエル
--Metalfoes Mithrilium
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_METALFOES),aux.FilterBoolFunctionEx(Card.IsType,TYPE_PENDULUM))
--return
local e2=Effect.CreateEffect(c)
e2:SetCa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: Place 1 Guard Counter on it. This card gains 300 ATK for each Guard Counter on it. Once per turn: You can target 1 other face-up card you control; remove 1 Guard Counter from this card, and if you do, place 1 Guard Counter on that target (if that card would ever be destroyed,... | --カードガード
--Card Guard
local s,id=GetID()
function s.initial_effect(c)
--summon success
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_COUNTER)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.addct)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "World Chalice" monsters Gains 300 ATK for each "World Legacy" monster in your GY with a different name. You can Tribute 1 "World Chalice" monster this card points to, then target 1 other monster in your GY; Special Summon it to your zone this card points to. You can only use this effect of "Auram the World Chalice B... | --星杯剣士アウラム
--Auram the World Chalice Blademaster
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_WORLD_CHALICE),2,2)
c:EnableReviveLimit()
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLA... |
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 having 5 or more LIGHT monsters with different names in your Graveyard, and cannot be Special Summoned by other ways. Once per turn, during either player's turn, when a Spell/Trap Card is activated: You can banish 1 Warrior-Type monster from yo... | --ライトレイ ギア・フリード
--Lightray Gearfried
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Appliancer" monster Cannot be used as Link Material the turn it is Link Summoned. You can Tribute this co-linked card; Special Summon 1 "Appliancer" Link Monster from your GY, except "Appliancer Kappa Scale". You can Tribute this card that is not co-linked; Special Summon 1 Level 4 or lower "Appliancer" monster from... | --計量機塊カッパスケール
--Appliancer Kappa Scale
--Anime version scripted by pyrQ, updated by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Link Summon
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_APPLIANCER),1)
--cannot be Link Material
local e1=Effect.CreateEffect(c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ monsters, including a Fiend monster During the Main Phase (Quick Effect): You can discard 1 card, then activate 1 of these effects; ● Destroy 1 card on the field. ● Banish this card (until the End Phase), and if you do, Special Summon 1 LIGHT or DARK monster from your GY. During your Standby Phase: You can draw card... | --光なき影 ア=バオ・ア・クゥー
--A Bao A Qu, the Lightless Shadow
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2+ monsters, including a Fiend monster
Link.AddProcedure(c,nil,2,4,s.matcheck)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned from the Graveyard: Draw 1 card. | --灼熱ゾンビ
--Molten Zombie
local s,id=GetID()
function s.initial_effect(c)
--draw
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_TARGET)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Level 4 or lower EARTH Rock monster: You can target 1 Level 4 or lower "Magnet Warrior" monster in your GY; Special Summon it. You can only use this effect of "Magnetic Field" once per turn. Once per turn, at the end of the Damage Step, when an EARTH Rock monster you control battled an opponent's monst... | --マグネット・フィールド
--Magnetic Field
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Special summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While "Umi" is not on the field, this card gains 700 ATK, also it cannot attack directly. While "Umi" is on the field: You can target 1 face-up non-WATER monster on the field; destroy it. You can only use this effect of "Amphibious Bugroth MK-11" once per turn. | --水陸両用バグロス Mk-11
--Amphibious Bugroth MK-11
--Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
--Cannot attack directly if "Umi" isn't active
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_CANNOT_DIRECT_ATTACK)
e1:SetRange(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish 1 "lswarm" monster from your GY, then target 1 "lswarm" monster in your GY; add it to your hand. If the previous effect was activated this turn (and was not negated): You can activate this effect; Immediately after this effect resolves, Normal Summon 1 "lswarm" monster. While this card is in the GY, if i... | --ヴェルズ・ケルキオン
--Evilswarm Kerykeion
local s,id=GetID()
function s.initial_effect(c)
--salvage
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned or Set. Must be Special Summoned by "Yubel", and cannot be Special Summoned by other ways. This card cannot be destroyed by battle. You take no Battle Damage from battles involving this card. Before damage calculation, when this face-up Attack Position card is attacked by an opponent's monster... | --ユベル-Das Abscheulich Ritter
--Yubel - Terror Incarnate
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Cannot be destroyed by battle
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(1)
c:RegisterEffect(e1)
--You take no ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1 or more non-Tuner LIGHT monsters Once per turn: You can pay 1000 LP, then target 1 card on the field; banish that target. When this card is destroyed: You can target any number of other "Lightsworn" monsters in your Graveyard; shuffle them into the Deck, and if you do, you gain 300 LP for each returned card... | --ライトロード・アーク ミカエル
--Michael, the Arch-Lightsworn
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_LIGHT),1,99)
c:EnableReviveLimit()
--remove
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 "Superheavy Samurai" monster you control; equip this monster from your hand or your side of the field to that target. Its Level becomes 5. During either player's turn: You can discard this card, then target 1 Defense Position "Superheavy Samurai" monster you control; until the end of this turn, it lose... | --超重武者装留ファイヤー・アーマー
--Superheavy Samurai Soulfire Suit
local s,id=GetID()
function s.initial_effect(c)
--Equip this monster to 1 "Superheavy Samurai" monster you control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetPrope... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Gazelle the King of Mythical Beasts" + "Berfomet" (This card is always treated as a "Phantom Beast" card.) When this card is destroyed: You can target 1 "Berfomet" or 1 "Gazelle the King of Mythical Beasts" in your GY; Special Summon that target. | --有翼幻獣キマイラ
--Chimera the Flying Mythical Beast
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,5818798,77207191)
--Special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn, when a card or effect is activated that would inflict damage to you: You can activate this effect; you cannot Special Summon monsters for the rest of this turn, except "Performage" monsters, also Special Summon this card from your hand, and if you do, make that effect damage to you 0. If Su... | --Emフレイム・イーター
--Performage Flame Eater
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand
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(aux.damcon1)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your "Ancient Warriors" monster battles, your opponent cannot activate any Spell/Trap Cards until the end of the Damage Step. You can only use 1 of the following effects of "Ancient Warriors Saga - Defense of Changban" per turn, and only once that turn. ● At the start of your opponent's Battle Phase: You can send th... | --戦華史略-長坂之雄
--Ancient Warriors Saga - Defense of Changban
--Scripted by AlphaKretin
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)
e0:SetHintTiming(0,TIMING_BATTLE_START)
c:RegisterEffect(e0)
--If your "Anci... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Sprite's Blessing". When your opponent activates a card or effect that targets a monster you control (Quick Effect): You can discard this card; negate the activation. When your opponent would Special Summon a monster(s) (Quick Effect): You can return this card to the hand; negate t... | --古聖戴サウラヴィス
--Sauravis, the Ancient and Ascended
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Negate the activation of an opponent's effect that targets a monster you control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_NEGATE)
e1:SetType... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your End Phase: You can target 2 "Constellar" Xyz Monsters you control that have Xyz Material; detach all Xyz Materials from both Xyz Monsters, and if you do, halve your opponent's LP. You can only use this effect of "Constellar Tempest" once per Duel. Once per turn, during your Standby Phase: You can target 1 "... | --セイクリッド・テンペスト
--Constellar Tempest
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)
--lp
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYPE_FIE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target up to 2 monsters your opponent controls; banish them until the End Phase, then your opponent gains 1000 LP for each monster that left the field by this effect. | --イチロクの魔物台帳
--Ichiroku's Ledger Book
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Banish up to 2 of opponent's monsters
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You can target 1 "Performapal" or "Odd-Eyes" card in your GY; add it to your hand, then destroy this card. You can only use this effect of "Performapal Odd-Eyes Seer" once per turn. ---------------------------------------- [ Monster Effect ] During your Main Phase, if you control this Pendulum Summo... | --EMオッドアイズ・プリースト
--Performapal Odd-Eyes Seer
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
--Add to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must first be Special Summoned (from your hand) by banishing 3 "Meklord" monsters with different names from your GY. Once per turn, when this card declares an attack: You can look at your opponent's Extra Deck and equip 1 monster from it to this card. This card gains ATK equal to the comb... | --機皇神龍トリスケリア
--Meklord Astro Dragon Triskelion
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Must first be Special Summoned (from your hand) by banishing 3 "Meklord" monsters with different names from your GY
local e0=Effect.CreateEffect(c)
e0:SetDescription(aux.Strin... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Insect, Plant, and Reptile monsters on the field gain 300 ATK/DEF, also all other monsters on the field lose 300 ATK/DEF. During your Main Phase: You can activate 1 of these effects; ● Add 1 "Ragnaraika" monster from your Deck to your hand, then discard 1 card. ● Special Summon 1 of your "Ragnaraika" monsters from your... | --蕾禍繚乱狂咲
--Ragnaraika Bloom
--scripted by pyrQ
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)
--Insect, Plant, and Reptile monsters gain 300 ATK/DEF
local e1=Effect.CreateEffect(c)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a player would take damage from a battle involving this card, they gain that much LP, instead. | --衛生兵マッスラー
--Muscle Medic
local s,id=GetID()
function s.initial_effect(c)
--damage conversion
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_REVERSE_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(1,1)
e1:SetValue(s.rev)
c:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Commencement Dance". | --ダンシング・ソルジャー
--Performance of Sword
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
end
s.listed_names={43417563} |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a monster you control. Once per turn, you can look at 1 random card in your opponent's hand. The equipped monster cannot attack the turn you activate this effect. | --Ωメガネ
--Omega Goggles
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,0)
--confirm
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(id,0))
e3:SetType(EFFECT_TYPE_IGNITION)
e3:SetRange(LOCATION_SZONE)
e3:SetCountLimit(1)
e3:SetCost(s.cfcost)
e3:SetTarget(s.cftg)
e3:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can Special Summon 1 Zombie monster from your hand. You must control no monsters to activate and to resolve this effect. | --ミイラの呼び声
--Call of the Mummy
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The Battle Positions of face-up monsters that are flipped face-up after activation of this card cannot be changed, except with a card effect. | --砂漠の裁き
--Judgment of the Desert
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e2:SetCode(EVENT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a player activates "Pot of Greed": Activate this effect; they can draw 1 card. This card must be in face-up Attack Position to activate and to resolve this effect. | --強欲な壺の精霊
--Spirit of the Pot of Greed
local s,id=GetID()
function s.initial_effect(c)
--The player that activates "Pot of Greed" can draw 1 card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon this card as an Effect Monster (Spellcaster/DARK/Level 9/ATK 1450/DEF 1950). (This card is also still a Trap.) If Summoned this way, this card can be used as a substitute for any 1 Fusion Material that lists an Attribute, on a "Shaddoll" Fusion Monster Card. If this card is sent to the GY by a card effec... | --影依の原核
--Shaddoll Core
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:SetHintTiming(0,TIMING_END_PHASE)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can send 1 WATER monster from your Deck to the GY; add 1 "Genex Controller" from your Deck to your hand. | --ジェネクス・ウンディーネ
--Genex Undine
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCost(s.cost)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your opponent's turn: You can banish this card from your Graveyard; negate the next attack this turn from a monster your opponent controls (this is a Quick Effect). | --ネクロ・ガードナー
--Necro Gardna
local s,id=GetID()
function s.initial_effect(c)
--disable attack
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_ATTACK)
e1:SetRange(LOCATION_GRAVE)
e1:SetCondition(s.condition... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters Monsters this card points to lose 800 ATK/DEF. When a Cyberse Link Monster is Link Summoned to your field, while this card is in the GY, except the turn this card was sent to the GY: You can Special Summon this card to your zone that monster points to, but it cannot be used as Link Material, also banish it w... | --スペース・インシュレイター
--Space Insulator
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)
--Monsters this card points to loses 800 ATK/DEF
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal Summoned: You can target up to 2 monsters in your opponent's GY; Special Summon those monsters to your field in Defense Position, but their effects are negated. When a monster's effect is activated, while a monster(s) with its same name is in the GY(s) (Quick Effect): You can negate the activatio... | --竜血公ヴァンパイア
--Vampire Voivode
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--If normal summoned, special summon up to 2 monsters from opponent's GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,1))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent's monster declares an attack: Tribute 1 monster, then target the attacking monster; destroy that target, then inflict 1000 damage to your opponent. | --カオス・バースト
--Chaos Burst
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetCost(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase (Quick Effect): You can Special Summon this card from your hand, and if you do, banish 1 "Kashtira" or "Tearlaments" card from your hand or GY. If this card is Normal or Special Summoned: You can send the top 3 cards of either player's Deck to the GY. If this card is sent to the GY by card effect:... | --スティアラメンツ・クシャトリラ
--Tearlaments Kashtira
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Tribute Summoned: You can target up to 2 Spell/Trap Cards on the field; destroy those targets. | --氷帝メビウス
--Mobius the Frost Monarch
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_SUMMON... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 DARK monster with 2000 or more DEF; look at your opponent's hand, all monsters they control, and all cards they draw until the 3rd end of their turn, and destroy all those monsters with 1500 or less DEF. * The above text is unofficial and describes the card's functionality in the OCG. | --影のデッキ破壊ウイルス
--Full Force Virus
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_TOHAND|TIMINGS_CHECK_MONSTER)
e1:SetCost(s.cost)
e1:SetTarget(s.tar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can add 1 "Shaddoll" Spell/Trap from your Deck to your hand. If this card is sent to the GY by a card effect: You can add 1 "Shaddoll" monster from your Deck to your hand, except "Shaddoll Hedgehog". You can only use 1 "Shaddoll Hedgehog" effect per turn, and only once that turn. | --シャドール・ヘッジホッグ
--Shaddoll Hedgehog
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is sent from the field to the Graveyard by a card effect, take control of 1 Defense Position monster your opponent controls. | --インフォーマー・スパイダー
--Informer Spider
local s,id=GetID()
function s.initial_effect(c)
--control
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_CONTROL)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e2:SetProperty(EFFECT_FLAG_CARD_TARGET)
e2:SetCode(EVENT_TO_GRAVE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 7 Dragon monsters (Quick Effect): You can send 1 Level 7 "Dragon Ruler" monster from your Deck to the GY and detach 1 material from this card; this effect becomes that sent monster's effect that discards itself to activate. If this card is destroyed by battle, or if this card in its owner's possession is destro... | --極征竜-シャスマティス
--Chasma, Dragon Ruler of Auroras
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 7 Dragon monsters
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DRAGON),7,2)
--This effect becomes the effect of a Level 7 "Dragon R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Monsters cannot target Level 6 or lower "Harpie" monsters for attacks. You can only use each of the following effects of "Harpie's Pet Dragon - Fearsome Fire Blast" once per turn. If you control a Level 6 or lower WIND monster: You can Special Summon this card from your hand in Defense Position. If this card is sent fr... | --ハーピィズペット竜-セイント・ファイアー・ギガ
--Harpie's Pet Dragon - Fearsome Fire Blast
--scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--monsters cannot target Harpies for attacks
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,LOCATION... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 3 monsters If the battle position of this card is changed: You can Special Summon 1 Insect monster from your hand or GY in Defense Position. When a monster on the field activates its effect (Quick Effect): You can detach 1 material from this card, then target that monster; negate its effects, then make 1 Insect... | --No.3 地獄蝉王ローカスト・キング
--Number 3: Cicada King
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Xyz.AddProcedure(c,nil,3,2)
--Special Summon an Insect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetTy... |
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 sending 3 "Cubic" monsters you control to the GY, and cannot be Special Summoned by other ways. If Summoned this way, this card gains 3000 ATK. This card can make a second and third attack during each Battle Phase. If this card in your possessi... | --方界超獣バスター・ガンダイル
--Buster Gundil the Cubic Behemoth
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--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)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. You can Tribute 5 monsters to Tribute Summon (but not Set) this card. This card's ATK/DEF become the combined original ATK/DEF of the Tributed monsters. If this card Summoned this way destroys a DARK Fiend monster owned by your opponent, you win the Duel at the end of the Damage Step. | --守護神エクゾディア
--Exodia, the Legendary Defender
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--cannot special summon
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:Re... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: During the End Phase of this turn, destroy as many Defense Position monsters your opponent controls as possible, and if you do, inflict 500 damage to your opponent for each monster destroyed. | --占術姫ウィジャモリガン
--Prediction Princess Astromorrigan
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetOperation(s.flipop)
c:RegisterEffect(e1)
end
function s.flipop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
--destroy
lo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 3 monsters Once per turn: You can detach 1 Xyz Material from this card; inflict 100 damage to your opponent for each of your banished monsters. | --潜航母艦エアロ・シャーク
--Submersible Carrier Aero Shark
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,3,2)
c:EnableReviveLimit()
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase or your opponent's Battle Phase: You can Special Summon 1 "tellarknight" monster from your hand. | --神星なる波動
--Stellarnova Wave
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)
--Special Summon 1 "tellarknight" monster from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 LIGHT monster to target 1 banished monster; your opponent can reveal 1 Trap Card from their hand to negate this card's effect, otherwise you Special Summon that monster. | --光霊術-「聖」
--Spiritual Light Art - Hijiri
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCost(s.cost)
e1:SetTarget(s.targ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters When your opponent activates a monster effect (Quick Effect): You can banish it. If this attacking card destroys an Effect Monster by battle and sends it to the GY: This card gains ATK equal to the destroyed monster's original ATK, also it can make a second attack on a monster during thi... | --天威の龍鬼神
--Draco Berserker of the Tenyi
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Synchro summon procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Banish opponent's monster, that activated its effe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ monsters Once while face-up on the field (Quick Effect): You can target monsters on the field and/or GY up to the number of monsters co-linked to this card; return them to the hand. If a monster this card points to is destroyed by battle or sent to the GY: You can Special Summon 1 Cyberse monster from your hand. You... | --ファイアウォール・ドラゴン
--Firewall Dragon
local s,id=GetID()
function s.initial_effect(c)
--Link Summon procedure
Link.AddProcedure(c,nil,2)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Return monsters from field/GY to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, if you control an "Aroma" monster: You can gain 500 LP, also all monsters you control gain 500 ATK and DEF until the end of your opponent's next turn (even if this card leaves the field). If a face-up "Aroma" monster you control is destroyed by battle or card effect and sent to the Graveyard: Gain 1000 L... | --アロマガーデン
--Aroma Garden
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)
--Gain 500 LP and all monsters you control gain 500 ATK/DEF
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Remove from play 1 Tuner monster from your Graveyard. Target face-up monster you control gains ATK equal to the removed monster's ATK. | --イージーチューニング
--Battle Tuned
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_ST... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard 1 card; add 1 "Gladiator Beast" monster from your Deck to your hand. When an opponent's monster declares an attack: You can Special Summon 1 "Gladiator Beast" monster from your Deck, and it cannot be destroyed by battle. During the End Phase, if a "Gladiator Beast" monster was Special Summoned from your... | --剣闘獣の闘技場-フラヴィス
--Flavian - Colosseum of the Gladiator Beasts
--scripted by pyrQ
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)
--Add 1 "Gladiator Beast" monster from your Deck to your ha... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] If another "Dinomist" card(s) you control would be destroyed by battle or an opponent's card effect, you can destroy this card instead. ---------------------------------------- [ Monster Effect ] You can Tribute 1 other "Dinomist" monster, then activate 1 of these effects; ● This card can attack you... | --ダイナミスト・スピノス
--Dinomist Spinos
local s,id=GetID()
function s.initial_effect(c)
--Enable pendulum summon
Pendulum.AddProcedure(c)
--Substitute destruction for a "Dinomist" card(s)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_DESTROY_REPLACE)
e1:SetRange(L... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control an Attack Position Insect monster, you can Special Summon this card (from your hand). You can only Special Summon "Dream Cicada" once per turn this way. If this card is Normal or Special Summoned: You can target 1 monster on the field; change its battle position. You can only use this effect of "Dream Ci... | --夢蝉スイミンミン
--Dream Cicada
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from hand if you control an Insect in Attack Position
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRan... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Link Monster's effect is activated that targets this face-up card on the field (Quick Effect): You can destroy this card, then destroy 1 monster in the column this card was in, and if you do, destroy any monsters in that card's horizontally adjacent zones. During the End Phase, if this card is in the GY because ... | --シェルヴァレット・ドラゴン
--Shelrokket Dragon
--Scripted by Eerie Code; fixed by senpaizuri
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetPrope... |
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 add 1 Cyberse Ritual Monster from your Deck to your hand. You can detach 1 material from this card; Ritual Summon 1 Ritual Monster from your hand, by Tributing monsters from your hand or field whose total Levels equal or exceed its Level. If this card is sent to ... | --コード・イグナイター
--Code Igniter
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 4 monsters
Xyz.AddProcedure(c,nil,4,2)
--Add 1 Cyberse Ritual Monster from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "R.B." monster from your Deck/Extra Deck with a different name than the cards you control. If an "R.B." monster(s) you control would be destroyed by battle or card effect, you can banish this card from your GY instead. You cannot Special Summon from the Extra Deck the turn you activate this card, excep... | --JP Name
--R.B. Stage Landing
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "R.B." monster from your Deck/Extra Deck with a different name from the cards you control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned or Set. Must be Special Summoned (from your hand) by sending 1 face-up "Elemental HERO Neos" and 1 face-up "Yubel" from your Monster Zone to the GY. This card cannot be destroyed by card effects. At the end of the Damage Step, if this card battled an opponent's monster: Inflict damage to your ... | --ネオス・ワイズマン
--Neos Wiseman
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:RegisterEffect(e1)
--spec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Elemental HERO Neos" + "Neo-Spacian Marine Dolphin" Must first be Special Summoned (from your Extra Deck) by shuffling the above cards you control into the Deck. (You do not use "Polymerization".) Once per turn: You can destroy 1 random card in your opponent's hand. | --E・HERO マリン・ネオス
--Elemental HERO Marine Neos
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcCode2(c,CARD_NEOS,78734254,false,false)
Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit)
--destroy
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When you take 1000 or more battle or effect damage: You can Special Summon this card from your hand. You can target 1 monster in your opponent's GY, except a monster with ? ATK; your opponent can choose 1 monster from their Deck, except a monster with ? ATK. If they chose not to, or if the targeted monster has higher A... | --千年の血族
--Millennium Seeker
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Set Spell/Trap on the field; destroy it. During your Main Phase, except the turn this card was sent to the GY: You can banish this card from your GY, then target 1 face-up Spell/Trap on the field; destroy it. You can only use this effect of "Galaxy Cyclone" once per turn. | --ギャラクシー・サイクロン
--Galaxy Cyclone
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.t... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned by a Wyrm monster's effect. If a monster is banished by card effect (except during the Damage Step): You can Special Summon this card from the GY (if it was there when the monster was banished) or hand (even if not), but banish it when it leaves the field. If this... | --深淵の相剣龍
--The Abyss Dragon Swordsoul
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableUnsummonable()
--Must be Special Summoned by a Wyrm monster's effect
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e0:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Majespecter" card in your Pendulum Zone; Special Summon it. | --マジェスペクター・ガスト
--Majespecter Gust
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:SetTarget(s.target)
e1:SetOperation(s.acti... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Fiend monster: Target 1 card on the field; destroy it, then, you can send 1 Fiend monster from your Deck to the GY. | --悪魔の技
--Archfiend's Ghastly Glitch
--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_DESTROY+CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your GY and you control 2 or more "Shiranui" monsters with different names: You can Special Summon this card, but banish it when it leaves the field. If this card is banished: You can target 1 Zombie monster you control; it gains 600 ATK until the end of this turn. You can only use each effect of "Sh... | --不知火の師範
--Shiranui Swordmaster
--Scripted by AlphaKretin
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:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can add 1 face-up Machine Pendulum Monster from your Extra Deck to your hand. If you have no Spells/Traps in your GY: You can Tribute this card; Special Summon 1 EARTH Machine monster with 1500 or less ATK from your hand or GY, except "Superheavy Samurai Security". You ca... | --超重武者ドウC-N
--Superheavy Samurai Security
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Add to the hand 1 Pendulum monster from the Extra Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a Normal Monster. If it battles a monster with a higher Level, the equipped monster gains 500 ATK x the difference in Levels, during that damage calculation only. When this card is sent to the GY: You can place it on top of your Deck. | --下克上の首飾り
--Amulet of Ambition
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsType,TYPE_NORMAL))
--atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetCondition(s.atkcon)
e2:SetValue(s.atkval)
c:Re... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute Summon this card in Attack Position by Tributing 1 Zombie monster. When this card destroys a Zombie monster by battle and sends it to the GY: You can Special Summon that Zombie monster. | --真紅眼の不死竜
--Red-Eyes Zombie Dragon
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)
--special summon
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: | If an EARTH Machine monster is Tributed, or banished face-up: You can Special Summon this card from the GY (if it was there when the monster was Tributed or banished) or hand (even if not), but banish it when it leaves the field. You can only use this effect of "Infinitrack Road Roller" once per turn. An Xyz Monster wh... | --無限起動ロードローラー
--Infinitrack Road Roller
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself if an EARTH Machine monster is Tributed
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must first be Special Summoned (from your hand) by banishing 1 Level 8 or lower Thunder monster from your hand or face-up field, during the turn a Thunder monster's effect was activated in the hand. Once per opponent's turn (Quick Effect): You can banish 2 cards from your GY, including a ... | --天雷震龍-サンダー・ドラゴン
--Thunder Dragonlord
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Special summon procedure
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCod... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can Special Summon 1 Level 3 or lower Beast monster from your Deck in face-down Defense Position. | --素早いビッグハムスター
--Super-Nimble Mega Hamster
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.