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: | 3 Level 9 monsters If this card is Special Summoned: Destroy as many monsters with String Counters as possible, and if you do, draw 1 card, then inflict damage to your opponent equal to the highest original ATK among those destroyed monsters in the GY (your choice, if tied). Once per turn: You can detach 1 material fro... | --CNo.40 ギミック・パペット-デビルズ・ストリングス
--Number C40: Gimmick Puppet of Dark Strings
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,9,3)
c:EnableReviveLimit()
--destroy, draw and damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Detach 1 Xyz Material from a monster. | --スペース・サイクロン
--Space Cyclone
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... |
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 this card from your hand, and if you do, change the attack target to this card, and proceed to damage calculation. If you would take battle damage from that battle, you gain that much LP instead. | --EMクリボーダー
--Performapal Kuribohble
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetRange(LOCATION_HAND)
e1:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy all monsters you control, and if you do, inflict 300 damage to your opponent for each monster destroyed. | --サンダー・クラッシュ
--Thunder Crash
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
funct... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can equip 1 "Inzektor" monster from your hand or GY to this card. While this card is equipped to a monster, that monster's Level is increased by 3, also it gains ATK/DEF equal to this card's ATK/DEF. While this card is equipped to a monster: You can send this Equip Card to the GY, then target 1 card ... | --甲虫装機 ホーネット
--Inzektor Hornet
local s,id=GetID()
function s.initial_effect(c)
--Equip 1 "Inzektor" monster to this card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCategory(CATEGORY_EQUIP)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn: You can target 1 face-up monster you control; it gains 300 ATK for each "Performapal" card you currently control, until the end of this turn. ---------------------------------------- [ Monster Effect ] If this card is Normal or Special Summoned: You can target 1 monster you control; i... | --EMパートナーガ
--Performapal Partnaga
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--atk
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_PZONE)
e2:SetProperty(EFFECT_FLAG_CARD_TARGET)
e2:SetCou... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can target 1 Ritual Monster you control; show 1 Ritual Monster in your hand, until the end of this turn. The Level of the shown Ritual Monster becomes the targeted monster's Level, until the end of this turn (even if this card leaves the field). Once per turn, if "Ruin, Queen of Oblivion" or "Demise,... | --ブレイク・オブ・ザ・ワールド
--Breaking of the World
--Scripted by Eerie Code
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)
--Make the Level of 1 Ritual Monster in your hand become the Level of 1 Ri... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] When exactly 1 monster you control (and no other cards) is destroyed by battle: You can destroy this card, and if you do, Special Summon that monster destroyed by battle in Attack Position, and if you do that, it cannot be destroyed by battle this turn (even if this card leaves the field). ---------... | --EMチェーンジラフ
--Performapal Changeraffe
local s,id=GetID()
function s.initial_effect(c)
--Enable pendulum summon
Pendulum.AddProcedure(c)
--Special summon back your monster that was destroyed by battle
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute Summon this card by Tributing 1 Tribute Summoned monster. If this card is Tribute Summoned: Look at your opponent's hand and discard 1 card from their hand, and if you do, if it was a Monster Card, inflict damage to your opponent equal to its original Level x 200. If this card was Tribute Summoned by Tr... | --爆炎帝テスタロス
--Thestalos the Mega Monarch
local s,id=GetID()
function s.initial_effect(c)
--summon with 1 tribute
local e1=aux.AddNormalSummonProcedure(c,true,true,1,1,SUMMON_TYPE_TRIBUTE,aux.Stringid(id,0),s.otfilter)
local e2=aux.AddNormalSetProcedure(c,true,true,1,1,SUMMON_TYPE_TRIBUTE,aux.Stringid(id,0),s.otfilter... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish this face-up card you control and 1 face-up Normal Monster you control to target 1 "Gem-Knight" Fusion Monster in your Graveyard; Special Summon it from the Graveyard. | --ジェムナイト・エメラル
--Gem-Knight Emerald
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The equipped monster gains 300 ATK. When this card is destroyed and sent to the Graveyard while equipped: You can return this card to the hand. | --蝶の短剣-エルマ
--Butterfly Dagger - Elma
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--Atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(300)
c:RegisterEffect(e2)
--tohand
local e4=Effect.CreateEffect(c)
e4:SetDescription(au... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner Wyrm monsters If this card is Synchro Summoned: You can add to your hand or banish 1 "Swordsoul" card from your Deck. (Quick Effect): You can banish 1 "Swordsoul" card or 1 Wyrm monster from your hand or GY, then target 1 other Effect Monster on the field; negate its effects until the end of this... | --相剣大師-赤霄
--Swordsoul Grandmaster - Chixiao
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 Tuner + 1+ non-Tuner Wyrm monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsRace,RACE_WYRM),1,99)
--Add to your hand or banish 1 "Swordsoul" card from your ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 monster to target 1 monster of that Level your opponent controls; take control of that target until the End Phase. | --精神汚染
--Mind Pollutant
local s,id=GetID()
function s.initial_effect(c)
--control
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCategory(CATEGORY_CONTROL)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.op... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Return 1 "Neos" Fusion Monster you control to the Extra Deck. If all the Fusion Material Monsters listed on that Fusion Monster are in your Deck, you can Special Summon them. | --コンタクト・アウト
--Contact Out
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK+CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You take no damage from battles involving "Maliss" Link Monsters that point to this card. You can only use each of the following effects of "Maliss <P> White Rabbit" once per turn. If this card is Normal or Special Summoned: You can Set 1 "Maliss" Trap from your Deck with a different name than the cards in your GY. If ... | --M∀LICE<P>White Rabbit
--Maliss <P> White Rabbit
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--You take no battle damage from battles involving "Maliss" Link Monsters that point to this card
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_PLAYER_TAR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a Spell/Trap Card or monster effect that would destroy a monster(s) on the field: Pay 1500 LP; negate the activation, and if you do, destroy it. | --我が身を盾に
--My Body as a Shield
local s,id=GetID()
function s.initial_effect(c)
--Negate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DAMAGE_CAL)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.con... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is discarded to the Graveyard: You can target 1 "Mermail" monster in your Graveyard, except "Mermail Abyssgunde"; Special Summon that target. You can only use the effect of "Mermail Abyssgunde" once per turn. | --水精鱗-アビスグンデ
--Mermail Abyssgunde
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_FLAG_CARD_TARGET+EFFECT_FLAG_D... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Declare 1 Type of monster. Any monster of the declared Type cannot declare an attack during the turn it is Normal Summoned, Flip Summoned or Special Summoned. | --光の護封陣
--Array of Revealing Light
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
c:RegisterEffect(e1)
--race
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCod... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: You can Set 1 "Apophis" Trap from your Deck. This card's name becomes "Temple of the Kings" while in the Field Zone. Once per turn, if you have 2 or more Set cards on your field, or a Trap in your GY: You can add 1 monster that mentions "Temple of the Kings" from your Deck to your hand. You... | --王の遺宝祀りし聖域
--Treasures of the Kings
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--When this card is activated: You can Set 1 "Apophis" Trap from your Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Normal Summon this card without Tributing. If you do, during the End Phase: Send it to the Graveyard. | --光神機-桜火
--Majestic Mech - Ohka
local s,id=GetID()
function s.initial_effect(c)
--summon with no tribute
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SUMMON_PROC)
e1:SetCond... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Set this card from your hand to your Spell & Trap Zone as a Spell. During your opponent's turn, if this Set card in the Spell & Trap Zone is destroyed and sent to your GY: Special Summon it. If this card is Special Summoned during your opponent's turn: Destroy all cards in your Spell & Trap Zones. When an oppon... | --アーティファクト-ヴァジュラ
--Artifact Vajra
local s,id=GetID()
function s.initial_effect(c)
--set
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MONSTER_SSET)
e1:SetValue(TYPE_SPELL)
c:RegisterEffect(e1)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_SPECIAL_SUMMON)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 "Archfiend" monster, then target 1 "Terrorking Archfiend" you control; it can attack directly this turn. | --ディスカバード・アタック
--Checkmate
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1: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: | Target 1 face-up monster on the field; it loses ATK equal to its DEF until the end of this turn. | --鈍重
--Gravity Lash
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)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Change all face-up "Wind-Up" monsters you control to face-down Defense Position. | --伝説のゼンマイ
--Legendary Wind-Up Key
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute Summon this card by Tributing 1 Tribute Summoned monster. If this card is Tribute Summoned: Target 1 card on the field and 1 card in either GY, also if this card was Tribute Summoned by Tributing a WIND monster, you can target an additional card on the field; place the first target(s) on the top of the ... | --烈風帝ライザー
--Raiza the Mega Monarch
local s,id=GetID()
function s.initial_effect(c)
--summon with 1 tribute
local e1=aux.AddNormalSummonProcedure(c,true,true,1,1,SUMMON_TYPE_TRIBUTE,aux.Stringid(id,0),s.otfilter)
local e2=aux.AddNormalSetProcedure(c,true,true,1,1,SUMMON_TYPE_TRIBUTE,aux.Stringid(id,0),s.otfilter)
--... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn: You can target 1 other face-up card you control; destroy it, and if you do, Set 1 "Metalfoes" Spell/Trap Card directly from your Deck. ---------------------------------------- [ Flavor Text ] Roasting red rockets boost its blazing, bright-blast burners to liquified lava levels. Vanqui... | --メタルフォーゼ・ヴォルフレイム
--Metalfoes Volflame
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--destroy and set
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_PZONE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only if you control an "@Ignister" monster. Once per turn, during your Standby Phase, Tribute 1 Link Monster, or destroy this card. Each player can only Link Summon a monster once per turn while this card is face-up on the field. | ---Ai-Q
--A.I.Q
--Anime version scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Activated
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER)
e1:SetCondition(s.condition)
c:RegisterEffect(e1)
--Limited Lin... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ monsters, including a Fish, Sea Serpent, or Aqua monster Your opponent cannot target WATER monsters this card points to with card effects. You can only use each of the following effects of "Mermail King - Neptabyss" once per turn. If a WATER monster(s) is sent to the GY to activate a card or effect (except during th... | --皇たる水精鱗-ネプトアビス
--Mermail King - Neptabyss
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2+ monsters, including a Fish, Sea Serpent, or Aqua monster
Link.AddProcedure(c,nil,2,3,s.matcheck)
--Your opponent cannot target WATER monsters this card poin... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 "Destiny HERO" monsters During your Main Phase: You can look at the top 5 cards of your Deck or your opponent's Deck, then place them on the top of the Deck in any order. When this card destroys an opponent's monster by battle: You can draw 1 card. If this Fusion Summoned card is destroyed by battle or card effect: Y... | --D-HERO ドミネイトガイ
--Destiny HERO - Dominance
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Fusion Summon procedure
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_DESTINY_HERO),3)
--Rearrange the top 5 cards of a player's Deck
local e1=Ef... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent can discard 1 card to negate this card's effect, otherwise both players discard 2 cards, then draw 2 cards. | --暗黒の謀略
--Dark Scheme
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:RegisterEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster declares an attack, it is changed to Defense Position at the end of the Damage Step. It cannot change its battle position until the End Phase of its controller's next turn, while this card remains on the field. | --スパイダー・ウェブ
--Spider Web
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)
--to defense
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e2:SetCode(EVE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If "Umi" is on the field (Quick Effect): You can target 1 WATER monster you control, except "Doom Kraken", and 1 monster your opponent controls; Special Summon this card from your hand, and if you do, return that monster you control to the hand, and if you do that, destroy that opponent's monster. When an opponent's mo... | --デス・クラーケン
--Doom Kraken
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOHAND+CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this face-up card on the field returns to the hand: Special Summon it, but it cannot attack this turn. | --霞の谷の雷鳥
--Mist Valley Thunderbird
local s,id=GetID()
function s.initial_effect(c)
--If returned to hand, special summon itself
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_HAN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can pay 1000 LP, then target 1 face-up Spell/Trap on the field; destroy it. You can only activate this effect of "Unending Nightmare" once per Chain. | --醒めない悪夢
--Unending Nightmare
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 face-up Spell/Trap on the field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(i... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase, if you control this card on the field, you can equip it to your "Aitsu" as an Equip Spell Card, OR unequip the Union equipment and Special Summon this card in face-up Attack Position. While equipped to a monster by this card's effect, increase the ATK of the equipped monster by 30... | --コイツ
--Koitsu
local s,id=GetID()
function s.initial_effect(c)
aux.AddUnionProcedure(c,aux.FilterBoolFunction(Card.IsCode,48202661),true)
--atk up
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_EQUIP)
e3:SetCode(EFFECT_UPDATE_ATTACK)
e3:SetValue(3000)
e3:SetCondition(aux.IsUnionState)
c:RegisterEffect(e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 2+ non-Tuner monsters Must be Synchro Summoned. If this attacking card destroys a face-down Defense Position monster by battle and sends it to the GY: Draw 1 card. | --A・O・J フィールド・マーシャル
--Ally of Justice Field Marshal
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),2,99)
c:EnableReviveLimit()
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is treated as a Normal Monster while face-up on the field or in the Graveyard. While this card is a Normal Monster on the field, you can Normal Summon it to have it become an Effect Monster with this effect. ● If your opponent activates a Spell Card: You can target 1 Gemini monster in your Graveyard; Special ... | --フェニックス・ギア・フリード
--Phoenix Gearfried
local s,id=GetID()
function s.initial_effect(c)
Gemini.AddProcedure(c)
--Special Summon 1 Gemini monster
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:SetPro... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Level 3 or lower WATER monster you control; Special Summon 1 monster with the same name from your Deck, but you cannot Special Summon from the Extra Deck while you control that face-up Special Summoned monster. | --アイス・ミラー
--Ice Mirror
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon 1 level 3 or lower WATER monster from deck
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Negate all card effects in your opponent's Pendulum Zones. ---------------------------------------- [ Flavor Text ] This Overlord overran an entire world with his army of Dracofiends, using his Dragon Alchemy to convert all life into his terrible minions. The source of this power is unidentified, an... | --竜魔王ベクターP
--Vector Pendulum, the Dracoverlord
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--disable
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_DISABLE)
e2:SetRange(LOCATION_PZONE)
e2:SetTargetRange(0,LOCATION_PZONE)
c:Register... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1 or more non-Tuner LIGHT monsters Once per turn: You can target 1 face-up monster your opponent controls; change that target's battle position. If this card attacks a Defense Position monster, inflict piercing battle damage to your opponent. | --神聖騎士パーシアス
--Avenging Knight Parshath
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_LIGHT),1,99)
c:EnableReviveLimit()
--pos
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Magikey" Tuner + 1+ non-Tuner Normal Monsters This card can make up to 2 attacks on monsters during each Battle Phase. You can only use each of the following effects of "Magikey Fiend - Transfurlmine" once per turn. If you control this card that was Synchro Summoned using at least 2 Attributes of monsters: You can S... | --魔鍵変鬼-トランスフルミネ
--Magikey Fiend - Transfurlmine
--scripted by the Razgriz
local s,id=GetID()
function s.initial_effect(c)
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_MAGIKEY),1,1,Synchro.NonTunerEx(Card.IsType,TYPE_NORMAL),1,99)
c:EnableReviveLimit()
--Make up to 2 attacks on monsters each Bat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by battle with a monster, unless that monster has a higher Level. Once per turn, during your Standby Phase: You can increase this card's Level by 1. | --ロー・キューピット
--Cupid Dunk
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--indes
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
--e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
--e1:SetRange(LOCATION_MZONE)
e1:SetValue(s.indval)
c:Register... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can target 1 "Triamid" card in your Graveyard; shuffle it into the Deck, and if you do, all Rock-Type monsters you control gain 500 ATK and DEF. Once per turn, during your opponent's turn: You can target 1 "Triamid" Field Spell Card in your Field Zone; send it to the Graveyard, and if you do, activat... | --トラミッド・ダンサー
--Triamid Dancer
local s,id=GetID()
function s.initial_effect(c)
--Shuffle 1 "Triamid" card into the Deck and increase the ATK/DEF of Rock monsters
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK+CATEGORY_ATKCHANGE)
e1:SetProperty(EFFECT_FLAG_CARD_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can destroy this face-up card on the field. Your opponent must control a monster with a higher ATK than this card for you to activate and to resolve this effect. During your Standby Phase, if this card was destroyed by this effect: You can Special Summon this card from the Graveyard. | --おとぼけオポッサム
--Playful Possum
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.descon)
e1:SetTarget(s.destg)
e1:SetOperati... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a Dragon Synchro Monster you control. "Red Dragon Archfiend" equipped with this card is unaffected by your opponent's activated effects. Once per turn, during your Main Phase: You can make the ATK of all monsters your opponent currently controls become equal to the equipped monster's. Once per turn, when ... | --魂を刻む右
--Soul Fist
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Equip only to a Dragon Synchro Monster you control
aux.AddEquipProcedure(c,0,s.eqfilter)
--A "Red Dragon Archfiend" equipped with this card is unaffected by your opponent's activated effects
local e1=Effect.CreateEffect(c)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 monster your opponent controls; send 1 Pyro monster with 500 or less ATK from your hand to the GY, and if you do, destroy that target. Your monsters cannot attack the turn you activate this effect. | --ブレイズ・キャノン
--Blaze Accelerator
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)
--destroy
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_D... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Normal Summon Level 7 monsters without Tributing. During your Main Phase: You can Special Summon 1 of your non-Xyz "Kashtira" monsters that is banished or in your GY. If your opponent activates a Spell Card or effect, and you control a "Kashtira" monster: You can target 3 cards in your opponent's GY; banish the... | --クシャトリラ・バース
--Kashtira Birth
--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)
c:RegisterEffect(e1)
--Level 7 monsters can be summoned without Tributing
local e2=Effect.CreateEffect(c)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 "Dark Magician"; Special Summon 1 "Dark Magician of Chaos" from your hand, Deck, or Graveyard. | --光と闇の洗礼
--Dedication through Light and Darkness
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)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the GY as Synchro Material: You can Special Summon 1 "Speedroid Token" (Machine/WIND/ATK 0/DEF 0) with a Level equal to the original Level of the Synchro Monster that used this card as material. You can only use this effect of "Speedroid Block-n-Roll" once per turn. | --SRブロックンロール
--Speedroid Block-n-Roll
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:SetCode(EVENT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "F.A." monster, this card cannot be destroyed by your opponent's card effects. When your "F.A." monster whose Level is at least 5 higher than its original Level battles an opponent's monster and inflicts battle damage to them: You can banish 1 card from your hand, field, or GY. You can only use this ef... | --F.A.フォーミュラアスリートウィナーズ
--F.A. Winners
--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)
c:RegisterEffect(e1)
--indes
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
e2:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is destroyed by battle and sent to the Graveyard: You can banish this card and 3 "Elemental HERO" Monster Cards with different names from your Graveyard to target 1 Normal Spell Card in your Graveyard; add that target to your hand. | --E・HERO フラッシュ
--Elemental HERO Flash
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_D... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Inflict 400 damage to your opponent for each card in their hand. | --デス・コアラ
--Des Koala
local s,id=GetID()
function s.initial_effect(c)
--flip
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_SINGLE+EFFECT_TYPE_FLIP)
e1:SetTarget(s.target)
e1:SetOperation(s.ope... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Plant-Type monster on the field; destroy that target, and if you do, draw 1 card, then if that card is a Plant-Type monster, you can reveal it and draw 1 more card. | --フレグランス・ストーム
--Fragrance Storm
local s,id=GetID()
function s.initial_effect(c)
--Destroy 1 Plant monster on the field and draw 1 card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent Summons a monster(s): Change that monster(s) to face-down Defense Position. Monsters changed to face-down Defense Position by this effect cannot change their battle positions. | --底なし落とし穴
--Floodgate Trap Hole
local s,id=GetID()
function s.initial_effect(c)
--When opponent summons a monster(s), change it to face-down defense position
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.target)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters with different Types (Beast, Fiend, or Illusion) This card's name becomes "Chimera the Flying Mythical Beast" while on the field or in the GY. You can only use each of the following effects of "Berfomet the Mythical King of Phantom Beasts" once per turn. If this card is Fusion Summoned: You can send 1 Beast,... | --幻獣魔王バフォメット
--Berfomet the Mythical King of Phantom Beasts
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Summon procedure
Fusion.AddProcMixN(c,true,true,s.ffilter,2)
--Its name is treated as "Chimera the Flying Mythical Beast"
local e1=Effect.CreateEffect(c)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, if you control no monsters: You can place 1 "Supreme King Gate" Pendulum Monster from your Deck in your Pendulum Zone, also you cannot Pendulum Summon monsters for the rest of this turn, except DARK monsters. ---------------------------------------- [ Monster Effect ] If this card is ... | --覇王眷竜ダークヴルム
--Supreme King Dragon Darkwurm
local s,id=GetID(c)
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
--pendulum set
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_PZONE)
e1:SetCountLimit(1)
e1:SetCon... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 3 monsters Cannot attack directly unless it has material. Once per turn: You can detach 1 material from this card; it gains 500 ATK. | --No.17 リバイス・ドラゴン
--Number 17: Leviathan Dragon
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,3,2)
c:EnableReviveLimit()
--attack up
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay 500 Life Points. Negate the activation of a Spell Card and return it to the owner's hand. | --ゴブリンのその場しのぎ
--Goblin Out of the Frying Pan
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetCost(Cost.PayLP(500))
e1:SetTarge... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned by the effect of an "Evoltile" monster: This card loses 500 ATK. | --エヴォルダー・テリアス
--Evolsaur Terias
local s,id=GetID()
function s.initial_effect(c)
--atkdown
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetCondition(aux.evospcon)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 5 monsters When a card or effect is activated that targets this card (Quick Effect): You can detach 1 material from this card; Special Summon 1 "Performage Shadow Maker" from your Extra Deck. You can only use each of the following effects of "Performage Shadow Maker" once per turn. You can detach 1 material fro... | --Em影絵師シャドー・メイカー
--Performage Shadow Maker
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
Duel.EnableGlobalFlag(GLOBALFLAG_DETACH_EVENT)
c:EnableReviveLimit()
--Xyz Summon procedure: 3 Level 5 monsters
Xyz.AddProcedure(c,nil,5,3)
--Special Summon 1 "Performage Shadow Maker" from your Extra Deck... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase, if a monster Special Summoned from the Extra Deck is on the field (Quick Effect): You can Special Summon this card from your hand, then, if you control another "Dogmatika" monster, you can negate the effects of 1 face-up monster on the field, until the end of this turn. When your "Dogmatika" mons... | --教導の騎士フルルドリス
--Dogmatika Fleurdelis, the Knighted
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card gains 100 ATK for each Winged Beast-Type monster you control. Once per turn: You can target 1 Spell/Trap Card your opponent controls; destroy that target. You must control 3 or more Winged Beast-Type monsters to activate and to resolve this effect. | --ブラッドストーム
--Battlestorm
local s,id=GetID()
function s.initial_effect(c)
--attackup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(s.atkval)
c:RegisterEffect(e1)
--destroy
local e2... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate 1 of these effects. ● Target 1 face-up monster you control; send 1 "Vampire" monster from your Deck to the GY with a different Level, and if you do, the targeted monster becomes the Level of that sent monster in the GY, until the end of this turn. ● Target 1 "Vampire" monster in your GY; send 1 monster you con... | --ヴァンパイア・デザイア
--Vampire's Desire
--
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTarget(s.target)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, if a Fusion Monster is Fusion Summoned: You can target 1 "Metalfoes" monster in your GY with a lower Level than that Fusion Monster; Special Summon it. If this card is sent from the field to the GY: You can add 1 "Metalfoes" monster from your Deck to your hand. | --メタルフォーゼ・コンビネーション
--Metalfoes Combination
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)
c:RegisterEffect(e1)
--special summon
local e2=Effect.CreateEffect(c)
e2:SetD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Ritual Beast Tamer" monster + 1 "Spiritual Beast" monster Must be Special Summoned (from your Extra Deck) by banishing the above cards from your field and/or GY. You can only Special Summon "Ritual Beast Ulti-Nochiudrago(s)" once per turn. Your opponent cannot target other "Ritual Beast" monsters you control with ca... | --聖霊獣騎 ノチウドラゴ
--Ritual Beast Ulti-Nochiudrago
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Can only be Special Summoned once per turn
c:SetSPSummonOnce(id)
--Summon Procedure
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_RITUAL_BEAST_TAMER),... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Beast-Warrior-Type "Bujin" monster: You can banish this card from your Graveyard, then target 1 face-up card your opponent controls; destroy that target. You can only use the effect of "Bujingi Quilin" once per turn. | --武神器-ムラクモ
--Bujingi Quilin
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_GRAVE)
e1:SetCountLimit(1,id)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only by paying 1000 Life Points when your opponent activates a Spell Card. Your opponent discards 1 random card. | --魔の取引
--Terrible Deal
local s,id=GetID()
function s.initial_effect(c)
--handes
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetCost(Cost.PayLP(1000))
e1:SetTarget(s.target)
e1:SetOperation(s.activate... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the GY: Inflict 500 damage to your opponent. If this card is sent to the GY by the effect of a "Blaze Accelerator" card: You can send 2 "Volcanic Scattershots" from your hand and/or Deck to the GY; destroy all monsters your opponent controls. | --ヴォルカニック・バックショット
--Volcanic Scattershot
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:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetTarget(s.target)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3+ Level 6 monsters Gains 1000 ATK for each material attached to it. If this card attacks, at the end of the Damage Step: You can detach 1 material from this card; this card can attack an opponent's monster again in a row. At the end of the Battle Phase: You can pay half your LP, then target 2 cards in any GY(s); place... | --CNo.5 亡朧龍 カオス・キマイラ・ドラゴン
--Number C5: Chaos Chimera Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 3+ Level 6 monsters
Xyz.AddProcedure(c,nil,6,3,nil,nil,Xyz.InfiniteMats)
--Gains 1000 ATK for each material attached to it
local e1=Effect.CreateEffect(c)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate 1 of the following effects. ● Special Summon 1 "S-Force" monster from your hand in Defense Position. ● Target 1 "S-Force" monster in your GY; add it to your hand. You can only activate 1 "S-Force Showdown" per turn. | --S-Force ショウダウン
--S-Force Showdown
--Scripted by DyXel
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTarget(s.target)
c:RegisterEffect(e1)
end
s.listed_s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you take damage by battle or an opponent's card effect while this card is in the GY: You can banish this card from the GY, then target 1 card on the field; destroy it. | --ペロペロケルペロス
--Peropero Cerperus
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_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_DAMAGE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a "Penguin" monster. It gains 800 ATK. When the equipped monster inflicts battle damage to your opponent: You can return 1 card your opponent controls to the hand. If a face-up card your opponent controls leaves the field by a "Penguin" card's effect and returns to the hand or is banished: Negate the acti... | --ペンギン・ソード
--Penguin Sword
--Scripted by Neo Yuno
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsSetCard,SET_PENGUIN))
--Atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(800)
c:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish 1 monster you control, and 1 Synchro Monster in your GY that is a "Power Tool" monster or Level 7 or 8 Dragon monster, then target 1 card your opponent controls; destroy it. Level 7 or higher Synchro Monsters you control gain 400 ATK for each of your banished Level 7 or higher Synchro Monsters. Once per ... | --集いし光
--Gathering Light
--scripted by Naim
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)
--Destroy 1 card your opponent controls
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "Ghostrick" monster from your hand or GY, then you can change 1 face-down "Ghostrick" monster you control to face-up Attack Position. You can banish this card from your GY, then target 1 "Ghostrick" Xyz Monster you control; attach 1 "Ghostrick" card from your GY to that monster as material. You can onl... | --ゴーストリック・ショット
--Ghostrick Shot
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Ghostrick" monster from your hand or GY, then you can change 1 face-down "Ghostrick" monster you control to face-up Attack Position
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(i... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can send 1 "Orcust" or "World Legacy" card from your Deck to the GY, then, if there are 2 or more other cards in this card's column, treat this card as a Tuner this turn. If you control no other monsters: You can Special Summon 1 "World Legacy Token" (Machine/DARK/Level 1... | --宵星の騎士ギルス
--Girsu, the Orcust Mekk-Knight
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Send 1 "Orcust" or "World Legacy" card from your Deck to the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_SINGLE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "Meteonis Drytron". Your opponent cannot target this card with monster effects. If the total Levels of monsters used for its Ritual Summon are 2 or less, this card can attack all Special Summoned monsters your opponent controls once each. During your opponent's turn (Quick Effect): ... | --竜儀巧-メテオニス=DRA
--Drytron Meteonis Draconids
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Check material
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetCode(EFFECT_MATERIAL_CHECK)
e0:SetValue(s.valcheck)
c:RegisterEffect(e0)
--Cannot be t... |
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: This card can make a second attack during each Battle Phase... | --アルカナフォースEX-THE DARK RULER
--Arcana Force EX - The Dark Ruler
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Special summon procedure
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When monsters in the Graveyard are removed from play, remove monsters on your side of the field from play as substitutes. This card remains active until the end of the turn that it is activated. The substitutes remain removed from play. | --霊魂消滅
--Spirit Elimination
--fully implemented now?
--OF COURSE, SINCE PERCYPRO'S SCRIPTERS ARE THE BEST!!!!!
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:SetOperation(s.activate)
c:RegisterEffect(e1)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares a direct attack: You can send 1 "Yosenju" monster from your hand to the Graveyard, except "Yosenju Oyam"; Special Summon this card from your hand. You can only use this effect of "Yosenju Oyam" once per turn. At the start of the Damage Step, if this card battles an opponent's face-up... | --妖仙獣 大幽谷響
--Yosenju Oyam
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetRange(LOCATION_HAND)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no face-up cards, you can Normal Summon this card without Tributing, but its original ATK becomes 1800. If this card is Normal or Special Summoned: You can reveal 3 EARTH Machine monsters from your Deck, then your opponent randomly adds 1 of them to your hand, and you shuffle the rest back into your Deck... | --マシンナーズ・メタルクランチ
--Machina Metalcruncher
--scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--normal summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SUM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 5 monsters Once per turn (Quick Effect): You can activate 1 of these effects. ● When a monster effect is activated on the field OR when a Normal Spell/Trap Card is activated: You can detach 1 material from this card; the activated effect becomes "Destroy 1 Spell/Trap Card your opponent controls". ● You can deta... | --アーティファクト-デュランダル
--Artifact Durendal
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 5 monsters
Xyz.AddProcedure(c,nil,5,2)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_QUICK_O)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can Tribute 1 other Fish, Sea Serpent, or Aqua monster; this card gains 600 ATK. If this card attacks a Defense Position monster, inflict piercing battle damage. | --カンツウツボ
--Piercing Moray
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_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCost(s.cost)
e1:SetOperation(s.operat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If an Xyz Monster(s) is on the field: You can Special Summon this card from your hand. You can send 1 other card from your hand or field to the GY; add 1 "Xyz", "Onomat", "Zexal", or "Number" Spell/Trap, from your Deck to your hand. You can only use each effect of "Astraltopia" once per turn. | --希望皇アストラル・ホープ
--Astraltopia
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCondition(s.spcon)
e1:SetTarget(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can target 1 Level 1 LIGHT monster in your GY; Special Summon that target. | --天輪の葬送士
--Guiding Light
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_CARD_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) is Special Summoned, except from the GY while you control a Level 7 or 8 Dragon monster: Negate that face-up Special Summoned monster(s)'s effects until the end of this turn (even if this card leaves the field). Once per turn: You can send 1 other face-up card you control to the GY; Special Summon 1 "Dr... | --巨神竜の遺跡
--Ruins of the Divine Dragon Lords
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)
--disable
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategor... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can activate 1 of these effects; ● Place 1 "Break the Seal" from your Deck or GY, face-up on your field. ● Send 2 face-up "Break the Seal" you control to the GY, including this card; add 1 "Forbidden One" monster from your Deck to your hand. If this card on the field is destroyed: You can reveal up to 5 "Forbidden ... | --ブレイク・ザ・シール
--Break the Seal
--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)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Strin... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is treated as a Normal Monster while face-up on the field or in the GY. While this card is a Normal Monster on the field, you can Normal Summon it to have it become an Effect Monster with this effect. ● This card's name becomes "Elemental HERO Neos" while on the field. | --E・HERO アナザー・ネオス
--Elemental HERO Neos Alius
local s,id=GetID()
function s.initial_effect(c)
Gemini.AddProcedure(c)
--Becomes "Elemental HERO Neos" while on the field
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_CHANGE_CODE)
e1:SetRang... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand) by Tributing 3 Fiend monsters. Each time your opponent Normal Summons a monster: Special Summon 1 "Phantasm Token" (Fiend/DARK/Level 1/ATK 1000/DEF 1000), but it cannot declare an attack. Once per turn: You can Tribute 1 monster; this card gains A... | --幻魔皇ラビエル
--Raviel, Lord of Phantasms
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Cannot be Special Summoned
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetVal... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 of your "Labrynth" Spells/Traps that are banished or in your GY, except "Labrynth Set-Up"; shuffle them into the Deck, then if you control a Fiend monster, you can Set non-"Labrynth" Normal Traps with different names directly from your Deck equal to the number shuffled. You can only activate 1 "Labrynth Set-Up... | --ラビュリンス・セッティング
--Labrynth Set-Up
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Send to Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK)
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 Set this card from your hand to your Spell & Trap Zone as a Spell. You can only use each of the following effects of "Toy Tank" once per turn. If this Set card in the Spell & Trap Zone is sent to the GY: You can Special Summon this card. You can Tribute this monster; Special Summon 1 Level 6 or lower monster fr... | --トイ・タンク
--Toy Tank
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Can be Set as a Spell
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MONSTER_SSET)
e1:SetValue(TYPE_SPELL)
c:RegisterEffect(e1)
--Special Summon itself if it was sent to the GY while it was ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | There can only be 1 "Earthbound Immortal" monster on the field. If there is no face-up Field Spell on the field, destroy this card. Your opponent's monsters cannot target this card for attacks. This card can attack your opponent directly. Once per turn: You can inflict damage to your opponent equal to half this card's ... | --地縛神 Chacu Challhua
--Earthbound Immortal Chacu Challhua
local s,id=GetID()
function s.initial_effect(c)
--Can only be 1 "Earthbound Immortal" on the field
c:SetUniqueOnField(1,1,aux.FilterBoolFunction(Card.IsSetCard,SET_EARTHBOUND_IMMORTAL),LOCATION_MZONE)
--Destroy itself if there is no face-up field spell
local... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Attack Position monster on the field; return it to the hand/Extra Deck, then you can place 1 "Dracotail" card from your GY or banishment on the bottom of the Deck, except "Dracotail Horn", then draw 1 card. You can only activate 1 "Dracotail Horn" per turn. | --星辰の裂角
--Dracotail Horn
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Return 1 Attack Position monster to the hand/Extra Deck, 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.St... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. When this card is Normal Summoned: You can equip as many Equip Spell Cards from your Graveyard as possible to a Warrior-Type monster(s) you control. | --ギルフォード・ザ・レジェンド
--Gilford the Legend
local s,id=GetID()
function s.initial_effect(c)
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:RegisterEffect(e1)
--equip
local ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When another "Crystal Beast" monster you control is targeted for an attack: You can change the attack target to this card. If this face-up card is destroyed in a Monster Zone, you can place it face-up in your Spell & Trap Zone as a Continuous Spell, instead of sending it to the GY. | --宝玉獣 アンバー・マンモス
--Crystal Beast Amber Mammoth
local s,id=GetID()
function s.initial_effect(c)
--send replace
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_TO_GRAVE_REDIRECT_CB)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetCondition(s.repcon)
e1:SetOperation(s.repop)
c:Register... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Fusion Monster + 1 DARK monster Once per turn (Quick Effect): You can target 1 face-up monster your opponent controls; place 1 Predator Counter on it, and if it is Level 2 or higher, it becomes Level 1 as long as it has a Predator Counter. When a monster effect activated by your opponent resolves, negate the effect i... | --捕食植物ドラゴスタペリア
--Predaplant Dragostapelia
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsType,TYPE_FUSION),aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_DARK))
--add counter
local e1=Effect.CreateEffect(c)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The equipped monster cannot attack. Destroy the equipped monster at the end of its controller's 2nd turn after this card is activated. At that time, this card is returned to the owner's hand. | --疫病ウィルス ブラックダスト
--Ekibyo Drakmord
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,nil,nil,nil,nil,s.eqpop1,nil)
--Cannot attack
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_CANNOT_ATTACK)
c:RegisterEffect(e2)
--Count turns
local e3=Effect.CreateEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Shuffle 2 of your "Blackwing" monsters (1 Tuner and 1 non-Tuner) that are banished and/or in your GY into the Deck/Extra Deck; Special Summon 1 "Blackwing" Synchro Monster or "Black-Winged Dragon" from your Extra Deck whose Level equals the total Levels of those 2 monsters. (This is treated as a Synchro Summon.) If you... | --BF-ツインシャドウ
--Blackwing - Twin Shadow
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Black-Winged Dragon" or "Blackwing" Synchro monster from the Extra Deck
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can target 1 Level 4 or lower WIND Dragon or Winged Beast monster in your GY; Special Summon it, but negate its effects. While this card is equipped to a monster: You can Special Summon this equipped card. You can only use each effect of "Dragunity Guisarme" once per turn. | --ドラグニティ-ギザーム
--Dragunity Guisarme
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Level 4 or lower WIND Dragon/Winged Beast from your GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 card in either player's Pendulum Zone and declare a Pendulum Scale from 1 to 10; this turn, that card becomes that Pendulum Scale. | --ペンデュラム・ターン
--Pendulum Shift
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
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:RegisterEffect(e1)
end
function s.ta... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only if both a "Gravekeeper's" monster and "Necrovalley" are on the field. Neither player can Special Summon monsters, except "Gravekeeper's" monsters. If either a "Gravekeeper's" monster or "Necrovalley" is not on the field, destroy this card. | --ネクロバレーの祭殿
--Hidden Temples of Necrovalley
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:SetCondition(s.actcon)
c:RegisterEffect(e1)
--disable spsummon
local e2=Effect.CreateEffect(c)
e2:SetType(EFFEC... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.