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: | Place 1 card on top of the Deck from your hand, Deck, or GY, that is "Dark Magician" or mentions "Dark Magician" or "Dark Magician Girl", except "Soul Servant". During your Main Phase: You can banish this card from your GY; draw cards equal to the number of "Palladium" monsters, "Dark Magician", and/or "Dark Magician G... | --魂のしもべ
--Soul Servant
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Place 1 card on top of the Deck from your hand, Deck, or GY, that is "Dark Magician" or mentions "Dark Magician" or "Dark Magician Girl"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategor... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during the Battle Step or Damage Step of this card's attack, when your opponent activates a card or effect, you can select 1 "Naturia" monster in your Graveyard. Special Summon that monster from the Graveyard. | --ナチュル・スタッグ
--Naturia Stag Beetle
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_QUICK_O)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetRa... |
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: You can send 2 "Monarch" Spell/Trap Cards with different names from your hand and/or Deck to the Graveyard, and if you do, shuffle 1 card from your opponent's hand (at random), Graveyard, or their side of the fie... | --冥帝エレボス
--Erebus the Underworld 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.otfilte... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate 1 of these effects; ● Add 1 Wyrm monster from your Deck to your hand. ● Send any number of Wyrm monsters from your hand and/or face-up from your field to the GY; draw cards equal to the number of monsters you sent to the GY +1. | --幽麗なる幻滝
--Waterfall of Dragon Souls
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:SetHintTiming(0,TIMING_END_PHASE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can add 1 Level 5 Fiend monster or 1 "Chimera Fusion" from your Deck to your hand. If this card is sent to the GY as material for a Fusion Summon: You can add 1 Illusion monster from your Deck to your hand. You can only use each effect of "Gazelle the King of Mythical Cla... | --幻爪の王ガゼル
--Gazelle the King of Mythical Claws
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Search Level 5 Fiend or "Chimera Fusion"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 8 monsters Gains 100 ATK and DEF for each monster in the GYs. Once per turn: You can detach 1 material from this card; until the end of your opponent's next turn, this card cannot be destroyed by card effects, also neither player can Special Summon monsters from the GYs. | --No.68 魔天牢サンダルフォン
--Number 68: Sanaphond the Sky Prison
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Xyz summon procedure
Xyz.AddProcedure(c,nil,8,2)
--Gains 100 ATK/DEF per monster in the GYs
local e1=Effect.CreateEffect(c)
e1:SetType(EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can be treated as 2 Tributes for the Tribute Summon of a Plant-Type monster. | --ローズ・ウィッチ
--Rose Witch
local s,id=GetID()
function s.initial_effect(c)
--double tribute
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DOUBLE_TRIBUTE)
e1:SetValue(s.condition)
c:RegisterEffect(e1)
end
function s.condition(e,c)
return c:IsRace(RACE_PLANT)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you control a monster, except "Selettrice Vaalmonica", your opponent's monsters cannot target this card for attacks. You can only use each of the following effects of "Selettrice Vaalmonica" once per turn. If this card is Normal or Pendulum Summoned: You can add 1 "Vaalmonica" card from your Deck to your hand, ex... | --天魔の聲選姫
--Selettrice Vaalmonica
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Cannot be targeted for attacks
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_CANNOT_BE_BATTLE_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be destroyed by battle. During each of your opponent's Standby Phases: You take 1000 damage. You must control this card in face-up Defense Position to activate and to resolve this effect. | --X-セイバー パシウル
--X-Saber Pashuul
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_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCode(EVENT_PHAS... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 300 ATK for each Continuous Trap on the field and in the GYs. You can only use each of the following effects of "Pharaonic Advent" once per turn. You can Tribute 1 monster; Special Summon this card from your hand. You can Tribute 1 Fairy, Fiend, or Reptile monster; add 1 Continuous Trap from your Deck to your han... | --ファラオニック・アドベント
--Pharaonic Advent
--Scripted by Eerie Code
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... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a FIRE monster, you can Special Summon this card (from your hand). When you do: Target 1 FIRE monster you control; destroy that target. During each of your Standby Phases: Special Summon 1 "Fireball Token" (Pyro-Type/FIRE/Level 1/ATK 100/DEF 100) in Defense Position. You can Tribute 1 other FIRE monster;... | --怨念の魂 業火
--Goka, the Pyre of Malice
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:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetRange(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This monster gets the following effect(s) while there is a monster(s) with the following Attribute(s) on the field: ● EARTH: Negate the effect of an Effect Monster that this card destroyed by battle. ● WIND: If this card destroyed your opponent's monster by battle, it can attack once again in a row. | --エレメント・デビル
--Element Doom
local s,id=GetID()
function s.initial_effect(c)
--disable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_BATTLED)
e1:SetCondition(s.discon)
e1:SetOperation(s.disop)
c:RegisterEffect(e1)
--chain attack
local e2=Effect.CreateEffec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster you control; equip this card to that target. Once per turn, while the equipped monster is in Attack Position, it cannot be destroyed by battle. You take no battle damage from attacks involving it. | --陰謀の盾
--Intrigue Shield
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCost(aux.RemainFieldCost)
e1:SetTarget(s.target)
e1:SetO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is destroyed by battle or sent to the GY by a card effect: You can add 1 "Fossil Fusion", or 1 card that specifically lists "Fossil Fusion" in its text except "Weathering Soldier", from your Deck to your hand. You can only use this effect of "Weathering Soldier" once per turn. Once per turn, during your En... | --風化戦士
--Weathering Soldier
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--If destroyed by battle, add 1 "Fossil Fusion" or 1 card that specifically lists "Fossil Fusion"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as a "Sinful Spoils" card.) You can banish 1 Spell and 1 Trap from your hand and/or GY; Special Summon this card from your hand or GY. (Quick Effect): You can pay half your LP, then target 1 card your opponent controls; destroy it, then if another "Diabell" Monster Card is on the field, you... | --断罪のディアベルスター
--Diabellstar Vengeance
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your 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:SetRange(LOCATI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Take 1 card from your Deck (either a "Barian's" Spell/Trap, a "Rank-Up-Magic" Quick-Play Spell, or a "Seventh" Spell/Trap except "Seventh Ascension"), and either add it to your hand or place it on top of your Deck. If your opponent controls a monster Special Summoned from the Extra Deck: You can banish this card from y... | --七皇昇格
--Seventh Ascension
--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_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: | All "Amorphage" monsters on the field gain 300 ATK and DEF. Up to twice per turn, if an "Amorphage" monster(s) you control is Tributed, draw 1 card. You can banish this card from your Graveyard; Tribute Pendulum Monsters from your hand or field whose total Levels exactly equal 8, then Ritual Summon 1 "Amorphactor Pain,... | --アモルファスP
--Amorphous Persona
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--atk/def up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You cannot Pendulum Summon monsters, except "Ritual Beast" and "Zefra" monsters. This effect cannot be negated. ---------------------------------------- [ Monster Effect ] When this card is Normal or Pendulum Summoned: You can add 1 face-up "Zefra" monster from your Extra Deck to your hand, except "... | --影霊獣使い-セフィラウェンディ
--Ritual Beast Tamer Zefrawendi
local s,id=GetID()
function s.initial_effect(c)
c:SetSPSummonOnce(id)
--pendulum summon
Pendulum.AddProcedure(c)
--splimit
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOCATION_PZONE)
e2:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON)
e2:SetP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase: You can make this card Level 3 until the End Phase. | --鍵戦士キーマン
--Key Man the Key Warrior
local s,id=GetID()
function s.initial_effect(c)
--Make this card Level 3 until the End Phase
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_LVCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Double the ATK of all Machine monsters you currently control, until the end of this turn. During the End Phase of this turn, destroy those monsters. | --リミッター解除
--Limiter Removal
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetCondition(aux... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ "Number" Xyz Monsters, with the same Rank, that have material Once per turn: You can Special Summon Rank 9 or lower "Number" monsters with 3000 or less ATK that have different Ranks from each other from your Extra Deck, up to the number of materials with different names attached to this card, but their effects are n... | --No.93 希望皇ホープ・カイザー
--Number 93: Utopia Kaiser
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
c:EnableReviveLimit()
Xyz.AddProcedure(c,s.xyzfilter,nil,2,nil,nil,Xyz.InfiniteMats,nil,false,s.xyzcheck)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCatego... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Masked HERO" monsters (This card is always treated as an "Elemental HERO" card.) Must be Fusion Summoned and cannot be Special Summoned by other ways. While face-up on the field, this card is also LIGHT-Attribute. Once per turn, during either player's turn: You can target 1 face-up card on the field; negate that tar... | --C・HERO カオス
--Contrast HERO Chaos
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_MASKED_HERO),2)
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by battle. After resolving a card effect that targets this face-up card, destroy this card. When this card inflicts battle damage to your opponent by a direct attack: Discard 1 random card from their hand. | --魂を削る死霊
--Spirit Reaper
local s,id=GetID()
function s.initial_effect(c)
--battle indestructable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(1)
c:RegisterEffect(e1)
--handes
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Remove 1 Bushido Counter from your side of the field to activate 1 of these effects. ● Target 1 monster your opponent controls; destroy that target. ● Target 1 card your opponent controls; return that target to the hand. | --六武式風雷斬
--Six Strike - Thunder Blast
local s,id=GetID()
function s.initial_effect(c)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your "Danger!" monster is destroyed by battle with an opponent's monster: You can destroy that opponent's monster. You can banish 3 "Danger!" Spells/Traps with different names from your GY; destroy all cards on the field, also you cannot Special Summon monsters for the rest of this turn, except "Danger!" monsters.... | --激動の未界域
--Danger! Disturbance! Disorder!
--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)
--Destroy opponent's monster
local e2=Effect.CreateEffect(c)
e2:SetCate... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can add 1 "Starry Knight" Spell/Trap from your Deck to your hand. You can banish this card from your GY, then target 1 "Starry Knight" monster in your GY, except "Starry Knight Rayel"; Special Summon it. You can only use each effect of "Starry Knight Rayel" once per turn. | --ホーリーナイツ・レイエル
--Starry Knight Rayel
--Scripted by DyXel
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Starry Knight" Spell/Trap from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is unaffected by monsters' activated effects, except Pendulum Monsters'. | --シュルブの魔導騎兵
--Magical Cavalry of Cxulub
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--immune
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_IMMUNE_EFFECT)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 "Battlin' Boxer" monsters If a "Battlin' Boxer" monster(s) you control would be destroyed by battle or card effect, you can detach 1 material from this card instead of destroying 1 of those monsters. If a material(s) is removed from this card: This card gains 800 ATK. * The above text is unofficial and descri... | --BK 拘束蛮兵リードブロー
--Battlin' Boxer Lead Yoke
local s,id=GetID()
function s.initial_effect(c)
Duel.EnableGlobalFlag(GLOBALFLAG_DETACH_EVENT)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_BATTLIN_BOXER),4,2)
c:EnableReviveLimit()
--destroy replace
local e1=Effect.CreateEffect(c)
e1:SetT... |
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: You can Special Summon 1 Level 6 or lower FIRE Dinosaur-Type monster from your hand. | --エヴォルダー・エリアス
--Evolsaur Elias
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:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_SPS... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 card; for the rest of this turn, reduce the Levels of all monsters in your hand by 2 (even after they are Summoned). | --コストダウン
--Cost Down
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.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return D... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, you can either: Target 1 Machine monster you control; equip this card to that target, OR: Unequip this card and Special Summon it. A monster equipped with this card gains 500 ATK/DEF, also if the equipped monster would be destroyed by battle or card effect, destroy this card instead. | --強化支援メカ・ヘビーウェポン
--Heavy Mech Support Platform
local s,id=GetID()
function s.initial_effect(c)
aux.AddUnionProcedure(c,aux.FilterBoolFunction(Card.IsRace,RACE_MACHINE))
--Atk up
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(500)
c:RegisterEffect(e1)
-... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up Level 3 monster you control; Special Summon 1 monster with the same name as that monster from your hand or Graveyard. Its effects are negated. During the End Phase of this turn, destroy the face-up monster that was targeted by this card. | --最期の同調
--Final Gesture
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reveal 1 Normal Monster from your Deck, and 1 Effect Monster from your Deck with the same Type, Attribute, and Level, then your opponent randomly chooses 1 for you to add to your hand, also you shuffle the other into your Deck. You can only activate 1 "Monster Assortment" per turn. | --モンスターアソート
--Monster Assortment
--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... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can attack twice during each Battle Phase. If this card battles, negate the effects of the monster it battled, after damage calculation (including in the Graveyard). | --エレキタリス
--Wattsquirrel
local s,id=GetID()
function s.initial_effect(c)
--Extra attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_EXTRA_ATTACK)
e1:SetValue(1)
c:RegisterEffect(e1)
--Disable
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay 500 Life Points. Special Summon from both players' Graveyards as many Normal Monsters as possible with 1000 or less ATK that were destroyed by battle this turn. | --オーバーリミット
--Over Limit
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCost(Cost.PayLP(500))
e1:SetTarget(s.tg)
e1:SetOper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand or GY) by shuffling 5 other "Memento" monsters with different names from your hand and/or GY into the Deck/Extra Deck. While you control no other monsters, this card can attack all monsters your opponent controls, once each. Once per turn, if your ... | --冥骸合竜-メメントラル・テクトリカ
--Mementoal Tecuhtlica - Combined Creation
--Scripted by Satellaa
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Cannot Special Summon
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e0:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can have this card's ATK become double its original ATK until the end of this turn. Once per turn, during the End Phase, if this card's previous effect was activated this turn: Destroy this card. * The above text is unofficial and describes the card's functionality in the OCG. | --カラテマン
--Karate Man
local s,id=GetID()
function s.initial_effect(c)
--atk
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:SetOperation(s.operaion)
c:RegisterEffect(e1)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While this card is in your hand: You can target 3 "Igknight" cards you control; destroy them, and if you do, Special Summon this card. Once per turn: You can target 1 other "Igknight" monster you control; return it to the hand, and if you do, place 1 Spell/Trap Card your opponent controls on the bottom of the Deck. | --イグナイト・アヴェンジャー
--Igknight Lancer
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.sptg)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card destroys an opponent's monster by battle and sends it to the GY: You can Special Summon 1 FIRE monster with 200 or less DEF from your Deck, except "Flamvell Firedog". | --フレムベル・ヘルドッグ
--Flamvell Firedog
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetCondition(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 "Vehicroid" Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Materials, and if you do, it cannot be destroyed by card effects, and its effects cannot be negated. | --ビークロイド・コネクション・ゾーン
--Vehicroid Connection Zone
local s,id=GetID()
function s.initial_effect(c)
--Fusion summon 1 "Vehicroid" fusion monster
--Using monsters from hand or field as fusion material
c:RegisterEffect(Fusion.CreateSummonEff(c,aux.FilterBoolFunction(Card.IsSetCard,SET_VEHICROID),nil,nil,nil,nil,s.stage2))... |
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 other monsters from your hand to the Graveyard, and cannot be Special Summoned by other ways. This card's ATK becomes the combined original Levels of the sent monsters x 300. | --モンタージュ・ドラゴン
--Montage Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetValue(aux.FALSE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can only be Normal Summoned or Set by discarding all other card(s) in your hand and Tributing 1 card you control with 2000 or more ATK. This card gains 200 ATK for each monster your opponent controls. This card loses 500 ATK for each other monster you control. | --炎獄魔人ヘル・バーナー
--Infernal Incinerator
local s,id=GetID()
function s.initial_effect(c)
--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_LIMIT_SUMMON_PROC)
e1:SetCondition... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send to the GY either 1 Spellcaster monster you control, or 1 other "Spellbook" card from your hand or face-up field, except "Spellbook of Knowledge", and if you do, draw 2 cards. You can only activate 1 "Spellbook of Knowledge" per turn. | --ルドラの魔導書
--Spellbook of Knowledge
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTarget(s.target)
e1:SetOp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Psychic-Type monster you control is destroyed by battle with an opponent's attacking monster: Target the opponent's monster; destroy that target, and if you do, gain LP equal to the destroyed monster's ATK on the field. | --念導力
--Telepathic Power
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_BATTLE_DESTROYED)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only when a Synchro Monster you control is destroyed by your opponent's card (either by battle or by card effect) and sent to the Graveyard. Select 1 of your removed from play Spell Cards and add it to your hand. | --パラレル・セレクト
--Parallel Selection
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetCondition(s.condition)
e1:SetTarget(s.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Cyberse monster(s) is Normal or Special Summoned to your field while this monster is on the field (except during the Damage Step): You can Special Summon 1 "Data Token" (Cyberse/LIGHT/Level 1/ATK 0/DEF 0). You can only use this effect of "Link Streamer" once per turn. | --リンク・ストリーマー
--Link Streamer
local s,id=GetID()
function s.initial_effect(c)
--token
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetRange(LOCATI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1 or more non-Tuner monsters If this card is Synchro Summoned using a "Blackwing" monster as Material, it is treated as a Tuner monster while face-up on the field. This card gains 300 ATK for each "Blackwing" monster in your Graveyard. When this card is destroyed and sent to the Graveyard: You can target 1 Wi... | --A BF-涙雨のチドリ
--Assault Blackwing - Chidori the Rain Sprinkling
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--add type
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Synchro Summoned: You can activate 1 of these effects; ● Add 1 "Speedroid" Spell/Trap from your Deck to your hand. ● If all materials that were used for the Synchro Summon of this card were "Speedroid" monsters, and are all in your GY, Special Summon all of them. You cann... | --HSRコルク-10
--Hi-Speedroid Cork Shooter
--Scripted by the Razgriz
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--Add Speedroid Spell/Trap to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: You can add 1 "S-Force" monster from your Deck to your hand. When an opponent's monster declares an attack on your "S-Force" monster in its same column: You can activate this effect; that monster you control cannot be destroyed by that battle. You can only use this effect of "S-Force Bridge... | --S-Force ブリッジヘッド
--S-Force Bridgehead
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, when a "Performapal" monster you control is destroyed by battle: You can target 1 "Performapal" or "Odd-Eyes" card in your Pendulum Zone; Special Summon it. ---------------------------------------- [ Monster Effect ] Once per turn: You can target 1 Pendulum Monster you control; it gai... | --EMオオヤヤドカリ
--Performapal Sellshell Crab
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--atk
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1)
e1:SetTarget(s.atktg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent controls a monster, and you control no other monsters: You can target 1 Fusion Monster in your Graveyard; banish both this card from the field and that target, and if you do, Special Summon 1 Dragon-Type Synchro Monster from your Extra Deck whose Level equals the total Levels those 2 monsters had (orig... | --劫火の舟守 ゴースト・カロン
--Ghost Charon, the Underworld Boatman
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
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 Normal or Special Summoned: You can take 1 Machine monster whose ATK equals its own DEF from your Deck and place it on top of your Deck. You can banish this card from your GY, then target 1 Machine monster in your GY whose ATK equals its own DEF; Special Summon it in Defense Position. You can only use e... | --機巧蛙-磐盾多邇具久
--Gizmek Taniguku, the Immobile Intellect
--scripted by Rundas
local s,id=GetID()
function s.initial_effect(c)
--Stack Topdeck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_DELAY+EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DAMAGE_CAL)
e1:SetType(EFFECT_TYPE_S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal or Flip Summoned: You can add 1 Ritual Monster from your Deck to your hand. | --センジュ・ゴッド
--Senju of the Thousand Hands
local s,id=GetID()
function s.initial_effect(c)
--effect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarge... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, you can Tribute 1 Aqua-Type monster to select 1 "Frog" monster in your Graveyard, except "Frog the Jam". Special Summon that monster from your Graveyard. | --サシカエル
--Tradetoad
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_MZO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While you have no cards in your hand and this card is in Attack Position, it cannot be destroyed by battle. | --リボーン・ゾンビ
--Reborn Zombie
local s,id=GetID()
function s.initial_effect(c)
--cannot destroy
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.condition)
e1:SetValue(1)
c:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All Dinosaur, Zombie, and Rock monsters on the field gain 200 ATK/DEF. | --荒野
--Wasteland
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetRange(LOCATI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no Effect Monsters: You can Special Summon this card from your hand. If you control a face-up non-Effect Monster: You can banish this card from your hand or GY, then target 1 card your opponent controls; return it to the hand. You can only use each effect of "Tenyi Spirit - Vishuda" once per turn. | --天威龍-ヴィシュダ
--Tenyi Spirit - Vishuda
--Scripted by Hatter
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_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (Quick Effect): You can send this card from your hand to the GY; this turn, each time your opponent Special Summons a monster(s), immediately draw 1 card. You can only use this effect of "Maxx "C"" once per turn. | --増殖するG
--Maxx "C"
local s,id=GetID()
function s.initial_effect(c)
--draw
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER)
e1:SetRange(LOCATION_HAND)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by paying 800 LP, then target 1 Synchro Monster in your Graveyard; Special Summon it in Attack Position. Its effects are negated, also it cannot declare an attack this turn. When this card leaves the field, destroy that monster. When that monster is destroyed, destroy this card. | --ウィキッド・リボーン
--Wicked Rebirth
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCost(C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand or GY) by banishing 3 "Infernoid" monsters from your hand or GY while the total Levels and Ranks of all Effect Monsters you control are 8 or lower. When this card is Special Summoned: You can destroy all Spells and Traps on the field, except "Void"... | --インフェルノイド・リリス
--Infernoid Devyaty
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Infernoid.RegisterSummonProcedure(c,3)
--Destroy all non-"Void" Spell/Trap cards on the field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent cannot activate cards or effects in response to the effect activations of your Synchro Monsters with "Warrior", "Synchron", or "Stardust" in their original names. If you Synchro Summon a "Warrior", "Synchron", or "Stardust" Synchro Monster: You can target 1 monster in your GY used as its material; Special... | --シンクロ・チェイス
--Synchro Chase
--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)
--Special Summon 1 monster used as material for a Synchro Summon
local e2=Effect.Creat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control an Illusion or Spellcaster monster: Activate 1 of these effects; ● Your Illusion and Spellcaster monsters cannot be destroyed by battle this turn. ● During your opponent's turn: Target 1 face-up monster your opponent controls; take control of it until the End Phase. ● When an opponent's monster declares ... | --幻惑の眼
--Eye of Illusion
--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:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER)
e1:SetCondition(s.condition)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 5 monsters When this card is sent from the field to the Graveyard: Draw 1 card. If this card has "Fairy Cheer Girl" as an Xyz Material, it gains this effect. ● When this card destroys an opponent's monster by battle and remains on the field: You can detach 1 Xyz Material from this card; inflict 400 damage to yo... | --CXダーク・フェアリー・チア・ガール
--CXyz Dark Fairy Cheer Girl
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,5,3)
c:EnableReviveLimit()
--draw
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can be used to Ritual Summon any "Nephthys" Ritual Monster. You must also Tribute monsters from your hand or field whose total Levels equal or exceed the Level of the Ritual Monster you Ritual Summon. Then, if you Tributed "Devotee of Nephthys" or "Cerulean Sacred Phoenix of Nephthys", you can destroy 1 card ... | --ネフティスの輪廻
--Rebirth of Nephthys
local s,id=GetID()
function s.initial_effect(c)
Ritual.AddProcGreater({handler=c,filter=s.ritualfil,stage2=s.stage2})
end
s.listed_series={SET_NEPHTHYS}
s.fit_monster={88176533,24175232}
function s.ritualfil(c)
return c:IsSetCard(SET_NEPHTHYS) and c:IsRitualMonster()
end
function s.mf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard 1 other "Machina" monster; Special Summon this card from your hand. During your opponent's turn (Quick Effect): You can target 1 Machine monster you control; Special Summon from your Deck, 1 "Machina" monster with a different name and an equal or lower Level than that monster, and if you do, destroy tha... | --マシンナーズ・エアレイダー
--Machina Air Raider
local s,id=GetID()
function s.initial_effect(c)
--special summon from 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:SetCountLimit(1,id)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Skip your own Standby Phase. | --ソロモンの律法書
--Solomon's Lawbook
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.activate(e,tp,eg,ep,ev,re,r,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Add 1 "Great Sand Sea - Gold Golgonda" from your Deck to your hand. If "Great Sand Sea - Gold Golgonda" is in your Field Zone, you can apply this effect instead. ● Add 1 "Springans" monster from your Deck to your hand, and if you do, send 1 "Springans" monster from your Deck to the GY. You can only activate 1 "Springan... | --スプリガンズ・ウォッチ
--Springans Watch
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Vast Desert Gold Golgonda" from deck
--Or add 1 "Sprigans" monster from deck, and if you do, send 1 "Sprigans" monster from deck to GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your LP are lower than your opponent's: You can Special Summon this card from your hand. If this card is Normal or Special Summoned: You can target 1 non-Warrior "Gold Pride" monster in your GY; Special Summon it in Defense Position, also you cannot Special Summon monsters from the Extra Deck for the rest of this tu... | --GP-リオン
--Gold Pride - Leon
--scripted by Naim
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:SetCou... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can Summon more than two times per turn. | --サモンリミッター
--Summon Limit
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)
--summon count limit
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOCATION_SZONE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ monsters, including a Link Monster (This card is always treated as a "Sky Striker Ace" card.) Must first be Link Summoned. Loses 3000 ATK while you have no Spells in your GY. When your opponent activates a card or effect as Chain Link 2 or higher (Quick Effect): You can banish 2 Spells from your hand and/or GY; nega... | --閃術兵器-S.P.E.C.T.R.A.
--Surgical Striker - S.P.E.C.T.R.A.
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,nil,2,4,s.lcheck)
--Must first be Link Summoned
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetPrope... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a Defense Position monster you control is attacked, you can send this card from your hand to the Graveyard during the Damage Step to have your attacked monster gain 1500 DEF until the End Phase. | --牙城のガーディアン
--Stronghold Guardian
local s,id=GetID()
function s.initial_effect(c)
--defup
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetRange(LOCATIO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish this card from your Graveyard, then target 2 Level 5 WATER monsters in your Graveyard, except "Gazer Shark"; Special Summon both those monsters, but their effects are negated. Immediately after this effect resolves, Xyz Summon 1 WATER Xyz Monster using only those 2 monsters. You can only use this effect ... | --ゲイザー・シャーク
--Gazer Shark
local s,id=GetID()
function s.initial_effect(c)
--Banish itself, Special Summon 2 level 5 WATER monsters from your GY then Xyz Summon 1 WATER monster using those monsters as materials
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Fish, Sea Serpent, and/or Aqua monsters Monsters this card points to gain 500 ATK/DEF. You can only use each of the following effects of "Mermail Abyssalacia" once per turn. ● During your opponent's turn (Quick Effect): You can send 1 card from your hand to the GY; add 1 "Mermail" monster from your Deck to your hand.... | --水精鱗-サラキアビス
--Mermail Abyssalacia
--
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_AQUA|RACE_FISH|RACE_SEASERPENT),2,2)
c:EnableReviveLimit()
--atk/def
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_UP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay 2000 Life Points. Both players Special Summon as many of their removed from play monsters as possible. | --次元融合
--Dimension Fusion
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(Cost.PayLP(2000))
e1:SetTarget(s.tg)
e1:SetOperation(s.op)
c:RegisterEffect(e1)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be Special Summoned except with its own effect or with "Phoenixian Seed". If this card attacks, it is destroyed after damage calculation. If this card you control is destroyed and sent to the Graveyard, inflict 800 damage to your opponent. During your End Phase, you can remove from play 1 Plant-Type mo... | --フェニキシアン・クラスター・アマリリス
--Phoenixian Cluster Amaryllis
local s,id=GetID()
function s.initial_effect(c)
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetValue(aux.FALSE)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only control 1 "Noble Arms - Caliburn". Equip only to a Warrior-Type monster. It gains 500 ATK. Once per turn: You can gain 500 LP. If this face-up card on the field is destroyed and sent to the Graveyard: You can target 1 Warrior-Type "Noble Knight" monster you control; equip this card to that target. You can ... | --聖剣カリバーン
--Noble Arms - Caliburn
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsRace,RACE_WARRIOR))
--Atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(500)
c:Re... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your GY: You can Special Summon this card, but banish it when it leaves the field. You must control a Tuner to activate and to resolve this effect. | --ボルト・ヘッジホッグ
--Quillbolt Hedgehog
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_GRAVE)
e1:SetCondition(s.condition)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay half your LP, then target 1 "Raidraptor" Xyz Monster in your Graveyard; Special Summon it, then Special Summon from your Extra Deck, 1 Xyz Monster that is 2 Ranks higher than that monster, by using it as the Xyz Material. (This Special Summon is treated as an Xyz Summon.) | --RUM-ソウル・シェイブ・フォース
--Rank-Up-Magic Soul Shave 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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetHintTiming(TIMING_DES... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If only your opponent controls a monster: Special Summon from your hand, 1 monster with an original Level of 10 or lower that cannot be Normal Summoned/Set, ignoring its Summoning conditions. It is unaffected by the effects of your cards, except for its own effects and this card's, also shuffle it into the Deck during ... | --青天の霹靂
--A Wild Monster Appears!
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Level 10 or lower monster that cannot be Normal Summoned/Set from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIV... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "Artmage" monster or 1 "Medius the Pure" from your Deck, also for the rest of this turn, the activation of your cards and effects that include an effect that Fusion Summons a Fusion Monster cannot be negated, also your opponent cannot activate cards or effects when a monster is Fusion Summoned this way... | --アルトメギア・メセナ-覚醒-
--Artmage Pact -Awakening-
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 8 Winged Beast monsters If this card is Xyz Summoned by using a "Raidraptor" monster as material: You can destroy all Spells and Traps your opponent controls. Your opponent cannot activate cards or effects in response to this effect's activation. Quick Effect: You can detach 1 material from this card, then targ... | --RR-サテライト・キャノン・ファルコン
--Raidraptor - Satellite Cannon Falcon
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WINGEDBEAST),8,2)
c:EnableReviveLimit()
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCate... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: You can discard 1 card, and if you do, Set 1 Continuous Trap from your Deck or GY, with an effect that Special Summons itself as a monster, except the discarded card. If a card(s) you control is destroyed by battle or card effect, and sent to the GY or banished face-up: You can target 1 of ... | --急雷の泥沼
--Sudden Thunder Swamp
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--When this card is activated: You can discard 1 card, and if you do, Set 1 Continuous Trap from your Deck or GY, with an effect that Special Summons itself as a monster, except the discarded card
local e1=Effect.CreateE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Insect-Type monsters your opponent controls cannot declare an attack. | --虫除けバリアー
--Insect Barrier
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--cannot attack
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_CANNOT_ATTACK_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as an "Exodd" and "Obliterate!!!" card.) If you control a Level 10 or higher "Exodia" monster: Destroy all cards your opponent controls. If this card is in your GY, except the turn it was sent there: You can banish it, then activate 1 of these effects; ● Add 1 "Forbidden One" monster from y... | --怒りの業火 エクゾード・フレイム
--Exxod Fires of Rage
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Destroy all cards your opponent controls
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can send 1 "Simorgh" card from your Deck to the GY, except "Simorgh, Bird of Calamity". If this card is in your GY and your opponent controls no cards in their Spell & Trap Zone: You can Special Summon this card in Defense Position, but banish it when it leaves the field, also you... | --招神鳥シムルグ
--Simorgh, Bird of Calamity
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--When normal summoned, send 1 "Simorgh" card from deck to GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only Special Summon "Spiritual Beast Tamer Lara(s)" once per turn. You can discard this card; immediately after this effect resolves, Normal Summon 1 "Ritual Beast" monster from your hand. If a "Ritual Beast" card(s) you control would be destroyed by battle or card effect, you can banish this card from your fie... | --精霊獣使い レラ
--Spiritual Beast Tamer Lara
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Can only be Special Summoned once per turn
c:SetSPSummonOnce(id)
--Normal Summon 1 "Ritual Beast" monster from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon this card as an Effect Monster (Rock-Type/EARTH/Level 7/ATK 0/DEF 2500). (This card is also still a Trap Card.) If Summoned this way, this card cannot be targeted by an opponent's card effects while you control another Trap Card that is a monster. If a card is Special Summoned from your Spell & Trap Zone... | --苦紋様の土像
--Statue of Anguish Pattern
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card as an Effect 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)
e1:SetTa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a "Cloudian" monster(s) you control is destroyed by its own effect and sent to your GY: Target 1 of those monsters; Special Summon it in Attack Position, and if you do, place 1 Fog Counter on it, also it cannot be changed to Defense Position by card effects. | --アグレッシブ・クラウディアン
--Raging Cloudian
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Cloudian" monster that was destroyed by its own effect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetPropert... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters Once per Chain, during either player's turn, if 2 or more monsters with the same name are on the field: You can detach 1 Xyz Material from this card; choose 1 monster among those with the same name, and destroy all other monsters with that name. While this card remains face-up on the field, your oppo... | --No.18 紋章祖プレイン・コート
--Number 18: Heraldry Patriarch
local s,id=GetID()
function s.initial_effect(c)
--Xyz Summon procedure: 2 Level 4 monsters
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--Destroy monsters on the field
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: | 1 non-Link Monster in an Extra Monster Zone Cannot be used as Link Material the turn it is Link Summoned. This card in the Extra Monster Zone cannot be destroyed by battle with a monster in the Main Monster Zone. At the start of the Damage Step, if this card battles an opponent's monster in the Extra Monster Zone: You ... | --グラビティ・コントローラー
--Gravity Controller
local s,id=GetID()
function s.initial_effect(c)
--link summon
c:EnableReviveLimit()
Link.AddProcedure(c,s.filter,1,1)
--cannot link material
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is added to your hand, except by drawing it: You can Special Summon this card as a Tuner, then you can increase its Level by 1. (Quick Effect): You can Tribute this card; Special Summon 1 "Tenpai Dragon" monster from your Deck, except "Tenpai Dragon Genroku", also you cannot Special Summon for the rest of ... | --幻禄の天盃龍
--Tenpai Dragon Genroku
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card as a Tuner
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_LVCHANGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 5 monsters You can target 1 monster your opponent controls; detach 1 material from a monster you control, and if you do, destroy that monster. This is a Quick Effect if you control another WATER Xyz Monster. If another WATER Xyz Monster(s) you control is destroyed by battle or card effect while you control this... | --ヴァリアント・シャーク・ランサー
--Valiant Shark Lancer
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
Xyz.AddProcedure(c,nil,5,2)
--Xyz Summon Procedure
c:EnableReviveLimit()
--Destroy a monster you control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGOR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon any number of "Madolche" monsters from your hand, but shuffle them into the Deck during the End Phase. | --マドルチェ・ハッピーフェスタ
--Madolchepalooza
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
s.liste... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 non-Link "Infinitrack" monster If this card is sent from the field to the GY: You can target 1 Xyz Monster you control; attach this card to that monster as material. You can only use this effect of "Infinitrack Goliath" once per turn. An Xyz Monster whose original Type is Machine and has this card as material gains t... | --無限起動 ゴライアス
--Infinitrack Goliath
local s,id=GetID()
function s.initial_effect(c)
--Link summon method
c:EnableReviveLimit()
Link.AddProcedure(c,s.matfilter,1,1)
--material
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(... |
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. When this card is Tribute Summoned: You can target up to 3 Spell/Trap Cards on the field; destroy those targets. If this card was Tribute Summoned by Tributing a WATER monster, add this additional effect. ● Your opponent cannot activate the targe... | --凍氷帝メビウス
--Mobius 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: | 1 Tuner + 1+ non-Tuner monsters Gains 100 ATK for each Warrior monster in the GYs. When this card is destroyed by battle and sent to the GY: You can target 1 Warrior monster in either GY; Special Summon that target. | --ギガンテック・ファイター
--Colossal Fighter
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--Atk up
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetProperty(EFFECT_FLAG_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If there is a "Black Luster Soldier - Envoy of the Beginning" or "Chaos Emperor Dragon - Envoy of the End" on the field: Target 2 of your banished cards; add both those targets to your hand. | --原初の種
--Primal Seed
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:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperati... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Zubaba" or "Gagaga" monster except "Zubababancho Gagagacoat", while this card is in your hand: You can Special Summon this card. You can target 1 "Gogogo" or "Dododo" monster in your GY; Special Summon it, also you cannot Special Summon monsters from the Extra Deck for the rest of this turn, except Xy... | --ズバババンチョー-GC
--Zubababancho Gagagacoat
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--special summon (self)
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:SetCou... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 DARK Dragon monsters Once per turn, during your opponent's End Phase: You can target 1 Attack Position monster your opponent controls that did not declare an attack this turn; destroy it, and if you do, inflict damage to your opponent equal to that monster's original ATK. If a "Rokket" monster(s) is Special Summoned ... | --デリンジャラス・ドラゴン
--Dillingerous Dragon
--Scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Link summon procedure
Link.AddProcedure(c,s.matfilter,2,2)
--Destroy of 1 opponent's monsters, inflict damage equal to its original ATK
local ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an Insect monster's effect is activated (Quick Effect): You can Special Summon this card from your hand, then if you activated this effect in response to your opponent's effect activation, negate that effect, also until the end of your next turn after this effect resolves, you cannot Special Summon from the Extra ... | --Japanese name
--Supply Soldier of the Indestructible Insects
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DISABLE)
e1:SetType(EFFEC... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.