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: | Tribute 1 Reptile monster; for every 2 Levels that Tributed monster had on the field, Special Summon up to 1 "Ogdoadic Token" (Reptile/DARK/Level 2/ATK 0/DEF 0). During your Main Phase: You can banish this card from your GY, then target 1 of your banished Reptile monsters; shuffle it into the Deck, then you can send 1 ... | --黎溟界闢
--Ogdoadic Daybreak
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon up to 1 "Ogdoadic Token" for every 2 Levels of the Tributed monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control another "Six Samurai" monster: You can Tribute 1 "Six Samurai" monster, then target 1 monster on the field; destroy that target. | --六武衆の露払い
--Hand of the Six Samurai
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_DESTROY)
e2:SetProperty(EFFECT_FLAG_CARD_TARGET)
e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_MZONE)
e2:SetConditio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 1 Normal Monster you control to the Graveyard, then target 1 monster in either player's Graveyard; Special Summon it, and if you do, equip this card to it. When this card leaves the field, destroy the equipped monster. | --戦線復活の代償
--Symbols of Duty
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.target)
e1:SetOp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish 2 DARK monsters from your GY; add 1 Level 4 DARK monster from your Deck to your hand. | --忍び寄る闇
--Creeping Darkness
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:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] All LIGHT monsters you control gain 300 ATK. ---------------------------------------- [ Monster Effect ] Once per turn: You can target 1 face-up monster you control; this turn, it can attack all Special Summoned monsters your opponent controls, once each. | --EMカレイドスコーピオン
--Performapal Kaleidoscorp
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)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetRange(LOCATION_PZONE)
e2:SetTargetRange(LOCATION_MZONE,0)
e2:SetTarget(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster you control; banish up to 5 "Swordsoul" cards and/or Wyrm monsters from your GY, and if you do, that monster gains 300 ATK for each card banished this way. If this card is banished: You can Special Summon 1 "Swordsoul Token" (Wyrm/Tuner/WATER/Level 4/ATK 0/DEF 0). While that Token is in the Mon... | --瑞相剣究
--Swordsoul Assessment
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Banish up to 5 cards and increase the ATK of a monster you control
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 Level 4 LIGHT monster you control. It is treated as a Tuner monster while it is face-up on the field. | --ライトニング・チューン
--Lightwave Tuning
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)
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: | During Main Phase 2: Special Summon any number of Level 2 or lower monsters with different names from your hand, Deck, and/or GY to your zone(s) a Link Monster(s) points to. You can only activate 1 "Packet Link" per turn. | --パケットリンク
--Packet Link
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_MAIN_END)
e1:SetCountLimit(1,id... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Return 1 Flip Effect Monster from your Graveyard to the top of your Deck. | --リバースソウル
--Soul Reversal
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 Level 3 or lower Sea Serpent monster from your Deck. | --深海のディーヴァ
--Deep Sea Diva
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Level 3 or lower Sea Serpent monster
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_SUM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card was Special Summoned by the effect of a "Gladiator Beast" monster, its original ATK becomes 2100. At the end of the Battle Phase, if this card attacked or was attacked: You can shuffle it into the Deck; Special Summon 1 "Gladiator Beast" monster from your Deck, except "Gladiator Beast Laquari". | --剣闘獣ラクエル
--Gladiator Beast Laquari
local s,id=GetID()
function s.initial_effect(c)
--atk
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SET_BASE_ATTACK)
e1:SetCondition(s.atkcon)
e1:SetValue(2100)
c:RegisterEffect(e1)
--special summon
local e2=Effect.CreateEffect(c)
e2:SetDe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal Summoned: You can send 1 "Zoodiac" card from your Deck to the Graveyard. An Xyz Monster whose original Type is Beast-Warrior and has this card as Xyz Material gains this effect. ● Once per turn: You can detach 1 Xyz Material from this card; Special Summon 1 "Zoodiac Ratpier" from your hand or Dec... | --十二獣モルモラット
--Zoodiac Ratpier
local s,id=GetID()
function s.initial_effect(c)
--send to grave
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.target)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 4 "Noble Knight" monsters You can detach any number of materials from this card, then target that many cards your opponent controls; return them to the hand. If this card is destroyed by battle or card effect and sent to the GY: You can Special Summon 1 "Noble Knight" Xyz Monster from your Extra Deck, except "... | --神聖騎士王コルネウス
--Sacred Noble Knight of King Custennin
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2+ Level 4 "Noble Knight" monsters
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_NOBLE_KNIGHT),4,2,nil,nil,Xyz.InfiniteMats)
--... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your opponent's turn, if this card is in your hand or GY (Quick Effect): You can target 1 "Centur-Ion" monster you control, except "Centur-Ion Emeth VI"; place it in your Spell & Trap Zone as a face-up Continuous Trap, and if you do, Special Summon this card, also you cannot Special Summon "Centur-Ion Emeth VI" ... | --重騎兵エメトⅥ
--Centur-Ion Emeth VI
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Place 1 "Centur-Ion" monster in the Spell/Trap Zone as Continuous Trap
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_QUICK_O)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) in your possession is destroyed by battle or card effect: You can Special Summon this card from your hand. If this card is sent from the field to the GY: You can target 1 monster in your GY with both the same Type and Attribute as a monster you control; add that monster to your hand. You can only use ea... | --響魔従トライコーン
--Tricorn the Cacophonous Concert
--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:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 WATER monster you control and 2 WATER monsters in your Graveyard; shuffle the first target into the Deck, and if you do, add the second targets to your hand. | --儀水鏡の反魂術
--Aquamirror Cycle
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Wyrm monsters You can discard 1 card, then target 1 Wyrm monster in your GY; Special Summon it, also, for the rest of this turn, you cannot activate the effects of monsters Special Summoned from the Extra Deck, except "Tenyi" monsters. When an attack is declared involving your face-up non-Effect Monster: You can targ... | --天威の龍仙女
--Shaman of the Tenyi
local s,id=GetID()
function s.initial_effect(c)
--link summon
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WYRM),2,2)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Junk" monster, you can Special Summon this card (from your hand). | --ジャンク・サーバント
--Junk Servant
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
c:RegisterEffect(e1)
end
s.listed... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase: You can shuffle up to 2 "Evolsaur" monsters from your hand into the Deck, then draw the same number of cards. You can only control 1 face-up "Primordial Soup". | --原初のスープ
--Primordial Soup
local s,id=GetID()
function s.initial_effect(c)
--You can only control 1 "Primordial Soup"
c:SetUniqueOnField(1,0,id)
--Activate
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e0)
--Shuffle up to 2 "Evolsaur" monsters fro... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can target 1 "Mayakashi" monster in your GY, except "Shafu, the Wheeled Mayakashi"; Special Summon it in Defense Position, but negate its effects. You can only use this effect of "Shafu, the Wheeled Mayakashi" once per turn. You cannot Special Summon monsters from the Ext... | --轍の魔妖-俥夫
--Shafu, the Wheeled Mayakashi
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,1))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetProperty(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Shaddoll" monster you control; send 1 "Shaddoll" card from your hand to the GY, and if you do, the targeted monster gains 1000 ATK/DEF, but is changed to face-down Defense Position during the End Phase. | --魂源への影劫回帰
--Purushaddoll Aeon
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you have a "Majespecter" card in your Pendulum Zone, the activation and effects of other "Majespecter" cards activated on your side of the field cannot be negated. Once per turn: You can target 5 "Majespecter" cards in your Graveyard; shuffle all 5 into the Deck, then draw 1 card. | --マジェスペクター・スーパーセル
--Majespecter Supercell
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER)
c:RegisterEffect(e1)
--Draw
local e2=Effect.CreateEffect(c)
e2:SetDescript... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 non-Token Normal Monster you control; Tribute that Normal Monster, and if you do, destroy 1 monster your opponent controls. | --突撃指令
--Order to Charge
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER)
e1:SetTarget(s.targ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with a "Megalith" card. If this card is Ritual Summoned: You can target 1 Ritual Monster in your GY; this card's Level becomes the Level of that target, then add that target to your hand. During the Main Phase (Quick Effect): You can activate this effect; Ritual Summon 1 "Megalith" Ritua... | --メガリス・フール
--Megalith Phul
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Change level and add target to the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reveal 1 Cyberse monster in your hand; apply this effect based on its Attribute, also you cannot Special Summon for the rest of this turn after this card resolves, except Cyberse monsters. ● DARK: Special Summon the revealed monster, and if you do, add 1 Level 4 or lower non-DARK Cyberse monster from your Deck to your ... | --繋がり-Ai-
--A.I. Connect
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters, except Tokens This card gains these effects based on the number of monsters co-linked to this card. ● 1+: When a monster co-linked to this card battles your opponent's monster and inflicts battle damage to them: You can gain that much LP. ● 2: Once per turn (Quick Effect): You can target 2 face-up monsters ... | --バイナル・ソーサレス
--Binary Sorceress
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,s.matfilter,2,2)
c:EnableReviveLimit()
--recover
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCategory(CATEGORY_REC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase: Fusion Summon 1 "Prank-Kids" Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Material. For the rest of this turn after this card resolves, you cannot Normal or Special Summon monsters, except "Prank-Kids" monsters. | --プランキッズの大暴走
--Prank-Kids Pandemonium
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Fusion.CreateSummonEff(c,aux.FilterBoolFunction(Card.IsSetCard,SET_PRANK_KIDS),nil,nil,nil,nil,s.stage2)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER|TIMING_MAIN_END)
e1:SetCondition(s.condition)
c:RegisterEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When the equipped monster destroys a monster by battle and sends it to the Graveyard: Inflict damage to your opponent equal to half the destroyed monster's ATK in the Graveyard. | --ジャンク・アタック
--Junk Barrage
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_FIELD+EFFECT_TYPE_TRIGGER_F)
e3:SetCode(EVENT_BATTLE_DESTROYED)
e3:SetProperty... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a Level 8 or higher "Myutant" monster you control. At the start of the Damage Step, if the equipped monster attacks an opponent's Special Summoned monster: You can banish that opponent's monster. While this card is equipped to a monster: You can banish this card; send the monster this card was equipped to... | --ミュートリア反射作用
--Myutant Blast
--Scripted by senpaizuri
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,0,s.filter)
--Banish
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be Normal Summoned or Set. This card can only be Special Summoned by removing from play 2 EARTH monsters from your Graveyard. When this face-up card you control is sent to the Graveyard by a card effect, destroy all Spell and Trap Cards your opponent controls. | --ギガストーン・オメガ
--Gigastone Omega
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:SetCountLimit(1,id)
e1:SetCon... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by discarding 1 "Gimmick Puppet" monster. You can banish this card from your GY; your opponent cannot target "Gimmick Puppet" monsters you control with card effects this turn. | --ギミック・パペット-ビスク・ドール
--Gimmick Puppet Bisque Doll
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card (from your hand) by discarding 1 "Gimmick Puppet" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your hand or Graveyard: You can target 1 "Cipher" Xyz Monster you control; attach this card to it as an Xyz Material. If this card is sent to the Graveyard: You can add 1 "Cipher" Spell/Trap Card from your Deck to your hand. You can only use 1 "Cipher Etranger" effect per turn, and only once that tur... | --光波異邦臣
--Cipher Etranger
local s,id=GetID()
function s.initial_effect(c)
--material
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_GRAVE|LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetTarget(s.matt... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Shuffle all monsters on the field into the Deck. Then, each player excavates cards from the top of their Deck, until they excavate the same number of monsters they shuffled into their Main Deck. Special Summon all excavated Level 4 or lower monsters in face-down Defense Position, also send the remaining cards to ... | --カオスポッド
--Morphing Jar #2
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+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:Re... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card in your hand, field, or GY can be used as a substitute for any 1 Fusion Material whose name is mentioned on the Fusion Monster Card, but the other materials must be correct. You can discard this card to the GY; add 1 "Polymerization" from your Deck to your hand. | --沼地の魔神王
--King of the Swamp
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.SelfDiscardToGrave)
e1:SetTarget... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is discarded to the GY by card effect: Draw 1 card, or, if it was discarded from your hand to your GY by an opponent's card effect, draw 2 cards instead. | --暗黒界の狩人 ブラウ
--Broww, Huntsman of Dark World
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
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: | 2 WATER monsters You can target 1 WATER monster with 1500 or less ATK in your GY; Special Summon it to your zone this card points to, also you cannot Special Summon monsters for the rest of this turn, except WATER monsters. If this card is sent from the field to the GY: You can target 1 "Marincess" card in your GY, exc... | --海晶乙女 コーラルアネモネ
--Marincess Coral Anemone
--Anime version scripted by Larry126, updated by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),2,2)
c:EnableReviveLimit()
--special summon
local e1=Effect.CreateEffect... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up "Inzektor" card you control and 2 face-up cards your opponent controls; destroy them. | --アーマーブラスト
--Armor Blast
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Switch the ATK and DEF of all face-up Effect Monsters on the field. | --反転世界
--Inverse Universe
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_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetCondition(aux.S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned: You can target 1 monster your opponent controls; return it to the hand. If this card on the field is destroyed by battle or card effect: You can target 1 card your opponent controls; return it to the hand. You can only use 1 "Glacial Beast Polar Penguin" effect per turn, and only once ... | --極氷獣ポーラ・ペンギン
--Glacial Beast Polar Penguin
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--If special summoned, return 1 of opponent's monsters to hand
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetPr... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Monsters Tributed for the face-up Tribute Summon of this card are returned to the hand instead of going to the GY. Once per turn: You can discard 1 card; return all cards your opponent controls in this card's column to the hand. | --旋風機ストリボーグ
--Fantastic Striborg
local s,id=GetID()
function s.initial_effect(c)
--Monsters Tributed for the face-up Tribute Summon of this card are returned to the hand instead of going to the GY
local e0a=Effect.CreateEffect(c)
e0a:SetType(EFFECT_TYPE_SINGLE)
e0a:SetCode(EFFECT_MATERIAL_CHECK)
e0a:SetValue(s.val... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when a face-up Defense Position "Karakuri" monster is selected as an attack target. Destroy all face-up monsters your opponent controls. | --時限カラクリ爆弾
--Karakuri Klock
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_BE_BATTLE_TARGET)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control "D.D. Esper Star Sparrow", "Beast-Warrior Puma" and "Phoenix Beast Gairuda", you can Special Summon this card (from your hand). While this card is face-up on the field, it cannot change its battle position. Once per turn: You can target 1 monster you control; it can attack your opponent directly this tur... | --鉄巨人アイアンハンマー
--Ironhammer the Giant
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
c:Regis... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Myutant" monsters with different Attributes If this card is Fusion Summoned: You can target 1 card on the field; destroy it. When your opponent activates a card or effect (Quick Effect): You can activate this effect; for the rest of this turn, this face-up card is unaffected by the effects of an opponent's cards of ... | --シンセシス・ミュートリアス
--Myutant Synthesis
--scripted by Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Fusion summon procedure
Fusion.AddProcMixN(c,true,true,s.ffilter,2)
--If fusion summoned, destroy 1 card on the field
local e1=Effe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Battle Phase, you can send 1 card you control to the Graveyard, except this card, to end the Battle Phase. | --強制終了
--Scrubbed Raid
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)
--End the Battle Phase
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Mermail" monster you control; it gains 1000 ATK until the End Phase. When this Set card is sent to the Graveyard: Target 1 monster your opponent controls; send that target to the Graveyard. | --アビスコーン
--Abyss-scorn
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_STEP)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Gravekeeper's" monsters Gains ATK/DEF equal to the combined original Levels of the materials used for its Fusion Summon x 100. While "Necrovalley" is on the field, this card, and any card in your Field Zone, cannot be destroyed by card effects. During your Main Phase: You can activate this effect; during the End Pha... | --墓守の異能者
--Gravekeeper's Supernaturalist
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion procedure
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_GRAVEKEEPERS),2)
--Increase ATK/DEF
local e1=Effect.CreateEffect(c)
e1:SetType(EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as a "Constellar" card.) If a "tellarknight" or "Constellar" monster is Normal Summoned to your field, except "Tellarknight Lyran" (except during the Damage Step): You can Special Summon this card from your hand. If this card is Summoned: You can add 1 "tellarknight" Spell from your Deck to... | --星騎士 リュラ
--Tellarknight Lyran
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetProper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Cyber Dragon" + 1+ Machine monsters Cannot be used as Fusion Material. Must first be Special Summoned (from your Extra Deck) by sending the above cards from either field to the GY. The original ATK of this card becomes 1000 x the number of materials used for its Special Summon. | --キメラテック・フォートレス・ドラゴン
--Chimeratech Fortress Dragon
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixRep(c,true,true,s.fil,1,99,CARD_CYBER_DRAGON)
Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit)
--cannot be fusion material
local e3=Effect.CreateEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can send 1 "Black Luster Soldier" monster from your hand to the Graveyard; until your opponent's next End Phase, this card's ATK becomes 3000, and this card's name becomes "Black Luster Soldier". You can banish this card from your Graveyard; add 1 "Beginning Knight" or "Evening Twilight Knight" from your Deck to yo... | --超戦士の魂
--Super Soldier Soul
local s,id=GetID()
function s.initial_effect(c)
--Make this card's ATK become 3000 and its name become "Black Luster Soldier"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Effect Monsters with the same Type and Attribute You can target 1 of your monsters that is banished or in your GY; Special Summon it to your zone this card points to, in Defense Position, but its effects are negated, also you cannot Special Summon Link Monsters for the rest of this turn, and the Summoned monster is ... | --闇鋼龍ダークネスメタル
--Darkness Metal, the Dragon of Dark Steel
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2,nil,s.spcheck)
--Specia... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can Special Summon any number of "D-Boyz" from your Deck in Attack Position, then you take 1000 damage for each monster Special Summoned by this effect. | --Dボーイズ
--D-Boyz
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_FLIP+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetTarget(s.target)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is used to Ritual Summon "Herald of Ultimateness". You must also Tribute monsters from your hand or field whose total Levels equal 12 or more. Your opponent cannot activate cards or effects in response to this card's activation. | --宣告者の神託
--Oracle of the Herald
local s,id=GetID()
function s.initial_effect(c)
local e1=Ritual.AddProcGreaterCode(c,12,nil,48546368)
e1:SetTarget(s.target(e1))
end
function s.target(eff)
local tg = eff:GetTarget()
return function(e,...)
local ret = tg(e,...)
if ret then return ret end
if e:IsHasType(EFFECT_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each player must pay 500 Life Points per card to Normal Summon, Special Summon, Set or activate cards from his/her respective hand. | --魔力の枷
--Chain Energy
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)
--activate cost
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_ACTIVATE_COST)
e2:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can send 1 "Ninja" monster from your hand to the GY; Set 1 "Ninjitsu Art" Spell/Trap directly from your Deck, except "Ninjitsu Art Notebook". | --隠密忍法帖
--Ninjitsu Art Notebook
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)
--set
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYPE_IGNITI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 WIND monster, then target 1 card your opponent controls; place that opponent's card on the bottom of the Deck. | --風霊術-「雅」
--Spiritual Wind Art - Miyabi
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:SetHintTiming(0,TIMINGS_CHECK_MONSTER_E)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn: You can Tribute this card; each Warrior-Type monster you currently control gains 500 ATK and DEF, until the end of the next Damage Step that monster attacks or is attacked. | --ガントレット・ウォリアー
--Gauntlet Warrior
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EVENT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control "Obelisk the Tormentor" whose original Attribute is DIVINE in your Monster Zone: Tribute 2 other face-up monsters; destroy as many monsters your opponent controls as possible, and if you do, inflict 4000 damage to your opponent. During the Main or Battle Phase: You can banish this card from your GY; add ... | --ソウルエナジーMAX!!
--Soul Energy MAX!!!
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per Chain, if a monster(s) is Normal or Special Summoned to your field (except during the Damage Step): You can send the top card of your Deck to the GY. If this card is sent from your Deck to the GY by a card effect: You can target 1 card in your GY that was sent there this turn, except "Laundry Trap"; add it to ... | --ラドリートラップ
--Laundry Trap
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_SUMMON|TIMING_SPSUMMON)
c:RegisterEffect(e1)
--Send the top card in the Deck to the... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an attack is declared involving your Warrior monster: You can Special Summon 1 Level 4 or lower Warrior monster from your hand. You can only use this effect of "Reinforcement of the Army's Troops" once per turn. | --増援部隊
--Reinforcement of the Army's Troops
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 from the hand
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_SPECIAL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Spell/Trap Card is activated, while you control an "Evil Eye" monster: Negate the activation, and if you do, destroy it. If "Evil Eye of Selene" is in your Spell & Trap Zone, this card's activation and effect cannot be negated. You can only activate 1 "Evil Eye Retribution" per turn. | --断罪の呪眼
--Evil Eye Retribution
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--negate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetCondition(s.c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can activate this effect; Special Summon 2 "Slime Tokens" (Aqua/WATER/Level 1/ATK 500/DEF 500), also you cannot Normal or Special Summon monsters for the rest of this turn, except Divine-Beast monsters. During the Battle Phase (Quick Effect): You can Tribute this card; Set 1 "Metal Reflect S... | --リアクター・スライム
--Reactor Slime
--Scripted by Hel
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 2 "Slime Tokens"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCountLimit(1,id)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When you activate this card: You can banish 1 "Evil Eye" card from your GY; draw 1 card. Once per turn, after damage calculation, if your "Evil Eye" monster equipped with "Evil Eye of Selene" attacked an opponent's monster: You can banish that opponent's monster. If this card in the Spell & Trap Zone is destroyed by ca... | --静冠の呪眼
--Evil Eye Repose
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 2 "Duoterion" and 1 "Oxygeddon" in your hand and/or field; Special Summon 1 "Water Dragon" or "Water Dragon Cluster" from your hand, Deck, or GY. (This is treated as a Special Summon with the effect of "Bonding - H2O".) If "Water Dragon" or "Water Dragon Cluster" is sent from the field to your GY while this car... | --ボンディング-D2O
--Bonding - D2O
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as an "Ultimate Crystal" card.) Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand) by banishing 7 DARK monsters with different names from your GY. You can banish all other DARK monsters from your field and GY; this card gains 500 ATK for each card banished this way. | --究極宝玉神 レインボー・ダーク・ドラゴン
--Rainbow Dark Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special Summon Limit
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:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this Attack Position card is targeted for an attack: Change this card to Defense Position. | --暗黒ステゴ
--Black Stego
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BE_BATTLE_TARGET)
e1:SetTarget(s.target)
e1:SetOperation(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters During the Main Phase (Quick Effect): You can target 1 face-up monster on the field or in either GY; place it face-up in its owner's Spell & Trap Zone as a Continuous Spell, also this card cannot use this effect next turn. During the Battle Phase (Quick Effect): You can target 1 monster ... | --蛇眼の断罪龍
--Snake-Eyes Vengeance Dragon
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Place 1 face-up monster on the field or in either GY face-up in its... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, when your monster declares an attack on your opponent's Defense Position monster: You can activate this effect; during that battle, if that monster attacks a Defense Position monster, inflict piercing battle damage to your opponent. | --ランサー・デーモン
--Lancer Archfiend
local s,id=GetID()
function s.initial_effect(c)
--Make a monster inflict piercing damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_FIELD)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetRange(LOCATION_MZONE)
e1:SetCou... |
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 Level 4 or lower "Magnet Warrior" monster from your Deck to your hand, except "Beta The Electromagnet Warrior". You can only use this effect of "Beta The Electromagnet Warrior" once per turn. During your opponent's turn: You can Tribute this card; Special Summon... | --電磁石の戦士β
--Beta The Electromagnet Warrior
local s,id=GetID()
function s.initial_effect(c)
--to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no face-up monsters, or the only face-up monsters you control are "R.B." monsters, you can Special Summon this card (from your hand). You can only Special Summon "R.B. VALCan Rocket" once per turn this way. If this card is linked to an "R.B." Link Monster: You can pay 1000 LP, then target up to 2 cards y... | --
--R.B. VALCan Rocket
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--If you control no face-up monsters, on the only face-up monsters you control are "R.B." monsters, you can Special Summon this card (from your 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: | [ Pendulum Effect ] If your "Ninja" monster attacks a Defense Position monster, inflict piercing battle damage to your opponent. ---------------------------------------- [ Monster Effect ] You can reveal 1 "Ninjitsu Art" card in your hand; Special Summon this card from your hand. If this card attacks a Defense Position... | --黄昏の忍者-ジョウゲン
--Twilight Ninja Jogen
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_PIERCE)
e1:SetRange(LOCATION_PZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarget(aux.Targe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute 1 face-up FIRE monster to inflict 100 damage to your opponent for each FIRE monsters in your Graveyard. | --炎の魔精イグニス
--Flame Spirit Ignis
local s,id=GetID()
function s.initial_effect(c)
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(s.damco... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control "Toon World": Target 1 face-up monster your opponent controls; Special Summon 1 Toon monster from your hand or Deck, whose Level is less than or equal to the Level/Rank of that monster, ignoring its Summoning conditions. | --トゥーン・マスク
--Toon Mask
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:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn, when a Spell/Trap Card that targets this card is activated: Negate the activation, and if you do, destroy it. When another face-up monster you control is targeted for an attack: You can send 1 Spell/Trap Card you control to the Graveyard; change the attack target to this card. | --青氷の白夜龍
--White Night Dragon
local s,id=GetID()
function s.initial_effect(c)
--negate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_QUICK_F)
e1:SetCode(EVENT_CHAINING)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 4 monsters Any Xyz Material detached from a monster is banished instead of being sent to the GY. Once per Chain, if a Monster Card(s) is sent to the GY: You can detach 1 material from this card. If the last material(s) is detached from this card: You can target up to 3 cards in the GY(s); attach them to this ca... | --魂喰魔獣 バズー
--Bazoo the Soul Eater Beast
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
Duel.EnableGlobalFlag(GLOBALFLAG_DETACH_EVENT)
c:EnableReviveLimit()
--Xyz Summon procedure: 3 Level 4 monsters
Xyz.AddProcedure(c,nil,4,3)
--Any Xyz Material detached from a monster is banished instead of ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be destroyed by battle. The ATK of any monster that battles this card becomes 0 at the end of that Battle Phase. During your End Phase, change this face-up Defense Position card on the field to face-up Attack Position. | --レプティレス・ナージャ
--Reptilianne Naga
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(1)
c:RegisterEffect(e1)
--atk change
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 of your banished LIGHT or DARK monsters. If a face-up Xyz Monster(s) you control is banished, while this card is in your GY (except during the Damage Step): You can banish this card, then target 1 of those monsters; Special Summon it. You can only use each effect of "Galaxy Journey" once per turn. | --銀河超航行
--Galaxy Journey
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 of your banished LIGHT or DARK monsters
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EV... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summoned "Melodious" monsters you control cannot be destroyed by card effects. If this card was Special Summoned, all Fairy-Type monsters you control gain 300 ATK. | --幻奏の音女エレジー
--Elegy the Melodious Diva
local s,id=GetID()
function s.initial_effect(c)
--indes
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_INDESTRUCTABLE_EFFECT)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarget(s.indtg)
e1:SetValue(1)
c:RegisterEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can pay 1000 LP, then target 1 "Vampire" monster in your GY, except "Vampire Scarlet Scourge"; Special Summon it, but it cannot attack this turn. You can only use this effect of "Vampire Scarlet Scourge" once per turn. At the end of the Battle Phase, if this card destroye... | --ヴァンパイア・スカージレット
--Vampire Scarlet Scourge
local s,id=GetID()
function s.initial_effect(c)
--If normal or special summoned, special summon 1 "Vampire" monster from GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can send 1 "Gem-Knight" or "Melodious" monster from your hand or Deck to the Graveyard, and if you do, this card's name becomes the sent monster's name, until the End Phase. If this card is in your Graveyard: You can banish 1 Fusion Monster from your Graveyard; Special Summon this card in Defense Pos... | --クリスタル・ローズ
--Crystal Rose
local s,id=GetID()
function s.initial_effect(c)
--Send 1 "Gem-Knight" or "Melodious" monster from your hand or Deck to the Graveyard, and if you do, this card's name becomes the sent monster's name, until the End Phase
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, you can either: Target 1 monster you control; equip this card to that target, OR: Unequip this card and Special Summon it. A monster equipped with this card is treated as a Tuner, it gains 500 ATK/DEF, also if the equipped monster would be destroyed by battle or card effect, destroy this card instead. | --トルクチューン・ギア
--Torque Tune Gear
local s,id=GetID()
function s.initial_effect(c)
aux.AddUnionProcedure(c,nil)
--add type
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_ADD_TYPE)
e1:SetValue(TYPE_TUNER)
c:RegisterEffect(e1)
--atkup
local e2=e1:Clone()
e2:SetCode(EFFECT_UPDATE_AT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a monster you control is destroyed by battle and sent to the Graveyard: Target that monster; Special Summon it in face-up Defense Position, but it is destroyed during your End Phase. | --リグレット・リボーン
--Regretful Rebirth
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_BATTLE_DESTROYED)
e1:SetTarget(s.target)
e1:SetOperation(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can target 1 "Scareclaw" monster or "Visas Starfrost" you control; it can attack while in face-up Defense Position this turn. If it does, apply its ATK or DEF (whichever is higher) for damage calculation. When your opponent activates a card or effect, while you control a "Scareclaw" monster in the Ex... | --肆世壊の牙掌突
--Scareclaw Sclash
--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)
--Target can attack while in Defense Position
local e1=Effect.CreateEffect(c)
e1:SetDescri... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All "Igknight" monsters on the field gain 300 ATK and DEF. Once per turn: You can target 1 "Igknight" card you control; destroy it, and if you do, add 1 "Igknight" card from your Deck to your hand. | --イグニッションP
--Ignition Phoenix
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 & def
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 6 Fiend monsters When a Spell/Trap Card, or monster effect, is activated that includes an effect that Special Summons a monster (Quick Effect): You can detach 1 material from this card; negate the activation, and if you do, destroy that card, then you can make 1 other "D/D" monster you control and this card gai... | --DDD怒涛大王エグゼクティブ・シーザー
--D/D/D Wave High King Caesar
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_FIEND),6,2)
--Negate the activation of an effect that includes Special Summoning
local e1=Effect.CreateEffect... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy this card during your 3rd Standby Phase after activation. Activate this card when a face-up Dinosaur-Type monster you control is destroyed and sent to the Graveyard (except during the Damage Step): Choose 3 of your opponent's unused Spell & Trap Zones. Those Zones cannot be used. If this card destroys itself: Y... | --大地震
--Seismic Shockwave
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
--salvage
local e2=Effect.Create... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Draw 3 cards, then discard 2 cards. | --天使の施し
--Graceful Charity
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW+CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.act... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card attacks or is attacked, during damage calculation (in either player's turn): You can pay 2000 LP once per battle; this card gains 3000 ATK during that damage calculation only. | --お注射天使リリー
--Injection Fairy Lily
local s,id=GetID()
function s.initial_effect(c)
--attack up
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetConditio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned by a card effect, except the effect of "Gladiator Beast Hoplomus". If this card is Special Summoned: add 1 "Gladiator Beast" Equip Spell from your Deck to your hand. At the end of the Battle Phase, if this card battled: You can shuffle this card into the Deck; Special Summon 1 "Gladiator Beas... | --剣闘獣スパルティクス
--Gladiator Beast Spartacus
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you control a Level 7 or higher "Ancient Warriors" monster, your opponent must pay 400 LP to activate a card or effect. You can only use each of the following effects of "Ancient Warriors - Savage Don Ying" once per turn. If this card is Normal or Special Summoned: You can add 1 Level 7 or higher "Ancient Warrior... | --戦華の暴-董穎
--Ancient Warriors - Savage Don Ying
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you control a "Memento" monster, your opponent's monsters that can attack must attack the "Memento" monster you control with the highest ATK (their choice, if tied). When your opponent activates a monster effect on the field (except during the Damage Step): You can target 1 "Mementoal Tecuhtlica - Combined Creati... | --メメント・クレニアム・バースト
--Mementotlan Cranium Burst
--Scripted by Satellaa
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(TIMING_ATTACK,TIMINGS_CHECK_MONSTER_E|TIMING_ATTACK)
c:RegisterEffect(e0)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters Any monster sent from the hand or Main Deck to the GY is banished instead. When a Spell/Trap Card, or monster effect, is activated (Quick Effect): You can Tribute this card; negate the activation, and if you do, destroy that card. If this card is sent to the GY: You can add 1 Ritual Mons... | --虹光の宣告者
--Herald of the Arc Light
local s,id=GetID()
function s.initial_effect(c)
--Synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--Location redirection
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_SET_AVAILABLE)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Chaos Form". If this card is Special Summoned: You can Tribute 1 monster; your opponent cannot activate monster effects this turn. When this card destroys an opponent's monster by battle: You can target 1 Spell in your GY; add it to your hand. You can only use each effect of "Magic... | --マジシャン・オブ・ブラックカオス・MAX
--Magician of Black Chaos MAX
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--prevent activation
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SPSUM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 5 WATER monsters You can also Xyz Summon this card by using "Number 37: Hope Woven Dragon Spider Shark" you control (transfer its materials to this card). Once per turn: You can detach 1 material from this card, then target 1 monster your opponent controls; banish it (until their next Standby Phase), and if you... | --SNo.37 スパイダー・シャーク
--Number S37: Spider Shark
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 3 Level 5 WATER monsters, or 1 "Number 37: Hope Woven Dragon Spider Shark"
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),5,3,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can Special Summon 1 Level 5 or higher Flip monster from your Deck in face-down Defense Position, except "Conbirdable". During the Battle Phase, if this card is in your hand (Quick Effect): You can target 1 face-down monster on the field; send it to the GY, and if you do, Special Summon this card in face-down... | --半纏鳥官-コンバード
--Conbirdable
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Level 5 or higher Flip monster from your Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent cannot target Insect-Type monsters for attacks, except this one. If this card is Special Summoned: You can Special Summon 1 "Block Spider" from your Deck. You can only use this effect of "Block Spider" once per turn. | --ブロック・スパイダー
--Block Spider
local s,id=GetID()
function s.initial_effect(c)
--cannot be battle target
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_CANNOT_SELECT_BATTLE_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(0,LOCATION_MZONE)
e1:SetValue(s.bttg)
c:RegisterEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Negate the activation of an Equip Spell Card and destroy it. | --アーマーブレイク
--Armor Break
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters While your LP are higher than your opponent's, your opponent cannot target Plant monsters you control with card effects. You can only use each of the following effects of "Aromaseraphy Sweet Marjoram" once per turn. ● If this card is Synchro Summoned: You can add 1 "Humid Winds", "Dried ... | --アロマセラフィ-スイート・マジョラム
--Aromaseraphy Sweet Marjoram
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can reduce the Levels of all Insect monsters you currently control by 1. If the battle position of this card is changed: You can Special Summon 1 "Oily Cicada" from your hand, Deck, or GY. You can only use each effect of "Oily Cicada" once per turn. | --オイリーゼミ
--Oily Cicada
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Decrease levels of Insect monsters by 1
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_LVCHANGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent cannot target "Danger!" monsters you control with card effects during the turn they are Special Summoned. Once per turn: You can target 1 "Danger!" monster you control; while you control that face-up monster and this face-up card, that monster can attack directly, also your opponent's monsters cannot targ... | --未界域-ユーマリア大陸
--Realm of Danger!
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--cannot be target
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by battle. If this card is in face-up Defense Position, destroy it. If this card is Normal Summoned: Place 1 Fog Counter on it for each "Cloudian" monster on the field. You can remove 3 Fog Counters from anywhere on the field; discard 1 random card from your opponent's hand. | --雲魔物-アルトス
--Cloudian - Altus
local s,id=GetID()
function s.initial_effect(c)
--battle indestructable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(1)
c:RegisterEffect(e1)
--selfdes
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SING... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.