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: | If this card is Summoned: You can Special Summon 1 "Iron Knight" from your Deck, also if "Golden Castle of Stromberg" is not in a Field Zone when this effect resolves, you cannot Special Summon monsters from the Extra Deck for the rest of this turn. You can only use this effect of "Iron Hans" once per turn. Gains 1000 ... | --鉄のハンス
--Iron Hans
--scripted by Naim
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_TRIGGER_O+EFFECT_TYPE_SINGLE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCountLimit(1,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters If this card is Special Summoned: You can change all face-up monsters your opponent controls to face-down Defense Position. Illusion and Spellcaster Synchro Monsters you control gain 500 ATK, also if they attack a Defense Position monster, inflict double piercing battle damage to your op... | --白き森の魔狼シルウィア
--Silvera, Wolf Tamer of the White Forest
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--1 Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Flip all opponent monsters face-down
local e1=Effect.CreateEffect(c)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a Fiend monster you control battles, during the Damage Step: Pay LP in multiples of 100, then target the opponent's battling monster; that opponent's monster loses that much ATK and DEF, until the end of this turn. | --冥王の咆哮
--Bark of Dark Ruler
local s,id=GetID()
function s.initial_effect(c)
--atkdown
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_ST... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only control 1 "Double-Edged Sword". The equipped monster gains 2000 ATK, also both players take any battle damage from attacks involving the equipped monster. If you take 2000 or more battle damage: Send this card to the GY. | --脆刃の剣
--Double-Edged Sword
local s,id=GetID()
function s.initial_effect(c)
--equip
aux.AddEquipProcedure(c)
c:SetUniqueOnField(1,0,id)
--Atk
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(2000)
c:RegisterEffect(e1)
--damage
local e2=Effect.CreateEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can target 1 monster in your opponent's GY; discard 1 Fiend monster, and if you do, banish that target. | --暗黒の瘴気
--Dark Smog
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)
c:RegisterEffect(e1)
--remove
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,1))
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish 2 "Neo-Spacian" monsters with different names from your GY; Special Summon 2 "Neo-Spacian" monsters with different names from your hand, Deck, and/or GY, also, for the rest of this turn you cannot Special Summon monsters from the Extra Deck, except Fusion Monsters. If a face-up Fusion Monster that lists "Element... | --コンタクト・ゲート
--Contact Gate
--Scripted by Eerie Code
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:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetCost(s.cost)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 Fusion Monster from your Extra Deck, using monsters from your hand or either field as Fusion Material, including a "Buster Blader" that it lists as material. If this card is in your GY: You can send 1 card from your hand to the GY; add this card to your hand. You can only use each effect of "Destruction... | --破壊剣士融合
--Destruction Swordsman Fusion
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Fusion.CreateSummonEff(c,aux.FilterBoolFunction(Card.ListsCodeAsMaterial,CARD_BUSTER_BLADER),nil,s.fextra)
e1:SetCountLimit(1,id)
c:RegisterEffect(e1)
--Add this card to your hand
local e2=Effect.CreateEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card you control is destroyed by your opponent's card and sent to your GY: Send the top card of your Deck to the GY, then, if it is a WATER monster, draw 1 card. | --イマイルカ
--Imairuka
local s,id=GetID()
function s.initial_effect(c)
--Send the top card of your Deck to the GY, then, if it is a WATER monster, draw 1 card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DECKDES+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal Summoned: Return all face-up Spells and Traps from the field to the hand. | --霞の谷の執行者
--Mist Valley Executor
local s,id=GetID()
function s.initial_effect(c)
--to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.thtg)
e1:SetOperat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Level 1 monster When an opponent's monster declares an attack: You can Tribute this card; change that opponent's monster's ATK to 0, until the end of this turn. If this card is in your GY (Quick Effect): You can Tribute 1 Level 1 monster; Special Summon this card. You can only use this effect of "Linkuriboh" once per... | --リンクリボー
--Linkuriboh
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon
Link.AddProcedure(c,aux.FilterBoolFunction(Card.IsLevel,1),1)
--Change ATK to 0
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can Fusion Summon 1 Fusion Monster from your Extra Deck, using monsters you control as Fusion Materials, including this card. If this card in the Pendulum Zone is destroyed: You can target 1 Dragon-Type Fusion Monster in your Graveyard; Special Summon it, but destroy it during the End Phase. | --EMトランプ・ガール
--Performapal Trump Girl
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--fusion summon
local params = {nil,Fusion.OnFieldMat,nil,nil,Fusion.ForcedHandler}
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_FUSION_SUMMON)
e2:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates a card or effect that targets 1 Spellcaster monster you control (and no other cards), while this card is in your hand or GY (Quick Effect): You can Special Summon this card. You can only use this effect of "Palladium Oracle Mana" once per turn. Level 7 or higher Spellcaster monsters you con... | --守護神官マナ
--Palladium Oracle Mana
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:SetRange(LOCATION_HAND|LOCATION_GRAVE)
e1:SetCode(EVENT_CHAINING)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is flipped face-up: Destroy all Special Summoned monsters on the field. Neither player can Special Summon monsters. | --フォッシル・ダイナ パキケファロ
--Fossil Dyna Pachycephalo
local s,id=GetID()
function s.initial_effect(c)
--disable spsummon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetTargetRange(1,1)
c:R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Elemental HERO Neos" and all Fusion Monsters that specifically list "Elemental HERO Neos" as a Fusion Material gain 500 ATK. Fusion Monsters that specifically list "Elemental HERO Neos" as a Fusion Material do not have to activate their effects during the End Phase that shuffle them into the Extra Deck. | --ネオスペース
--Neo Space
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)
--Increase ATK
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ monsters, including a Rock monster If this card is Special Summoned: You can target 1 Rock monster in your GY; this card gains ATK equal to that monster's ATK. During your opponent's Main Phase (Quick Effect): You can target 1 other monster on the field with ATK less than or equal to this card; this card loses ATK e... | --機動石器ドグラード
--Dogurad, the Stonetrooper
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2+ monsters, including a Rock monster
Link.AddProcedure(c,nil,2,3,s.matcheck)
--Gains the ATK of 1 Rock monster in your GY
local e1=Effect.CreateEffect(c)
e1:Se... |
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 8 "Magna Warrior" monster from your Deck to your hand. You can only use this effect of "Alpha The Electromagnet Warrior" once per turn. During your opponent's turn: You can Tribute this card; Special Summon 1 Level 4 "Magnet Warrior" monster from your Deck... | --電磁石の戦士α
--Alpha The Electromagnet Warrior
local s,id=GetID()
function s.initial_effect(c)
--to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have 2 or more "X-Saber" monsters in your Graveyard and control no monsters, you can Special Summon this card from your hand. | --XX-セイバー ガルドストライク
--XX-Saber Gardestrike
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
c:RegisterEffect(e1... |
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 Fairy-Type monster. After this card is Special Summoned to your side of the field, you can Normal Summon 1 "Melodious" monster during your Main Phase this turn, in addition to your Normal Summon/Set. (You can only gain this effect once per turn.) | --幻奏の音女セレナ
--Serenade the Melodious Diva
local s,id=GetID()
function s.initial_effect(c)
--double tribute
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DOUBLE_TRIBUTE)
e1:SetValue(s.condition)
c:RegisterEffect(e1)
--extra summon
local e2=... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot declare an attack unless you Tribute 1 monster. | --漆黒の豹戦士パンサーウォリアー
--Panther Warrior
local s,id=GetID()
function s.initial_effect(c)
--attack cost
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_ATTACK_COST)
e1:SetCost(s.atcost)
e1:SetOperation(s.atop)
c:RegisterEffect(e1)
end
function s.atcost(e,c,tp)
return Duel.CheckRelease... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Warrior monster: You can Special Summon this card from your hand. You can send this card from the field to the GY; Special Summon 1 Level 4 or lower Warrior monster from your hand, and if you do, your opponent cannot target it with card effects this turn. You can only use each effect of "Fire Flint Lad... | --キリビ・レディ
--Fire Flint Lady
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special summon itself from hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by card effects while you control a Fusion Monster. You can only use each of the following effects of "Dragonmaid Tinkhec" once per turn. ● (Quick Effect): You can discard this card, then target 1 "Dragonmaid" monster you control; it gains 2000 ATK until the end of this turn. ● At the end of the Bat... | --ドラゴンメイド・フランメ
--Dragonmaid Tinkhec
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--ATK increase
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetRange(LOCATION_HAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Synchro Monster in your Graveyard; Special Summon that target in Defense Position, but its effects are negated, its Level is reduced by 1, its DEF becomes 0, also its battle position cannot be changed. | --ロスト・スター・ディセント
--Descending Lost Star
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Synchro Monster from your GY in Defense Position, but its effects are negated, its Level is reduced by 1, its DEF becomes 0, also its battle position cannot be changed
local e1=Effect.CreateEffect(c)
e1:SetDescr... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase (Quick Effect): You can target up to 3 Spells/Traps in your GY; banish them, and if you do, shuffle them into the Deck during the End Phase of the next turn. During your Standby Phase: You can target 1 of your banished Spells/Traps; Set it. You can only use each effect of "Secret Stash Slipshod Sq... | --きのみ隠しのうっかりす
--Secret Stash Slipshod Squirrel
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Banish up to 3 Spells/Traps from your GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent from the hand to your Graveyard: You can Special Summon 1 "Gusto" monster from your Deck. You can only use the effect of "Gusto Griffin" once per turn. | --ガスタ・グリフ
--Gusto Griffin
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_TO_GRAVE)
e1:SetProperty(EFFECT_FLAG_DELAY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase, if you have a Reptile monster in your GY (Quick Effect): You can send this card from your hand to the GY, then target 1 face-up monster your opponent controls; change its ATK to 0. If your opponent controls a monster with 0 ATK: You can Special Summon this card from your GY. You can only use 1 "R... | --レプティレス・ニャミニ
--Reptilianne Nyami
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Change ATK to 0
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Level 4 or lower Dragon or Spellcaster monster You cannot Special Summon, except Dragon monsters. You can only use each of the following effects of "Spirit with Eyes of Blue" once per turn. If this card is Link Summoned: You can take 1 "Mausoleum of White" from your Deck and either add it to your hand or send it to t... | --青き眼の精霊
--Spirit with Eyes of Blue
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 1 Level 4 or lower Dragon or Spellcaster monster
Link.AddProcedure(c,s.matfilter,1,1)
--You cannot Special Summon, except Dragon monsters
local e1=Effect.CreateEffec... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 1 face-up Level 8 Dragon monster you control to the GY; Special Summon 1 Rank 8 Dragon Xyz Monster from your Extra Deck (this is treated as an Xyz Summon). You can only activate 1 "Revelation of Hope" per turn. | --希望の天啓
--Revelation of Hope
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Rank 8 Dragon Xyz Monster from your Extra Deck.
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, when your opponent's monster declares an attack: You can send the top card of your Deck to the GY, and if you do, negate that attack. | --ナチュル・バタフライ
--Naturia Butterfly
local s,id=GetID()
function s.initial_effect(c)
--negate attack
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCondi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters This card can make a second attack during each Battle Phase. At the start of the Damage Step, if this card battles: It gains 200 ATK. If this card is sent to the GY: You can target 1 of your banished "Speedroid" cards; add it to your hand. You can only Special Summon "Hi-Speedroid Chanba... | --HSRチャンバライダー
--Hi-Speedroid Chanbara
local s,id=GetID()
function s.initial_effect(c)
c:SetSPSummonOnce(id)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--extra attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_EXTRA_ATTA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no cards (Quick Effect): You can discard this card; apply these effects this turn. ● Each time your opponent Special Summons a monster(s) from the Deck and/or Extra Deck, immediately draw 1 card. ● Once, during this End Phase, if the number of cards in your hand is more than the number of cards your oppo... | --マルチャミー・フワロス
--Mulcharmy Fuwalos
local s,id=GetID()
function s.initial_effect(c)
--Apply effects for the rest of the turn
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetRange(L... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard 1 Rock monster; Special Summon from your Deck, 1 Rock monster that has the same original Attribute and Level as that monster, in face-up Attack Position or face-down Defense Position. You can only use this effect of "Doki Doki" once per turn. | --怒気土器
--Doki Doki
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_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,id)
e1:SetCost(s.spcost)
e1:SetTarget... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The equipped monster gains 200 ATK for each monster in your GY. During the End Phase, if this card is in the GY because it was sent there from the field this turn: You can Set this card, but banish it when it leaves the field. You can only use this effect of "Disposable Learner Device" once per turn. | --使い捨て学習装置
--Disposable Learner Device
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--Equipped monster gains 200 ATK per monster in GY
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(s.val)
c:RegisterEffe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Normal Summon this card without Tributing, but its original ATK is halved and its Level becomes 3. Once per turn: You can declare 1 Monster Type; if this card is used as a Synchro Material Monster this turn, treat this card and the other Synchro Material Monsters as that Monster Type for that Synchro Summon. If... | --ジェノミックス・ファイター
--Genomix Fighter
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:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Ritual Summon 1 "Dogmatika" Ritual Monster from your hand or Deck by Tributing "Dogmatika" monsters and/or Ritual, Fusion, or Synchro Monsters from your field whose total Levels exactly equal the Level of the Ritual Monster you Ritual Summon. If this card is in your GY: You can banish this card, then target 2 "Dogmatik... | --ドラグマトゥルギー
--Dogmatikaturgy
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Ritual.CreateProc({handler=c,lvtype=RITPROC_EQUAL,filter=aux.FilterBoolFunction(Card.IsSetCard,SET_DOGMATIKA),location=LOCATION_HAND|LOCATION_DECK,matfilter=s.mfilter})
e1:SetCountLimit(1,id)
e1:SetHi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 DARK Pendulum Monsters Once per turn, before damage calculation, if this card battles an opponent's monster: You can detach 1 material from this card; until the end of this turn, change the ATK of that face-up opponent's monster to 0, and if you do, this card gains ATK equal to the original ATK of that oppone... | --覇王眷竜ダーク・リベリオン
--Supreme King Dragon Dark Rebellion
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Xyz.AddProcedure(c,s.matfilter,4,2)
--change atk
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Aqua monster + 1 Level 10 WATER monster Must first be either Fusion Summoned, or Special Summoned from your Extra Deck by Tributing 1 Level 10 Aqua monster with 0 ATK. This card can be treated as 1 or 3 Tributes for the Tribute Summon of a monster. Cannot be destroyed by battle. Your opponent's monsters cannot target... | --神・スライム
--Egyptian God Slime
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--fusion summon
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsRace,RACE_AQUA),s.matfilter)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 2 face-up Attack Position monsters on the field. When any of the selected monsters are removed from the field, destroy this card. When this card is destroyed, destroy the selected monster(s). | --グレイモヤ不発弾
--Widespread Dud
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.target)
c:RegisterEffect(e1)
local e2=Effect.CreateEffect(c)
e2:SetType(EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 "World Legacy" monster from your hand or Deck, but destroy it during the End Phase of the next turn. You can only activate 1 "World Reassembly" per turn. | --創星改帰
--World Reassembly
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "World Legacy" monster from your hand or Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is not treated as a "Volcanic" card.) During your End Phase, if you control "Jurassic World": Destroy all cards on the field. | --大噴火
--Volcanic Eruption
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_END_PHASE,0)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Apply 1 of these effects. Unless you have a "Vaalmonica" card in your Pendulum Zone, your opponent chooses the effect. ● Gain 500 LP, then you can excavate cards from the top of your Deck until you excavate a "Vaalmonica" card, then add that card to your hand, also shuffle the rest into the Deck. ● Take 500 damage, the... | --ヴァルモニカ・ヴェルサーレ
--Vaalmonica Versare
--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_RECOVER+CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_DAMAGE+CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase, if you control no monsters, or control an "Adventurer Token" (Quick Effect): You can Special Summon this card from your hand. If you control an "Adventurer Token" (Quick Effect): You can target up to 2 cards your opponent controls; give control of this card to your opponent, and if you do, return... | --外法の騎士
--Illegal Knight
--Scripted by Hatter
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_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetRange(LOCATION_HAND)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The equipped monster gains 0 ATK. You can target 1 other "Bamboo Sword" card you control; return it to the hand, and if you do, the equipped monster can attack your opponent directly this turn. You can only use this effect of "Cursed Bamboo Sword" once per turn. If this card is sent to the Graveyard: You can add 1 "Bam... | --妖刀竹光
--Cursed Bamboo Sword
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c)
--Gains 0 ATK
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_EQUIP)
e0:SetCode(EFFECT_UPDATE_ATTACK)
e0:SetValue(0)
c:RegisterEffect(e0)
--Return to the hand and allow direct attack
local e1=Effect.Cre... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reveal 1 "Azamina" Fusion Monster in your Extra Deck, and for every 4 Levels it has (round down), shuffle 1 "Sinful Spoils" card from your GY and/or banishment into the Deck, then Special Summon the revealed monster. (This is treated as a Fusion Summon.) You can banish this card from your GY, then target 1 "Sinful Spoi... | --アザミナ・ハマルティア
--Azamina Determination
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Send "Sinful Spoils" cards to the GY and Special Summon 1 "Azamina" Fusion Monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TODECK+CATEGORY_SPECIAL_SUMMO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters "Six Samurai" monsters you control gain 600 ATK/DEF during the Battle Phase only. You can only use each of the following effects of "Legendary Lord Six Samurai - Kizan" once per turn. During your opponent's Main Phase (Quick Effect): You can banish 1 "Six Strike" card from your GY, then ... | --真魔六武衆-キザン
--Legendary Lord Six Samurai - Kizan
--Scripted by Cybercatman
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--"Six Samurai" monsters you control gain 600 ATK/DE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters Gains 100 ATK for each of your opponent's banished cards. During the Standby Phase of the next turn after this card was banished: Special Summon this banished card. You can only use this effect of "Angel of Zera" once per turn. | --ゼラの天使
--Angel of Zera
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase 2, if no monsters battled each other this turn: You can discard 1 card; Set 1 "Battlefield Tragedy" directly from your Deck to your Spell & Trap Zone. You can only use this effect of "Battlefield Tragedy" once per turn. Once per turn, during the End Phase, if any monsters battled each other this ... | --戦場の惨劇
--Battlefield Tragedy
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Set 1 "Battlefield Tragedy" from your Deck
local e2=Effect.CreateEffect(c)
e2:SetDescri... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 1 monsters Cannot be destroyed by battle. At the end of the Damage Step, if this card battled an opponent's monster: You can detach 1 material from this card; double the ATK of all "Numeron" monsters you currently control, until the end of this turn. | --No.2 ゲート・オブ・ヌメロン-ドゥヴェー
--Number 2: Numeron Gate Dve
local s,id=GetID()
function s.initial_effect(c)
--Xyz Summon
Xyz.AddProcedure(c,nil,1,3)
c:EnableReviveLimit()
--Cannot be destroyed by battle
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by targeting 1 Warrior monster you control; it gains 1000 ATK. Monsters destroyed by battle with it are returned to the hand instead of going to the GY. When that monster leaves the field, destroy this card. | --バーバリアン・レイジ
--Battleguard Rage
local s,id=GetID()
function s.initial_effect(c)
aux.AddPersistentProcedure(c,0,aux.FaceupFilter(Card.IsRace,RACE_WARRIOR),CATEGORY_ATKCHANGE,EFFECT_FLAG_DAMAGE_STEP,TIMING_DAMAGE_STEP,TIMING_DAMAGE_STEP,aux.StatChangeDamageStepCondition)
--eff
local e1=Effect.CreateEffect(c)
e1:SetTy... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by targeting any number of Level 4 Machine-Type monsters you control; Special Summon this card as an Effect Monster (Machine-Type/EARTH/Level 4/ATK 0/DEF 0), then equip those face-up monsters to this card. (This card is also still a Trap Card.) If Summoned this way, this card gains ATK equal to the c... | --機動要塞 メタル・ホールド
--Metalhold the Moving Blockade
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.ta... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute this card while "Neo Space" is on the field to Special Summon 1 "Neo-Spacian Grand Mole" from your hand or Deck. | --C・モーグ
--Chrysalis Mole
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_MZONE)
e1:SetCondition(s.spcon)
e1:SetCost(Cost.SelfTribute)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Summoned: Change it to Defense Position. When a face-up monster you control is targeted for an attack: You can change the target to this card. When this card is targeted for an attack: You can choose a number from 1 to 3, then send that many cards from the top of your Deck to the Graveyard; this card ... | --カードブロッカー
--Card Blocker
local s,id=GetID()
function s.initial_effect(c)
--to defense
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_TRIGGER_F+EFFECT_TYPE_SINGLE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.potg)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If only your opponent controls a monster, you can Special Summon this card (from your hand). When this card on the field is destroyed and sent to the GY: You can add 1 "Fire Ant Ascator" or "Supay" from your Deck to your hand. | --太陽の神官
--Oracle of the Sun
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
c:RegisterEffect(e1)
--search
l... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 3 non-Tuner monsters Your opponent cannot target "Flower Cardian" monsters you control with card effects, also those monsters cannot be destroyed by card effects. During your opponent's Draw Phase, if they draw a card(s) for their normal draw: Inflict 1500 damage to your opponent. Once per turn, during your o... | --花札衛-雨四光-
--Flower Cardian Lightshower
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),3,3)
--indes
local e2=Effect.CreateEffect(c)
e2:SetCode(EFFECT_INDESTRUCTABLE_EFFECT)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOCATION_MZONE)
e2:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned, you can select and take control of 1 face-up monster with 0 ATK your opponent controls. | --レプティレス・バイパー
--Reptilianne Viper
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_CONTROL)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Insect, Plant, and/or Reptile monsters If a monster(s) is Special Summoned from your opponent's Deck and/or Extra Deck (except during the Damage Step): You can destroy 2 monsters on the field. If this card is in your GY: You can target 1 Insect, Plant, or Reptile monster you control; place it on the bottom of the De... | --蕾禍ノ大王鬼牙
--Ragnaraika Stag Sovereign
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_INSECT|RACE_PLANT|RACE_REPTILE),2)
--Destroy 2 monsters on the field
local e1=Effect.CreateEffect(c)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Negate the activation of a Counter Trap Card, and destroy it. | --カウンター・カウンター
--Counter Counter
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can only be activated at the start of Main Phase 1, and only if you control no face-up Synchro Monsters. Neither player can Special Summon a Synchro Monster until your opponent's next End Phase. | --完全防音壁
--Soundproofed
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.condition)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
function s.cfilter(c)
return c:IsFaceup() and c:IsTyp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 "Wind-Up" monster in your Graveyard; change this face-up Attack Position card you control to face-up Defense Position, and add that target to your hand. This effect can only be used once while this card is face-up on the field. | --ゼンマイバット
--Wind-Up Bat
local s,id=GetID()
function s.initial_effect(c)
--salvage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_NO_TURN_RESET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If there are no monsters on the field, you can Special Summon this card (from your hand) as a Level 3 monster. If your opponent controls a monster and you control no cards, you can Special Summon this card (from your hand) as a Level 4 monster. If this face-up card would leave the field, banish it instead. | --こけコッコ
--Cockadoodledoo
local s,id=GetID()
function s.initial_effect(c)
--If there are no monsters on the field, you can Special Summon this card (from your hand) as a Level 3 monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_UNC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no cards, except "Numeron Wall(s)" (Quick Effect): You can send this card from your hand or field to the GY; activate 1 "Numeron Network" directly from your hand or Deck. You can only use this effect of "Numeron Wall" once per turn. When you take battle damage: You can Special Summon this card from your ... | --ヌメロン・ウォール
--Numeron Wall
--scripted by King Yamato and Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate "Numeron Network"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetRange(LOCATION_HAND|LOCATION_MZONE)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent activates "Raigeki": Negate its effect, and if you do, destroy all monsters your opponent controls. | --避雷針
--Anti Raigeki
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control no other Insect-Type monsters, this card's ATK and DEF become 1000. | --アーマード・フライ
--Arsenal Bug
local s,id=GetID()
function s.initial_effect(c)
--atk def
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_SET_ATTACK)
e1:SetValue(1000)
e1:SetCondition(s.con)
c:RegisterEffect(e1)
lo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can reveal 1 other "Gunkan" card in your hand; Special Summon this card from your hand, then apply the following effect based on the revealed card. ● "Gunkan Suship Shari": You can Special Summon the revealed monster. ● Other: Place the revealed card on the bottom of the Deck. You can target 1 "Gunkan" monster you ... | --うにの軍貫
--Gunkan Suship Uni
--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+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRang... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 card in your Pendulum Zone; Special Summon it. You can target 1 Pendulum Monster in your Monster Zone; place that Pendulum Monster in your Pendulum Zone. You can only use 1 "Pendulum Switch" effect per turn, and only once that turn. | --ペンデュラム・スイッチ
--Pendulum Switch
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e0)
--Special Summon 1 card from your Pendulum Zone
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stri... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] During the Standby Phase: You can target up to 2 cards in the Pendulum Zones; their Pendulum Scales become 0 until the end of this turn. You can only use this effect of "D/D Scale Surveyor" once per turn. ---------------------------------------- [ Monster Effect ] If you control a "D/D" Pendulum Mon... | --DDスケール・サーベイヤー
--D/D Scale Surveyor
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Pendulum Summon procedure
Pendulum.AddProcedure(c)
--Change up to 2 Pendulum Scales to 0
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot attack the turn it is Summoned. If "Toon World" on the field is destroyed, destroy this card. While you control "Toon World" and your opponent controls no Toon monsters, this card can attack your opponent directly. If this card inflicts battle damage to your opponent: You can discard 1 random card from your oppo... | --トゥーン・ヂェミナイ・エルフ
--Toon Gemini Elf
local s,id=GetID()
function s.initial_effect(c)
--cannot attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetOperation(s.atklimit)
c:RegisterEffect(e1)
local e2=e1:Clone()
e2:SetCode(EVENT_SPSUMMON... |
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 monster. You can only use each of the following effects of "World Legacy - "World Ark"" once per turn. ● If a Link Monster(s) you control is destroyed by an opponent's card effect and sent to your GY (except during the Damage Step): You can send this ca... | --星遺物-『星櫃』
--World Legacy - "World Ark"
--scripted by Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Special summon link monster, optional trigger effect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DAMAGE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal or Special Summoned: You can target 1 "Constellar" monster in your Graveyard; add that target to your hand. | --セイクリッド・アンタレス
--Constellar Antares
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Constellar" monster from your GY to your hand
local e1a=Effect.CreateEffect(c)
e1a:SetDescription(aux.Stringid(id,0))
e1a:SetCategory(CATEGORY_TOHAND)
e1a:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1a:SetProperty(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters This card cannot attack. Once per turn: You can detach 1 Xyz Material from this card; roll a six-sided die and apply the result. 1: Halve your Life Points. 2: Draw 1 card. 3: Your opponent discards 1 card. 4: Negate the effects of 1 face-up card on the field until the end of this turn. 5: Destroy 1 c... | --No.85 クレイジー・ボックス
--Number 85: Crazy Box
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--prevent itself from attacking
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_ATTACK)
c:RegisterEffect(e1)
--roll di... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can return 1 face-up WIND monster you control to the bottom of the Main Deck to target up to 2 cards in your opponent's Graveyard; banish those targets. | --雷遁封印式
--Sealing Ceremony of Raiton
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)
c:RegisterEffect(e1)
--remove
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGOR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Tribute all face-up "Division(s)" you control: Special Summon up to twice that many "Machine Tokens" (Machine/FIRE/Level 1/ATK 200/DEF 200), and each time 1 is destroyed, your opponent takes 500 damage. If this card is banished: You can target any number of Tokens you control; destroy them. You can only use eac... | --ディーヴジャン
--Division
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon "Machine Tokens"
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:Se... |
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 "@Ignister" monster from your Deck to the GY. If this card is sent to the GY as material for the Synchro Summon of a Cyberse monster: You can target 1 monster in your GY that was used for that Synchro Summon, except "Bururu @Ignister"; Special Summon that monst... | --ブルル@イグニスター
--Bururu @Ignister
--Scripted by AlphaKretin, anime version by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Send to grave
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetPro... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All Level/Rank/Link 2 monsters currently on the field gain 1400 ATK/DEF until the end of this turn. During your Main Phase: You can banish this card from your GY, then target 1 Level/Rank/Link 2 monster you control; it gains 1400 ATK until the end of your opponent's turn. You can only use 1 "Spright Gamma Burst" effect... | --スプライト・ガンマ・バースト
--Spright Gamma Burst
--Scripted by Zefile
local s,id=GetID()
function s.initial_effect(c)
--Increase ATK/DEF
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_DAM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Spell/Trap Card, or monster effect, is activated: Reveal 1 Counter Trap in your hand, then discard 1 card and pay 1000 LP; negate the activation, and if you do, shuffle that card into the Deck. Then, you can Special Summon 1 "Parshath" monster from your Deck or Extra Deck. | --輪廻のパーシアス
--Rebirth of Parshath
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_TODECK+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(s.condition)
e1:SetCost(s.cost)
e1:SetTa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All linked monsters on the field gain 500 ATK/DEF. Link Summons of Link Monsters cannot be negated. Once per Chain, if you take 2000 or more battle or effect damage: You can shuffle the face-down cards in your Extra Deck, excavate the top card, and if it is a Cyberse Link Monster, Special Summon it. Otherwise, return i... | --サイバネット・ストーム
--Cynet Storm
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: | All Fish, Sea Serpent, and Aqua-Type monsters you control gain 400 ATK. | --ニードル・ギルマン
--Spined Gillman
local s,id=GetID()
function s.initial_effect(c)
--atk up
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarget(s.atktg)
e1:SetValue(400)
c:RegisterEffect(e1)
end
fu... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card's activation and effect cannot be negated. If you control a monster whose original name is "Slifer the Sky Dragon": Destroy as many face-up monsters your opponent controls as possible, then, if you activated this card during your Main Phase, you can apply the following effect. ● Draw cards equal to the number... | --超伝導波サンダーフォース
--Thunderforce Attack
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_CANNOT_NEGATE+EFFECT_FLAG_CANNOT_INACTIVATE)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Noble Arms" Equip Spell, you can Special Summon this card (from your hand). You can only Special Summon "Noble Knight Custennin" once per turn this way. A "Noble Knight" monster that was Synchro, Xyz or Link Summoned using this card on the field as material gains this effect. ● If this card is Special... | --聖騎士コルネウス
--Noble Knight Custennin
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id,EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can place this card you control and 1 "Centur-Ion" monster from your hand or Deck, except "Centur-Ion Trudea", in your Spell & Trap Zones as face-up Continuous Traps, also you cannot Special Summon "Centur-Ion Trudea" for the rest of this turn. During the Main Phase, if this card is a Contin... | --従騎士トゥルーデア
--Centur-Ion Trudea
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Place this card and 1 "Centurion" monster in the Spell/Trap Zone as Continuous Traps
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Beast monster in your GY; Special Summon that target, and if you do, all face-up monsters your opponent currently controls (if any) lose 200 ATK for each Beast, Plant, and Winged Beast monster currently in your GY (if any), until the end of this turn. You can only activate 1 "Ayers Rock Sunrise" per turn. * Th... | --エアーズロック・サンライズ
--Ayers Rock Sunrise
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:SetCountLimit(1,id,EFFECT_COUNT_CODE_OAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a face-up monster you control is changed to face-down Defense Position: You can target 1 card on the field; destroy it. If a Flip monster(s) you control is flipped face-up, even during the Damage Step: You can target 1 of them; inflict damage to your opponent equal to its Level x 200. You can only use each effect of... | --サンセット・ビート
--Sunset Beat
--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 on the field
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 FIRE monster in your GY; send 1 card from your hand to the GY, and if you do, Special Summon the targeted monster. You can banish this card from your GY, then target 3 of your FIRE monsters that are banished and/or in your GY; shuffle them into the Deck, then draw 1 card. You can only use this effect of "Fire ... | --ファイヤー・バック
--Fire Recovery
--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_TOGRAVE+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent from the hand or field to the GY: You can activate this effect; each player draws 1 card, then each player discards 1 card, then, if you discarded an "Ojama" card, you can choose 1 opponent's unused Monster Zone, and it cannot be used until the end of your opponent's turn. You can only use this eff... | --ジャマ・ピンク
--Ojama Pink
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Draw and discard
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW+CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetProperty(EFFECT_FLAG_DELAY+EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Normal Monster in your GY; Special Summon it in face-up Defense Position, but it cannot attack. | --黙する死者
--Silent Doom
local s,id=GetID()
function s.initial_effect(c)
--Special summon 1 normal monster from GY, it cannot attack
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:SetTar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While this card is face-up on your side of the field, you can return 1 Normal Monster Card in your hand to the bottom of your Deck during your End Phase to draw 1 card from your Deck. You can only use this effect once per turn. | --鬼ゴブリン
--Coach Goblin
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:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_PHASE+PHASE_END)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only control 1 "Dakki, the Graceful Mayakashi". When a "Mayakashi" monster(s) is Special Summoned to your field from the Extra Deck, while this card is in the GY (except during the Damage Step): You can Special Summon this card. You cannot Special Summon monsters from the Extra Deck the turn you activate this e... | --麗の魔妖(まやかし)-妲姫
--Dakki, the Graceful Mayakashi
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card, then activate 1 of these effects; ● Add 1 "Magistus" monster from your Deck to your hand, except "Spoon, the Seal of Magistus". ● Halve the ATK of 1 face-up monster your opponent controls until the end of this turn. You can banish this card from your GY, then target 1 face-up monster you cont... | --封印の魔道士スプーン
--Spoon, the Seal of Magistus
--scripted by pyrQ
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_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,id)
e1:SetCost(Cost.Self... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 2 face-up "Wind-Up" monsters you control with different Levels; your opponent chooses 1 of them, and the Level of the other monster becomes the same as the chosen monster's, until the End Phase. Then, if your opponent chose the monster with a lower Level, you can draw 1 card. | --揺れる発条秤
--Weights & Zenmaisures
local s,id=GetID()
function s.initial_effect(c)
--Change the level of 1 "Wind-up" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_LVCHANGE+CATEGORY_DRAW)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Bujin" monster: You can banish this card from your Graveyard, then target 1 face-up Attack Position monster your opponent controls; change it to face-up Defense Position, and if you do, its DEF becomes 0 until the end of this turn. | --武神器-イクタ
--Bujingi Boar
local s,id=GetID()
function s.initial_effect(c)
--position
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_POSITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_GRAVE)
e1:SetCondition(s.posco... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster you control; return that face-up monster to the hand, and if you do, for the rest of this turn, neither player can activate the effects of cards with the returned card's name. | --夜の逃飛行
--Night Flight
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Return face-up monster to hand
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.thtg)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this face-up Attack Position card is targeted for an attack: You can change this card to face-up Defense Position, and if you do, negate that attack. | --EMアメンボート
--Performapal Skeeter Skimmer
local s,id=GetID()
function s.initial_effect(c)
--negate attack
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BE_BATTLE_TARGET)
e1:SetCondition(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters Once per turn: You can discard 1 card, then target 1 card your opponent controls; destroy it. If this Synchro Summoned card is sent from the field to the GY: You can draw 1 card. You can only use this effect of "Coral Dragon" once per turn. | --瑚之龍
--Coral Dragon
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_IGNITION)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 "Myutant" Fusion Monster from your Extra Deck, by banishing Fusion Materials listed on it from your hand or field. If your opponent has activated a card or effect this turn, you can use up to 1 monster each from your Deck and GY as Fusion Material. You can only activate 1 "Myutant Fusion" per turn. | --フュージョン・ミュートリアス
--Myutant Fusion
--Scripted by edo9300
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Fusion.CreateSummonEff({handler=c,fusfilter=aux.FilterBoolFunction(Card.IsSetCard,SET_MYUTANT),
matfilter=Card.IsAbleToRemove,extrafil=s.extrafil,
extraop=Fusion.BanishMaterial... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If the ATK of a monster summoned by your opponent (excluding Special Summon) is 500 points or less, the monster is destroyed. | --ねずみ取り
--Eatgaboon
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Register... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 4 "tellarknight" monsters During the turn you Xyz Summon this card, you cannot Special Summon monsters, except "tellarknight" monsters. If this card is Xyz Summoned: Return all other cards on the field to the hand. Once per turn: You can detach 1 Xyz Material from this card; send 1 random card from your opponen... | --星輝士 トライヴェール
--Stellarknight Triverr
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,s.xyzfilter,4,3)
c:EnableReviveLimit()
--summon limit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned by a card effect, except the effect of "Gladiator Beast Dimacari". This Special Summoned card is unaffected by Spell effects. At the end of the Battle Phase, if this card battled: You can shuffle this card into the Deck; Special Summon 1 "Gladiator Beast" monster from your Deck, except "Gladi... | --剣闘獣アレクサンデル
--Gladiator Beast Alexander
local s,id=GetID()
function s.initial_effect(c)
--immune spell
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_IMMUNE_EFFECT)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(s.imcon)
e1:SetValue(s.imfi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn (Quick Effect): You can discard 1 Wyrm monster; this card gains 1000 DEF until the end of this turn. Once per battle, during damage calculation, if this Attack Position card battles an Attack Position monster (Quick Effect): You can apply each card's DEF for damage calculation. | --龍狸燈
--Dracoon Lamp
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Increase DEF
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DEFCHANGE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 card from your hand. Destroy all Special Summoned monsters on the field. | --スペシャルハリケーン
--Special Hurricane
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by Tributing 1 Warrior or Fairy-Type monster from your hand or field. If this card is Tributed for a Ritual Summon: You can target 1 Ritual Spell Card in your Graveyard; add it to your hand. | --サイバー・チュチュボン
--Cyber Tutubon
local s,id=GetID()
function s.initial_effect(c)
--spsummon from hand
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_HAND)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetCondition(s.hspcon)
e1:SetTarget(s.hsptg)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon this card as a Normal Monster (Psychic/DARK/Level 4/ATK 1900/DEF 2500) (this card is also still a Trap), then you can Special Summon 1 Machine "Time Thief" monster from your hand, Deck, or GY. If you control an Xyz Monster(s) that has both a Spell and a Trap as material: You can banish this card from you... | --クロノダイバー・パワーリザーブ
--Time Thief Power Reserve
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself as a monster then Special Summon 1 Machine "Time Thief" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:Se... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.