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: | During either player's turn, you can activate "Magical Musket" Spell/Trap Cards from your hand. If a Spell/Trap Card is activated in this card's column: You can discard 1 "Magical Musket" card; draw 2 cards. You can only use this effect of "Magical Musketeer Kidbrave" once per turn. | --魔弾の射手 ザ・キッド
--Magical Musketeer Kidbrave
local s,id=GetID()
function s.initial_effect(c)
--Activate "Magical Musket" Spell/Traps from the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_QP_ACT_IN_NTPHAND)
e1:SetRange(LOCATION_MZONE)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal Summoned: Target 1 Equip Spell Card in your Graveyard; banish that target, and if you do, add it to your hand during your next Standby Phase. | --ヴァイロン・オーム
--Vylon Ohm
local s,id=GetID()
function s.initial_effect(c)
--remove
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card attacks a face-up monster on the field, at the start of the Damage Step: Destroy that monster. Its DEF must be higher than this card's ATK to activate and to resolve this effect. | --スクープ・シューター
--Cameraclops
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_START)
e1:SetCondition(s.descon)
e1:SetTarget(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase: Immediately after this effect resolves, Tribute Summon 1 Divine-Beast monster. When you do, you can Tribute a monster(s) your opponent controls, even though you do not control them, but if you Tribute their monster(s) for the Summon, apply this effect. ● Until the end of the next turn, you can on... | --交差する魂
--Soul Crossing
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetCondition(function()return Du... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card only if you have 2 "Zefra" cards in your Pendulum Zones, with active Pendulum Scales of 1 and 7. When this card is activated: Shuffle all monsters you control (if any) into the Deck, except "Zefra" monsters. Neither player can Special Summon monsters, except from the hand or the Extra Deck. While you... | --セフィラの輝跡
--Zefra Path
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
--splimit
local e2=Effec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Take control of 1 monster on your opponent's side of the field until the end of the turn that this card's effect is activated. When the controlled monster attacks, it can attack your opponent's Life Points directly. | --X・E・N・O
--Jowls of Dark Demise
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_CONTROL)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.target)
e1:SetOper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent controls a monster with a Predator Counter: You can Special Summon this card from your hand. If this card in its owner's possession is destroyed by your opponent's card: You can target 1 DARK Dragon or 1 DARK Plant monster in your GY, except "Predaplant Heliamphorhynchus"; Special Summon it. You can on... | --捕食植物ヘリアンフォリンクス
--Predaplant Heliamphorhynchus
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--spsummon (self)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCondition(s.s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | There can only be 1 "Earthbound Immortal" monster on the field. During the Main Phase (Quick Effect): You can banish this card from your hand or GY; send 1 "Earthbound Immortal" monster or "Red Dragon Archfiend" from your hand or face-up Monster Zone to the GY, then you can apply 1 of these effects. ● Special Summon 1 ... | --地縛神 スカーレッド・ノヴァ
--Earthbound Immortal Red Nova
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--There can only be 1 "Earthbound Immortal" monster on the field
c:SetUniqueOnField(1,1,aux.FilterBoolFunction(Card.IsSetCard,SET_EARTHBOUND_IMMORTAL),LOCATION_MZONE)
--Send 1 "Earthbound Immortal... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card battles an Effect Monster, after damage calculation: Negate that monster's effects (including in the GY). * The above text is unofficial and describes the card's functionality in the OCG. | --ヴェルズ・オ・ウィスプ
--Evilswarm Obliviwisp
local s,id=GetID()
function s.initial_effect(c)
--Disable
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLED)
e1:SetCondition(s.condition)
e1:SetOperation(s.operation)
c:Register... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be Normal Summoned or Set. This card cannot be Special Summoned except by sending an "Elemental HERO Bubbleman" you control and "Metamorphosis" in your hand to the Graveyard. This card's name is treated as "Elemental HERO Bubbleman" while it is face-up on the field. Destroy an opponent's monster that b... | --E・HERO バブルマン・ネオ
--Elemental HERO Neo Bubbleman
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Cannot be Special Summoned, except by its own effect
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 1 face-up monster you control to the GY; Special Summon from your Deck, 1 monster with the same Type and Attribute as that monster in the GY, but 1 Level higher. You can only activate 1 "Transmodify" per turn. | --トランスターン
--Transmodify
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:SetLabel(0)
e1:SetCountLimit(1,id)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperati... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If there is a face-up Field Spell Card on the field, you can Special Summon this card (from your hand). You can only control 1 "Chronomaly Tula Guardian". | --先史遺産トゥーラ・ガーディアン
--Chronomaly Tula Guardian
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--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:SetConditio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When you draw this card: You can reveal it; Special Summon it from your hand. If this card is Special Summoned from the hand: You can target 1 other face-up monster on the field; banish it until the Standby Phase of your next turn. You can only use each effect of "Fortune Fairy Swee" once per turn. | --占い魔女 スィーちゃん
--Fortune Fairy Swee
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Plaguespreader Zombie" + 1 or more non-Tuner Zombie-Type monsters Negate the effects of Effect Monsters destroyed by battle with Zombie-Type monsters you control. | --蘇りし魔王 ハ・デス
--Revived King Ha Des
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterSummonCode(33420078),1,1,Synchro.NonTunerEx(Card.IsRace,RACE_ZOMBIE),1,99)
c:EnableReviveLimit()
--Disable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Spell/Trap on the field; destroy that target. | --サイクロン
--Mystical Space Typhoon
local s,id=GetID()
function s.initial_effect(c)
--Destroy 1 Spell/Trap on the field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FRE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only control 1 "Tsukahagi, the Poisonous Mayakashi". If a "Mayakashi" monster(s) in your possession, except "Tsukahagi, the Poisonous Mayakashi", is destroyed by battle or an opponent's card effect, while this card is in the GY: You can Special Summon this card. You cannot Special Summon monsters from the Extra... | --毒の魔妖-束脛
--Tsukahagi, the Poisonous Mayakashi
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 of your banished Dragon-Type monsters; add that target to your hand. | --牙竜転生
--Dragoncarnation
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:Register... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Cyberse monsters Your opponent's monsters cannot target monsters this card points to for attacks. The first time this card would be destroyed by battle each turn, it is not destroyed, and you take no battle damage from that battle. | --プロトコル・ガードナー
--Protocol Gardna
--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()
--cannot be battle target
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 "Evoltile" monster; Special Summon 1 "Evolsaur" monster from your Deck. (This is treated as a Special Summon by the effect of an "Evoltile" monster.) | --強制進化
--Evo-Force
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)
end
s.li... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control another "Exosister" monster: You can draw 1 card, then if you control "Exosister Irene", you gain 800 LP. If your opponent moves a card(s) out of either GY (except during the Damage Step): You can Special Summon from your Extra Deck, 1 "Exosister" Xyz Monster using this face-up card you control as materi... | --エクソシスター・ソフィア
--Exosister Sophia
--Scripted by Hatter
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+CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,id)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is targeted for an attack: Destroy this card. When this card is sent to the GY by card effect: You can target 1 "Battlin' Boxer" monster in your GY, except "Battlin' Boxer Glassjaw"; add it to your hand. | --BK グラスジョー
--Battlin' Boxer Glassjaw
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BE_BATTLE_TARGET)
e1:SetTarget(s.destg)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 "Noble Arms" Equip Spell equipped to this card and 1 face-up monster your opponent controls; destroy them, then draw 1 card, also, this card cannot attack for the rest of this turn. You can only use this effect of "Noble Knight Pellinore" once per turn. | --聖騎士ペリノア
--Noble Knight Pellinore
local s,id=GetID()
function s.initial_effect(c)
--Destroy 1 "Noble Arms" equipped to this card and 1 of opponent's monsters
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Gyroid" + "Steamroid" | --スチームジャイロイド
--Steam Gyroid
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,18325492,44729197)
end
s.material_setcode=SET_ROID |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard 1 Spell/Trap; add 1 "Power Bond" from your Deck to your hand, you can only use Dragon or Machine "Cyber" monsters as Fusion Material this turn, also once when you Fusion Summon this turn, you can also banish monster(s) from your GY as material. If this card is sent to the GY: You can send 1 "Cyberdark" ... | --サイバー・ダーク・キメラ
--Cyberdark Chimera
--Scripted by Rundas
--Necessary changes to the Fusion Proc made by pyrQ and edo9300
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Power Bond" from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only equip this card to a Level 3 or lower Normal Monster on your side of the field. When you activate this card, Tribute all Normal Monsters (except Tokens) on your side of the field, except the equipped monster. Increase the ATK of the equipped monster by 1000 points for each Normal Monster that you Tributed. | --魂喰らいの魔刀
--Sword of the Soul-Eater
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,0,s.filter,nil,s.cost,s.target,s.operation)
end
function s.filter(c)
return c:IsType(TYPE_NORMAL) and c:IsLevelBelow(3)
end
function s.cost(e,tp,eg,ep,ev,re,r,rp,chk)
e:SetLabel(1)
if chk==0 then return true ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card's name becomes "Cyber Dragon" while in the GY. Once per turn: You can reveal 1 Spell in your hand; this card's name becomes "Cyber Dragon" until the End Phase. If this card attacks an opponent's monster, it gains 300 ATK during the Damage Step only. | --サイバー・ドラゴン・ツヴァイ
--Cyber Dragon Zwei
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.atkcon)
e1:SetValue(300)
c:Register... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Level 8 or higher Synchro Monster: Banish all monsters on the field, except the monster(s) with the highest Level, also the remaining face-up monsters on the field are unaffected by other card effects, except their own, until the end of this turn. If a DARK Dragon Synchro Monster is Synchro Summoned to... | --スカーレッド・レイン
--Red Reign
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Banish all monsters on the field, except monster(s) with the highest level
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "Labrynth" monster from your Deck, also until the end of the next turn after this card resolves, you cannot Special Summon monsters from the Deck or Extra Deck, except Fiend monsters. If a monster leaves the field by your Normal Trap effect, while this card is in your GY, except the turn it was sent th... | --ウェルカム・ラビュリンス
--Welcome Labrynth
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Labrynth" monster
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)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Unless you have a "Symphonic Warrior" card in your other Pendulum Zone, this card's Pendulum Scale becomes 4. Once per turn, during your End Phase: You can target 1 of your banished "Symphonic Warrior" monsters; add it to your hand. ---------------------------------------- [ Monster Effect ] You can... | --音響戦士マイクス
--Symphonic Warrior Miccs
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--scale
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetCode(EFFECT_CHANGE_LSCALE)
e2:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e2:SetRange(LOCATION_PZONE)
e2:SetCond... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ monsters, including a Link Monster | --Skyforce Kishin
--Berserker of the Tenyi
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,nil,2,3,s.lcheck)
c:EnableReviveLimit()
end
function s.lcheck(g,lc,sumtype,tp)
return g:IsExists(Card.IsType,1,nil,TYPE_LINK,lc,sumtype,tp)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Black Luster Ritual". | --カオス・ソルジャー
--Black Luster Soldier
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
end
s.listed_names={55761792} |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: You can add 1 monster that mentions "Ancient Fairy Dragon" from your Deck to your hand. You can only activate the following effects while you control a Level 7 or higher LIGHT Dragon Synchro Monster. Each time a monster(s) is Special Summoned in Attack Position: Change it to Defense Positio... | --精霊の世界
--World of Spirits
--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_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up Spell on the field; negate its effects (until the end of this turn), then you can place 1 "Dracotail" card from your GY or banishment on the bottom of the Deck, except "Dracotail Flame", then draw 1 card. You can only activate 1 "Dracotail Flame" per turn. | --星辰の吼炎
--Dracotail Flame
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Negate the effects of 1 face-up Spell, then you can place 1 "Dragontail" card from your GY or banishment on the bottom of the Deck, then draw 1 card
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: | When this card is destroyed by battle and sent to the GY: You can Special Summon 1 EARTH Warrior monster with 1500 or less ATK from your Deck, in Attack Position. | --荒野の女戦士
--Warrior Lady of the Wasteland
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_DESTROYED)
e1:SetCon... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 FIRE monsters (1 Tuner and 1 non-Tuner) with 200 DEF in your GY; banish both monsters, and if you do, Special Summon 1 FIRE Synchro Monster from your Extra Deck whose Level equals the total Levels of those monsters. You can only activate 1 "Birth of the Prominence Flame" per turn. | --炎雄爆誕
--Birth of the Prominence Flame
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When you activate this card: You can target 1 Effect Monster your opponent controls; banish 1 "Myutant" monster from your GY, and if you do, negate its effect until the end of this turn (even if this card leaves the field). When your Level 8 or higher "Myutant" monster destroys an opponent's monster by battle: You can ... | --ミュートリア連鎖応動
--Myutant Clash
--scripted by Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
--Activate (without effect)
local e0=Effect.CreateEffect(c)
e0:SetDescription(aux.Stringid(id,0))
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e0)
--Activate (negate 1 of ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Dinosaur-Type monster with 2500 or more ATK: Destroy all cards on the field. | --ジュラック・インパクト
--Jurrac Impact
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:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must first be Special Summoned by its own effect. You can reveal this card in your hand; draw 1 card, and if you do, show it, then Special Summon this card if the drawn card is a "Flower Cardian" monster. Otherwise, send it and this card to the Graveyard. During either player's Damage Ste... | --花札衛-桜に幕-
--Flower Cardian Cherry Blossom with Curtain
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Draw 1 card, and if you do, show it, then Special Summon this card if the drawn card is a "Flower Cardian" monster
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: | You can only equip this card to "Gradius". Increase the ATK of "Gradius" by 300 points. When the equipped "Gradius" attacks with an ATK that is higher than the DEF of a Defense Position monster, inflict the difference as Battle Damage to your opponent's Life Points. | --サイクロンレーザー
--Cyclon Laser
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsCode,10992251))
--atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(300)
c:RegisterEffect(e2)
--pierce
local e3=Effec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is destroyed by battle and sent to the GY: Add 1 Level 4 or lower "Dark World" monster from your Deck to your hand. | --暗黒界の斥候 スカー
--Scarr, Scout of Dark World
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_F)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal or Special Summoned: You can add 1 "Majespecter" card from your Deck to your hand during the End Phase of this turn. You can only use this effect of "Majespecter Cat - Nekomata" once per turn. Cannot be targeted or destroyed by your opponent's card effects. | --マジェスペクター・キャット
--Majespecter Cat - Nekomata
local s,id=GetID()
function s.initial_effect(c)
--Pendulum Summon
Pendulum.AddProcedure(c)
--Search 1 "Majespecter" card during the End Phase
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND)
e1:SetTy... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is sent to the Graveyard for a Synchro Summon, you can pay 500 Life Points to have that Synchro Monster gain 1000 ATK until the End Phase. | --メンタル・カウンセラー リリー
--Counselor Lily
local s,id=GetID()
function s.initial_effect(c)
--atk change
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BE_MATER... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ WATER monsters You can target 1 "Marincess" card in your GY, except "Marincess Marbled Rock"; add it to your hand. You can only use this effect of "Marincess Marbled Rock" once per turn. When an opponent's monster declares an attack: You can send 1 "Marincess" monster from your hand to the GY; for that battle, monst... | --海晶乙女 マーブルド・ロック
--Marincess Marbled Rock
--scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),2)
c:EnableReviveLimit()
--tohand
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: | 2 Level 4 monsters Cannot be destroyed by the activated effects of monsters Special Summoned from the GY. You can only use each of the following effects of "Exosister Gibrine" once per turn. If you control this card that was Xyz Summoned this turn by using an "Exosister" monster as material (Quick Effect): You can targ... | --エクソシスター・ジブリーヌ
--Exosister Gibrine
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 4 monsters
Xyz.AddProcedure(c,nil,4,2)
--Check if this card was Xyz Summoned by using an "Exosister" monster as material
local e0=Effect.CreateEffect(c)
e0... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card inflicts Battle Damage to your opponent by a direct attack, discard 1 random card from your opponent's hand. | --エレキンメダイ
--Wattberyx
local s,id=GetID()
function s.initial_effect(c)
--handes
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_DAMAGE)
e1:SetCondition(s.condition)
e1:SetTarget(s.ta... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard Machine monster(s) whose total Levels equal 8 or more, then Special Summon this card (from your hand or GY). If this card is destroyed by battle and sent to the GY: Target 1 card your opponent controls; destroy that target. Before resolving an opponent's monster effect that targets this face-up card, lo... | --マシンナーズ・フォートレス
--Machina Fortress
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|LOCATION_GRAVE)
e1:SetCondition(s.spcon)
e1:SetOpera... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Both players reveal their hands and add 1 card from each other's hand to their hand. | --エクスチェンジ
--Exchange
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then re... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your hand or GY: You can pay half your LP, then target 1 Level 6 or lower monster you control; Special Summon this card, and if you do, this card's Level is reduced by the Level of the targeted monster, also place this card on the bottom of the Deck if it leaves the field. You can only use this effec... | --亡龍の戦慄-デストルドー
--Destrudo the Lost Dragon's Frisson
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from hand or GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Spell/Trap Card, or monster effect, is activated that targets a DARK monster on the field: Negate the activation, and if you do, destroy that card. | --闇の幻影
--Dark Illusion
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:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard 1 card, then target 1 monster your opponent controls that has a Level; roll a six-sided die and apply this effect based on the result. ● Higher than the targeted monster's Level: Destroy the targeted monster, then you can add 1 monster with the same original Level from your Deck to your hand, also you c... | --射敵
--Shateki
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e0)
--Roll a six-sided die and apply an effect based on the result
local e1=Effect.CreateEffect(c)
e1:SetD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All "Battleguard" monsters you control gain 500 ATK. You can only use each of the following effects of "Battleguard Cadet" once per turn. If this card is Normal or Special Summoned: You can add 1 "Feast of the Wild LV5" from your Deck to your hand. You can Tribute this card; Special Summon 1 Level 8 Warrior monster fro... | --バーバリアン0号
--Battleguard Cadet
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Increase ATK
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(aux.TargetBoolFunction(Card.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when a "Scrap" monster you control is destroyed and sent to the Graveyard. Destroy all face-up Spell/Trap Cards on the field. | --スクラップ・クラッシュ
--Scrap Crash
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_TO_GRAVE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your End Phase, if you control no Spell or Trap Cards, you can Special Summon this card from your Graveyard in face-up Attack Position. This card's controller takes 1000 damage during each of their Standby Phases. | --サクリファイス・ロータス
--Samsara Lotus
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_FIELD)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetCode(EVENT_PHASE+PHASE_END)
e1:SetRange(LOCATION_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Worm Drake" + "Humanoid Slime" | --ヒューマノイド・ドレイク
--Humanoid Worm Drake
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,73216412,46821314)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Apply 1 of these effects. Unless you have a "Vaalmonica" card in your Pendulum Zone, your opponent chooses the effect. ● Gain 500 LP, then you can place 1 card from your hand on the bottom of the Deck, then draw 2 cards. ● Take 500 damage, then you can add 1 "Vaalmonica" Spell/Trap from your Deck to your hand, except "... | --ヴァルモニカ・シェルタ
--Vaalmonica Scelta
--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_TODECK+CATEGORY_DRAW+CATEGORY_DAMAGE+CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent Sets exactly 1 monster (and no other cards): Target that Set monster and 1 monster you control; destroy those targets, and if you do, banish them. | --異次元の落とし穴
--D.D. Trap Hole
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_REMOVE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_MSET)
e1:SetTarget(s.target)
e1:SetOperation(s.activat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 face-up Tuner monster you control. That monster cannot be destroyed by battle or by card effects, until the End Phase of the next turn. | --チューナーズ・バリア
--Tuner's Barrier
local s,id=GetID()
function s.initial_effect(c)
--Make 1 Tuner you control unable to be destroyed by battle or card effects until the end of the next turn
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If there are 2 or more different Monster Types among the Level 10 or higher monsters on the field: Shuffle all cards except this one from both players' hands, fields, and GYs into the Deck, then each player draws 5 cards. You can banish this card from your GY; add 1 "Crystal Beast" monster and 1 Field Spell from your D... | --救いの架け橋
--Rainbow Bridge of Salvation
--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_TODECK+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 WATER Tuner + 1+ non-Tuner WATER monsters When this card is Synchro Summoned: You can destroy all your opponent's Attack Position monsters. This card can make up to 2 attacks on monsters during each Battle Phase. If this card attacks a Defense Position monster, inflict piercing battle damage. If this card you control... | --白闘気白鯨
--White Aura Whale
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 WATER Tuner + 1+ non-Tuner WATER monsters
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_WATER),1,99)
--... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If the ATK of an attacking monster your opponent controls is lower than the DEF of the attacked Defense Position monster you control, destroy the attacking monster at the end of the Damage Step. (Damage calculation is applied normally.) | --カウンターパンチ
--Destruction Punch
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_DAMAGE_STEP_END)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal Summoned: Place 1 Spell Counter on it (max. 1). You can remove 1 Spell Counter from this card, then target 1 face-up Trap on the field; destroy that target. | --ハンニバル・ネクロマンサー
--Hannibal Necromancer
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(COUNTER_SPELL)
c:SetCounterLimit(COUNTER_SPELL,1)
--summon success
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_COUNTER)
e1:SetType(EFFECT_TYPE_SINGLE+EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares a direct attack: You can Special Summon 1 "F.A." monster from your Deck. You can only use this effect of "F.A. Dead Heat" once per turn. Once per battle, if your "F.A." monster battles an opponent's monster, before damage calculation: You can have both players roll a six-sided die. I... | --F.A.デッド・ヒート
--F.A. Dead Heat
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(TIMING_ATTACK)
c:RegisterEffect(e1)
--special summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Str... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All non-Fairy monsters lose 500 ATK/DEF. The activation and effects of Spell/Trap Cards activated on your field cannot be negated. | --The splendid VENUS
--Splendid Venus
local s,id=GetID()
function s.initial_effect(c)
--atk,def
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE)
e1:SetTarget(aux.NOT(aux.TargetBoolFunction(C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares an attack: Return all your opponent's Attack Position monsters to the hand. | --神風のバリア -エア・フォース-
--Storming Mirror Force
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) you control is destroyed by battle or card effect: Special Summon 1 "Performapal" monster from your hand or Graveyard. | --EMリバイバル
--Performapal Revival
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_DESTROYED)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY)
e1:SetCondition(s.condition)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: You can add 1 "Subterror" monster from your Deck to your hand. Once per turn: You can change 1 face-down Defense Position "Subterror" monster you control to face-up Attack or Defense Position. Once per turn, when an opponent's monster declares an attack: You can change 1 face-down Defense P... | --地中界シャンバラ
--The Hidden City
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,1))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Increase the original ATK and DEF of all face-up Level 2 Normal Monsters (except Tokens) on your side of the field by 1000 points until the End Phase. Destroy all Level 2 Normal Monsters on your side of the field during the End Phase. | --サウザンドエナジー
--Thousand Energy
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 face-up monster your opponent controls. Special Summon 1 monster from your hand that has the same Level as the selected monster. | --ライバル登場!
--A Rival Appears!
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.activate)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target up to 5 cards in any GY(s); banish them. | --魂の解放
--Soul Release
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish 1 Tuner from your GY; Special Summon this card from your hand. | --泣き神の石像
--Weeping Idol
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCost(s.spcost)
e1:SetTarge... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 WIND Machine Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned: You can activate 1 of these effects; ● Destroy all other cards on the field. ● Negate the effects of all face-up cards your opponent currently controls. If this card in your possession is sent to your GY by your opponent: You can add 1 "Spee... | --HSRカイドレイク
--Hi-Speedroid Kitedrake
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
c:EnableReviveLimit()
Synchro.AddProcedure(c,s.tfilter,1,1,Synchro.NonTuner(nil),1,99)
--Destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your turn, negate the effects of all face-up monsters your opponent controls. During your opponent's turn, negate the effects of all face-up monsters you control. | --形勢反転
--Underdog
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)
--Negate effects depending on turn player
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_DISABLE)
e2:SetType(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Level 8 or higher Synchro Monster, you can Special Summon this card (from your hand). | --クリエイト・リゾネーター
--Creation Resonator
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
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster you control; increase its Level by 3, also if you activated this card in response to your opponent's monster effect activation, while you control "Shining Sarcophagus" and a monster that mentions it, negate that opponent's effect. During damage calculation, if your monster that mentions "Shinin... | --時の沈黙-ターン・サイレンス
--Turn Silence
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_LVCHANGE+CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can pay 500 LP; during your Main Phase this turn, you can Normal Summon 1 "Vampire" monster in addition to your Normal Summon/Set. (Even if this card leaves the field. You can only gain this effect once per turn.) Each time your "Vampire" monster inflicts battle damage to your opponent: Gain the same... | --ヴァンパイアの領域
--Vampire's Domain
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)
--extra summon
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: | You can Tribute 1 face-up Level 5 or higher Normal Summoned/Set monster, then target 1 face-up card on the field; negate its effects, then draw 1 card. (The effects remain negated until the end of this turn.) During your Main Phase, if this card is in your Graveyard: You can banish this card, then declare 1 Attribute; ... | --帝王の轟毅
--Strike of the Monarchs
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DISABLE+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Special Summoned: You can target 2 "White Forest" monsters in your GY; place them face-up in their owners' Spell & Trap Zones as Continuous Spells. During your opponent's Main Phase, you can (Quick Effect): Immediately after this effect resolves, Synchro Summon using this... | --白き森の幻妖
--Poplar of the White Forest
--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 2 "White Forest" monsters from your GY in face-up in their own... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During each of your End Phases, destroy this card unless you send 1 "Iron Core of Koa'ki Meiru" from your hand to the Graveyard or reveal 1 Zombie-Type monster in your hand. If a "Koa'ki Meiru" monster you control would be destroyed by battle or by a card effect, you can remove from play 1 "Koa'ki Meiru" monster in you... | --コアキメイル・グールズスレイブ
--Koa'ki Meiru Ghoulungulate
local s,id=GetID()
function s.initial_effect(c)
--cost
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EVENT_PHASE+PHASE_END)
e1:SetCountLimit(1)
e1:Set... |
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 targets a "Bujin" monster you control (except during the Damage Step): You can banish this card from your Graveyard; negate that effect. | --武神器-ヘツカ
--Bujingi Turtle
local s,id=GetID()
function s.initial_effect(c)
--negate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetRange(LOCATION_GRAVE)
e1:SetCondition(s.negcon)
e1:SetCost(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Effect Monsters If another monster is Special Summoned to a zone a Link Monster points to, while this monster is on the field: Destroy all monsters in the Main Monster Zones, also your other monsters cannot attack for the rest of this turn. After damage calculation, if this card attacked an opponent's monster: Infli... | --トポロジック・ボマー・ドラゴン
--Topologic Bomber Dragon
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2)
c:EnableReviveLimit()
--destroy monsters
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: | "Dark Magician" + 1 Level 7 or higher Dragon or Warrior monster If your monster attacks a Defense Position monster, inflict piercing battle damage to your opponent. Once per turn, when your monster destroys an opponent's monster by battle: You can inflict damage to your opponent equal to the destroyed monster's origina... | --竜魔導騎士ブラック・マジシャン
--Dark Magician the Knight of Dragon Magic
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Material
Fusion.AddProcMix(c,true,true,CARD_DARK_MAGICIAN,s.ffilter)
--Your monsters deal piercing damage
local e1=Effect.CreateEffect(c)
e1:SetType(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent Summons a monster(s) while you control a Toon monster: Shuffle that monster(s) into the Deck. | --トゥーンのかばん
--Toon Briefcase
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card gains these effects based on the Monster Types on the field. ● Warrior, Beast, or Pyro: Once per turn, if you activate a Trap Card (except during the Damage Step): You can target 1 card your opponent controls; destroy it. ● Dinosaur, Sea Serpent, or Thunder: Once per turn, if you activate a Spell Card (except... | --デュエル・アカデミア
--Duel Academy
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e0)
--Destroy 1 card your opponent controls if you activate a Trap Card
local e1=Effect.C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During damage calculation, if an "Appliancer" monster you control battles an opponent's monster (Quick Effect): You can discard this card; for that battle, that monster you control cannot be destroyed, also you take no battle damage. If an "Appliancer" monster(s) you control would be destroyed by a card effect, you can... | --遮断機塊ブレイカーバンクル
--Appliancer Breakerbuncle
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Prevent destruction by battle and battle damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can Special Summon monsters. If a card is sent from the Deck or the field to your Graveyard: Destroy this card. | --虚無空間
--Vanity's Emptiness
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)
--prevent special summon
local e2=Effect.CreateEffect(c)
e2:SetType... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a card(s) is destroyed by battle or card effect: You can Special Summon this card from your hand. During your Main Phase: You can destroy 1 Dinosaur monster in your hand or field, then Special Summon 1 Dinosaur Normal Monster from your hand or Deck, also you cannot Special Summon monsters from the Extra Deck for the... | --ゼノ・メテオロス
--Xeno Meteorus
--Scripted by Satella
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:SetPropert... |
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 monsters you control to the Graveyard, and cannot be Special Summoned by other ways. When this card is Special Summoned: Toss a coin and gain the appropriate effect. ● Heads: When this card destroys an opponent's monster by battle and... | --アルカナフォースEX-THE LIGHT RULER
--Arcana Force EX - The Light Ruler
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special Summon procedure
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This monster may attack your opponent's Life Points directly. | --女王の影武者
--Queen's Double
local s,id=GetID()
function s.initial_effect(c)
--direct attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DIRECT_ATTACK)
c:RegisterEffect(e1)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can target 1 LIGHT Fairy-Type monster in your Graveyard; add it to your hand. You cannot activate non-LIGHT monster effects during the turn you activate this effect. | --幻奏の音姫ローリイット・フランソワ
--Shopina the Melodious Maestra
local s,id=GetID()
function s.initial_effect(c)
--Add 1 LIGHT Fairy monster from your GY to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when you take 1000 or more damage from your opponent's card effect: Place 1 Payback Counter on this card for every 1000 damage you took. During the End Phase of your opponent's next turn: Destroy this card, and if you do, inflict 2000 damage to your opponent for each Payback Counter on this card. | --倍返し
--Double Payback
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x1a)
--counter
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_DAMAGE)
e1:SetCondition(s.actcon)
e1:SetOperation(s.actop)
c:RegisterEffect(e1)
end
s.counter_place_list={0x1a}
function ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent draws 2 cards. | --強欲な贈り物
--The Gift of Greed
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
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 Level 4 monsters You can detach 1 material from this card; Special Summon 1 LIGHT monster from your hand. If this card is in your GY, except the turn it was sent there: You can target 1 Level 4 LIGHT Fairy monster you control; Special Summon this card, and if you do, attach that monster to this card as material. You ... | --天翔ける騎士
--Starring Knight
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Xyz Summon procedure
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--Special Summon from your hand
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 "Raidraptor" monster other than "Raidraptor - Fuzzy Lanius": You can Special Summon this card from your hand. If this card is sent to the Graveyard: You can add 1 "Raidraptor - Fuzzy Lanius" from your Deck to your hand. You can only use each effect of "Raidraptor - Fuzzy Lanius" once per turn. You cann... | --RR-ファジー・レイニアス
--Raidraptor - Fuzzy Lanius
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCondition(s.spcon)
e1:SetCost(s.cost)
e1:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 3 "Scareclaw" monsters; for the rest of this turn, your opponent can only Special Summon monsters in Defense Position. During your turn: You can banish this card from your GY; inflict 100 damage to your opponent for each Defense Position monster on the field. You can only use this effect of "Scareclaw Alternati... | --肆世壊の継承
--Scareclaw Alternative
--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:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a DARK monster(s) you control that was Special Summoned from the Extra Deck is destroyed by battle or card effect: You can send this card from your hand or field to the GY, then target 1 of those destroyed monsters; Special Summon 1 DARK monster from your GY with a different original name from that targeted monster.... | --ヴァレット・リチャージャー
--Rokket Recharger
--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_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent controls a monster: Target 1 Level 2 or lower Defense Position monster you control; Special Summon from your Deck, in Defense Position, 1 monster with the same name as that monster on the field, but banish it when it leaves the field. You can only activate 1 "Mimiclay" per turn. | --モノマネンド
--Mimiclay
local s,id=GetID()
function s.initial_effect(c)
--Special summon 1 level 2 or lower monster from your deck
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:SetCountL... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a face-up Plant-Type monster(s) on the field is destroyed, place 1 Flower Counter on this card. You can remove any number of Flower Counters from this card to activate these effects. ● 1 Counter: Target 1 Plant-Type monster on the field; that target gains 400 ATK and DEF until the end of this turn. (This ATK ... | --世界樹
--The World Tree
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x18)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--add counter
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned by the effect of a "Gladiator Beast" monster: Target 1 face-up monster; destroy that target. 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 Murm... | --剣闘獣ムルミロ
--Gladiator Beast Murmillo
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_SPSUM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send all cards in your hand and on your side of the field to the Graveyard. Call the type of card (Spell, Trap, or Monster) on top of your Deck. If you call it right, exchange your current Life Points with your opponent's current ones. | --大逆転クイズ
--Reversal Quiz
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)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.cfilter(c)
return not c:IsAbleToGraveAsCost()
end
f... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 Winged Beast monster in your hand or face-up field; add 1 Winged Beast monster from your Deck to your hand with the same Level that the Tributed monster had. You can only activate 1 "Swallow's Cowrie" per turn. | --スワローズ・カウリー
--Swallow's Cowrie
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Search 1 Winged Beast monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.