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 a "Sky Striker Ace" monster(s) is Normal or Special Summoned, except "Sky Striker Ace - Roze" (except during the Damage Step): You can Special Summon this card from your hand. If an opponent's monster in the Extra Monster Zone is destroyed by battle, or leaves the field because of your card effect, while this card i...
--閃刀姫-ロゼ --Sky Striker Ace - Roze --Scripted by ahtelel 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:SetProperty(EFFECT_FLAG_DELAY) e1:SetType(EFFECT_TYPE_FIELD...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 "Ninja" monsters During your Main Phase: You can Set 1 "Ninjitsu Art" Spell/Trap directly from your Deck. You can only use this effect of "Ninja Grandmaster Saizo" once per turn. While this card points to a monster(s), this card cannot be targeted for an attack, also your opponent cannot target it with card effects.
--忍者マスター SAIZO --Ninja Grandmaster Saizo --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_NINJA),2,2) --set local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_IGN...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can only control 1 "Stoic Challenge". Equip only to a face-up Xyz Monster that has Xyz Material. It gains 600 ATK for each Xyz Material attached to a monster you control, and any battle damage your opponent takes from battles involving it and their monster is doubled, but its effects cannot be activated. During you...
--ストイック・チャレンジ --Stoic Challenge local s,id=GetID() function s.initial_effect(c) --You can only control 1 "Stoic Challenge" c:SetUniqueOnField(1,0,id) --Equip only to a face-up Xyz Monster that has Xyz Material aux.AddEquipProcedure(c,nil,function(c) return c:IsXyzMonster() and c:GetOverlayCount()>0 end) --It gains...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a monster you control is destroyed by a card effect and sent to the Graveyard (except during the Damage Step): Pay 1000 LP; Special Summon 1 Level 4 monster from your Deck.
--魂の綱 --Soul Rope 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_TO_GRAVE) e1:SetCondition(s.condition) e1:SetCost(Cost.PayLP(1000)) e1:SetTarget(s.target) e1:SetOperation(s.act...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate 1 or both of these effects (simultaneously); ● When an opponent's monster declares an attack: Target the attacking monster; change that target to Defense Position. ● Target 1 face-up monster you control; equip this card to that target. It gains 500 ATK.
--鎖付きブーメラン --Kunai with Chain local s,id=GetID() function s.initial_effect(c) --Activate 1 or both 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+EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT_FREE_CHAIN) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
(This card is always treated as a "Marincess" card.) Link Monsters that point to this card cannot be destroyed by battle. You can only use each of the following effects of "Trickstar Aqua Angel" once per Duel. If you control a "Trickstar" or "Marincess" monster: You can Special Summon this card from your hand or GY. If...
--トリックスター・アクアエンジェル --Trickstar Aqua Angel --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Link Monsters that point to this card cannot be destroyed by battle local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE) e1:SetRange(LOCATION_MZONE) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Look at your opponent's hand. Select and discard 1 Spirit monster to the Graveyard if Spirit monsters exist in his/her hand.
--封神鏡 --Fengsheng Mirror local s,id=GetID() function s.initial_effect(c) --Discard 1 spirit monster from the opponent's hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_HANDES) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 "Elemental HERO" Normal Monster in your Graveyard; add that target to your hand, then if your opponent controls any monsters with ATK less than or equal to that target's ATK, destroy 1 of them.
--ヒーロー・ブラスト --Hero Blast local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_DESTROY) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER_E) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Machine monsters Gains ATK equal to the total Levels of the "F.A." monsters this card points to x 300. Neither player takes any battle damage from attacks involving this card. Each time a "F.A." Spell/Trap Card or effect is activated: Place 1 Athlete Counter on this card. When your opponent activates a monster effect...
--F.A.シャイニングスターGT --F.A. Shining Star GT --Scripted by ahtelel local s,id=GetID() function s.initial_effect(c) c:EnableCounterPermit(0x4a) --link summon c:EnableReviveLimit() Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_MACHINE),2,2) --atk up local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYP...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Tribute 1 Level 4 or higher Dinosaur-Type monster; Special Summon 2 Level 3 or lower Reptile-Type monsters from your hand and/or Graveyard.
--強制退化 --Degen-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:SetHintTiming(0,TIMING_END_PHASE) e1:SetCost(s.cost) e1:SetTarget(s.target) e1:SetOperation(s....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Monster Egg" + "Hinotama Soul"
--炎の騎士 キラー --Charubin the Fire Knight local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,36121917,96851799) end
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can reveal this card in your hand and discard 1 other card; add 1 Level 3 Normal Monster from your Deck or GY to your hand, except the discarded card, then you can Special Summon this card in Defense Position. You can only use this effect of "Materiactor Exareptor" once per turn. (Quick Effect): You can discard thi...
--マテリアクトル・エクサレプト --Materiactor Exareptor --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) --Add 1 Level 3 Normal Monster from your Deck or GY to your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFEC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 "SPYRAL" monster you control; equip this monster from your hand or field to that target. While this card is equipped to a monster by this effect, the equipped monster cannot be destroyed by battle or card effects, also your opponent cannot target it with card effects. Once per turn, if this card is equ...
--SPYRAL GEAR-ラスト・リゾート --SPYRAL GEAR - Last Resort local s,id=GetID() function s.initial_effect(c) --Equip this card to 1 "SPYRAL" monster you control local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
All face-up "Laval" monsters you control gain 100 ATK for each "Laval" monster in your Graveyard.
--炎熱旋風壁 --Molten Whirlwind Wall local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(TIMING_DAMAGE_STEP) e1:SetCondition(aux.StatChangeDamageStepCondition) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
7 "Crystal Beast" monsters (This card is always treated as an "Ultimate Crystal" card.) Must be either Fusion Summoned, or Special Summoned by Tributing 1 Level 10 "Ultimate Crystal" monster. Once per turn: You can banish 1 "Crystal Beast" monster from your GY; this card gains ATK equal to the banished monster's, until...
--究極宝玉神 レインボー・オーバー・ドラゴン --Rainbow Overdragon --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --fusion summon c:EnableReviveLimit() Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_CRYSTAL_BEAST),7) --spsummon condition local e1=Effect.CreateEffect(c) e1:SetType(E...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner Synchro Monster + 2+ non-Tuner Synchro Monsters Must first be Synchro Summoned with the above materials. Once per turn: You can target face-up cards on the field, up to the number of monsters used as Synchro Material for this card +1; negate their effects. This effect's activation and effect cannot be negated. ...
--コズミック・クェーサー・ドラゴン --Cosmic Quasar Dragon local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Synchro Summon procedure Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_SYNCHRO),1,1,Synchro.NonTunerEx(Card.IsType,TYPE_SYNCHRO),2,99) --Must first be Synchro Summoned with the above ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control a "Dream Mirror" monster: Target 1 each of your banished "Dream Mirror of Joy" and "Dream Mirror of Terror"; shuffle them into the Deck, and if you do, banish 1 card on the field. If a "Dream Mirror" card(s) you control would be destroyed by battle or card effect, you can banish this card from your GY in...
--夢魔鏡の夢物語 --Dream Mirror Fantasy --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Banish 1 card from the field local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TODECK+CATEGORY_REMOVE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TAR...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: You can target 1 "Shaddoll" monster in your GY, except "Shaddoll Falco"; Special Summon it in face-down Defense Position. If this card is sent to the GY by a card effect: You can Special Summon it in face-down Defense Position. You can only use 1 "Shaddoll Falco" effect per turn, and only once that turn.
--シャドール・ファルコン --Shaddoll Falco local s,id=GetID() function s.initial_effect(c) --flip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FL...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Equip only to an "Ancient Gear" monster. It gains 600 ATK. When this card is destroyed and sent to the Graveyard: Inflict 600 damage to your opponent.
--古代の機械戦車 --Ancient Gear Tank local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsSetCard,SET_ANCIENT_GEAR)) --Atk local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_EQUIP) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetValue(600) c:RegisterEffect(e2) --damage ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If there is a card in the Pendulum Zone: Add 1 "Pendulum" Pendulum Monster or "Pendulum" Spell/Trap from your Deck to your hand. You can only activate 1 "Duelist Alliance" per turn.
--デュエリスト・アドベント --Duelist Alliance 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:SetCondition(s.condition) e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1 or more non-Tuner monsters Once per turn: You can Tribute 1 "Junk" monster; inflict damage to your opponent equal to the original ATK of the Tributed monster.
--カタパルト・ウォリアー --Catapult Warrior local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) c:EnableReviveLimit() --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCatego...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While this card is equipped to a monster: You can add 1 Level 5 or lower FIRE Warrior monster from your Deck to your hand, then destroy this card. If this card is sent to the GY because the equipped monster is sent to the GY: You can target 1 Level 5 or lower FIRE Warrior monster in your GY; Special Summon it, also you...
--『焔聖剣-デュランダル』 --"Infernoble Arms - Durendal" --Scripted by AlphaKretin local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c) --add to hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_DESTROY) e1:SetType(EFFECT_TY...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 monster in your Main Monster Zone; move that target to another of your Main Monster Zones.
--アスポート --Column Switch --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] If a face-up "Metalfoes" card(s) you control is destroyed by card effect (except during the Damage Step): You can target 1 face-up card on the field; destroy it. You can only use this effect of "Parametalfoes Azortless" once per turn. ---------------------------------------- [ Monster Effect ] 1 "Me...
--パラメタルフォーゼ・アゾートレス --Parametalfoes Azortless local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Pendulum Summon procedure Pendulum.AddProcedure(c,false) --Fusion Materials: 1 "Metalfoes" monster + 1 Fusion Monster Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_METALF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can banish 2 "Rescue-ACE" cards from your GY; Special Summon this card from your hand. During your Main Phase: You can Set up to 4 "Rescue-ACE" Quick-Play Spells / Normal Traps, with different names, directly from your Deck. If another card(s) you control leaves the field by an opponent's card effect (except during...
--R-ACEタービュランス --Rescue-ACE Turbulence --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Special Summon this card from your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCAT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When an opponent's monster declares an attack: Target 1 monster you control; return that target to the hand, then Special Summon 1 Level 4 monster from your hand.
--モンスターレリーフ --Relieve Monster local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetCondition(s.condition) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a Spell effect that would inflict damage to you is activated: You take no damage from that effect. While this card is in your Graveyard, you take no damage from the effect of "Sargasso the D.D. Battlefield". When this Set card is sent to the Graveyard: You can add 1 "Sargasso the D.D. Battlefield" from your Deck t...
--サルガッソの灯台 --Sargasso Lighthouse local s,id=GetID() function s.initial_effect(c) --damage change local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_CHAINING) e1:SetCondition(s.condition) e1:SetOperation(s.operation) c:RegisterEffect(e1) -- local e2=Effect.CreateEffect(c) e2:SetT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During the Main Phase: Fusion Summon 1 Fusion Monster from your Extra Deck, using monsters from your hand or field, including an "Artmage" monster, then, if a card is in the Field Zone, that monster gains 500 ATK. During your Main Phase: You can banish this card from your GY, then target 3 "Artmage" cards with differen...
--アルトメギア・マスターワーク-継承- --Artmage Masterwork -Succession- --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Fusion Summon 1 Fusion Monster from your Extra Deck local e1=Fusion.CreateSummonEff({handler=c,extrafil=s.fextra,stage2=s.atkop,extratg=s.atktg}) e1:SetCountLimit(1,id) e1:SetHintTiming(0,TIMI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Target 1 monster your opponent controls; until the End Phase, take control of that target, but it cannot declare an attack or be Tributed.
--精神操作 --Mind Control local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_CONTROL) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEf...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While this card is equipped to "Flame Swordsman" or a monster that mentions it, the equipped monster gains 700 ATK. You can only use each of the following effects of "Salamandra, the Flying Flame Dragon" once per turn. If this card is in your hand or GY: You can target 1 Warrior monster you control; equip this card to ...
--飛龍炎サラマンドラ --Salamandra, the Flying Flame Dragon --scripted by Naim local s,id=GetID() function s.initial_effect(c) --"Flame Swordsman" or a monster that mentions it equipped with this card gains 700 ATK local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_EQUIP) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetCondition...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During the End Phase, if the equipped monster was destroyed by battle and sent to the Graveyard this turn: Special Summon it from the Graveyard to your side of the field.
--リボーンリボン --Ribbon of Rebirth local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c,nil,s.filter) --special summon local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e3:SetCode(EVENT_TO_GRAVE) e3:SetCondition(s.regcon) e3:SetOperation(s.regop) c:RegisterEffec...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Cyberdark Dragon" + "Cyber End Dragon" Must be either Fusion Summoned, or Special Summoned by Tributing 1 Level 10 or lower "Cyberdark" Fusion Monster equipped with "Cyber End Dragon". Unaffected by your opponent's activated effects. Once per turn: You can equip 1 monster from either GY to this card. This card can att...
--鎧皇竜-サイバー・ダーク・エンド・ドラゴン --Cyberdark End Dragon --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,40418351,1546123) --spsummon condition local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card battles a monster, neither can be destroyed by that battle. You can only use each of the following effects of "Maiden of the Millennium Moon" once per turn. If this card is in your hand: You can place it in your Spell & Trap Zone as a face-up Continuous Spell. If your opponent activates a card or effect, w...
--ミレニアムーン・メイデン --Maiden of the Millennium Moon --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Neither monster can be destroyed by battle local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE) e1:SetRange(LOCATION_MZONE) e1:SetTargetRange(LOCATI...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal or Flip Summoned: You can target 1 other monster you control; return that target to the hand. You must control another face-up "Gishki" monster to activate and to resolve this effect.
--リチュア・キラー --Gishki Reliever 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_TOHAND) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate 1 of these effects. ● Add 1 "Gravekeeper's" monster from your Deck to your hand. ● Immediately after this effect resolves, Normal Summon 1 "Gravekeeper's" monster. You can only activate 1 "Necrovalley Throne" per turn.
--ネクロバレーの玉座 --Necrovalley Throne --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) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetTarget(s.target) c:RegisterEffect(e1) end s.listed_serie...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Draw 2 cards and skip your next 2 Draw Phases.
--無謀な欲張り --Reckless Greed local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:Registe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When a monster is sent from the field to your GY, even during the Damage Step: Target 1 monster on the field; destroy it.
--道連れ --Michizure 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+EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT_TO_GRAVE) e1:SetCondition(s.condition) e1:SetTarget(s.ta...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is activated: You can add 1 "Live☆Twin" monster from your Deck to your hand. While you control an "Evil★Twin" monster, each time your opponent Normal or Special Summons a monster(s), you gain 200 LP, and if you do, inflict 200 damage to your opponent. You can only activate 1 "Live☆Twin Sunny's Snitch" pe...
--Live☆Twin トラブルサン --Live☆Twin Sunny's Snitch --Script by XyLeN local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND) 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:
Show 5 "Forbidden One" Monster Cards from your hand, Deck, and/or face-up field, then Special Summon 1 "The Unstoppable Exodia Incarnate" from your Extra Deck, then shuffle the face-up Monster Cards you control into the Deck, except "Exodia" Monster Cards whose original Levels are 10 or higher, and "Millennium" Monster...
--千年の十字 --Millennium Ankh --scripted by Naim local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TODECK) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
While you control a "Rescue-ACE" monster other than "Rescue-ACE Hydrant", your opponent's monsters cannot target this card for attacks, also your opponent cannot target this card with card effects. You can only use each of the following effects of "Rescue-ACE Hydrant" once per turn. You can activate a Quick-Play Spell,...
--R-ACEハイドラント --Rescue-ACE Hydrant --Scripted by Eerie Code 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...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
(This card is always treated as an "Archfiend" card.) FLIP: Target 1 Fiend-Type monster your opponent controls; take control of that target until the End Phase.
--デーモン・テイマー --Shadow Tamer local s,id=GetID() function s.initial_effect(c) --control local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_CONTROL) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP) e1:SetTarget(s.target) e1:SetOperati...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card can be used to Ritual Summon any LIGHT Ritual Monster. You must also Tribute monsters from your hand or field whose total Levels exactly equal the Level of the Ritual Monster you Ritual Summon.
--精霊の祝福 --Sprite's Blessing local s,id=GetID() function s.initial_effect(c) Ritual.AddProcEqual(c,aux.FilterBoolFunction(Card.IsAttribute,ATTRIBUTE_LIGHT)) end
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
(Quick Effect): You can send this card from your hand or field to the GY and discard 1 card; Set 1 "Labrynth" Spell/Trap from your hand or Deck. If a monster(s) leaves the field by your Normal Trap effect, while this card is in your GY (except during the Damage Step): You can add this card to your hand. You can only us...
--白銀の城の竜飾灯 --Labrynth Chandraglier --Scripted by Yuno local s,id=GetID() function s.initial_effect(c) --Set 1 "Labrynth" Spell/Trap from the hand or deck 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|LOC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Fusion Summon 1 Machine Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Material, and it gains ATK equal to its original ATK. During the End Phase of the turn this card is activated, you take damage equal to the amount of ATK gained from this effect at the time of the Summon.
--パワー・ボンド --Power Bond local s,id=GetID() function s.initial_effect(c) c:RegisterEffect(Fusion.CreateSummonEff(c,aux.FilterBoolFunction(Card.IsRace,RACE_MACHINE),nil,nil,nil,nil,s.stage2)) end function s.stage2(e,tc,tp,sg,chk) if chk~=1 then return end local e1=Effect.CreateEffect(e:GetHandler()) e1:SetType(EFFECT_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 2 monsters This card is unaffected by other monsters' effects. You can activate "Paleozoic" Trap Cards from your hand. If this card has a Trap Card as Xyz Material: You can detach 1 Xyz Material from this card; add 1 "Paleozoic" Trap Card from your Deck to your hand. You can only use this effect of "Paleozoic O...
--バージェストマ・オパビニア --Paleozoic Opabinia local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon Procedure Xyz.AddProcedure(c,nil,2,2) --Unaffected by monsters' effects local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_IMMUNE_EFFECT) e1:SetProperty(EFFECT_FL...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
3 "Ancient Gear" monsters If this card attacks, your opponent cannot activate Spell/Trap Cards until the end of the Damage Step. If this card was Fusion Summoned using 2 or more "Ancient Gear Golem" and/or "Ancient Gear Golem - Ultimate Pound" as material, it can attack up to that many times during each Battle Phase. I...
--古代の機械超巨人 --Ancient Gear Megaton Golem --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_ANCIENT_GEAR),3) --Can make attacks up to the number of "Ancient Gear Golem" and "Ancient Gear Golem - Ulti...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Special Summoned from your Graveyard by the effect of a Zombie-Type monster: You can target 1 Spell/Trap Card your opponent controls; destroy that target. During the End Phase of the turn this card was Special Summoned: Destroy it.
--ボーンクラッシャー --Bone Crusher local s,id=GetID() function s.initial_effect(c) --destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP) e1:SetCo...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1+ non-Tuner monsters Once per turn: You can send 1 "Synchron" monster from your Deck to the GY, then activate 1 of these effects; ● Increase this card's Level by the Level of the sent monster. ● Reduce this card's Level by the Level of the sent monster. During your opponent's Main Phase, you can (Quick Effec...
--アクセル・シンクロン --Accel Synchron local s,id=GetID() function s.initial_effect(c) --synchro summon Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) c:EnableReviveLimit() --splimit local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 "Dream Mirror" monsters with different Attributes While face-up on the field, this card is also LIGHT-Attribute. You can only use each of the following effects of "Oneiros, the Dream Mirror Tormentor" once per turn. ● When a monster effect is activated while "Dream Mirror of Terror" is in a Field Zone (Quick Effect):...
--夢魔鏡の魘魔-ネイロス --Oneiros, the Dream Mirror Tormentor --Scripted by senpaizuri local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Fusion Materials Fusion.AddProcMixN(c,true,true,s.ffilter,2) --While face-up on the field, this card is also LIGHT-Attribute local e1=Effect.CreateEffect(c) e1:SetTy...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can send 1 "Kozmo" monster from your Deck to the Graveyard, then target 1 face-up monster on the field; it loses ATK and DEF equal to the sent monster's Level x 100. If this card is destroyed by battle or card effect and sent to the Graveyard: You can banish this card from your Graveyard; Special Sum...
--Kozmo-デルタシャトル --Kozmo Delta Shuttle local s,id=GetID() function s.initial_effect(c) --atk/def local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1) e1:SetCos...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 "Trickstar" monsters If this card is Link Summoned: You can add 1 "Blue Tears" card from your Deck to your hand. If you have a Fusion Monster in your field or GY: You can target 1 "Trickstar" monster in your GY; Special Summon it. If effect damage is inflicted (except during the Damage Step): You can target 1 face-up...
--トリックスター・ノーブルエンジェル --Trickstar Noble Angel --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Link Summon procedure Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_TRICKSTAR),2,2) --Add 1 "Blue Tears" card from your Deck to your hand local e1=Effect.C...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
This card's name becomes "Fallen of Albaz" while on the field or in the GY. While a Level 8 Fusion Monster is in your GY, this card gains 200 ATK for each monster in your GY, also your opponent cannot target other monsters you control with card effects. If a monster(s) you control leaves the field by an opponent's card...
--灰燼のアルバス --Albaz the Ashen --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Change name local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetCode(EFFECT_CHANGE_CODE) e1:SetRange(LOCATION_MZONE|LOCATION_GRAVE) e1:SetValue(CARD_ALB...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Equip only to a Warrior monster. It gains 800 ATK. While equipped to a monster, this card cannot be destroyed by card effects.
--融合武器ムラサメブレード --Fusion Sword Murasame Blade local s,id=GetID() function s.initial_effect(c) 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(800) c:RegisterEffect(e2) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Both players can Normal Summon "Ancient Gear" monsters for 1 less Tribute. When this card is destroyed and sent to the GY: You can Special Summon 1 "Ancient Gear" monster from your hand, Deck, or GY.
--歯車街 --Geartown 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) --decrease tribute local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_DECREASE_TRIBUTE) e2...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
1 Tuner + 1+ non-Tuner monsters (This card is always treated as a "The Agent" card.) Once per turn: You can banish 1 monster from your GY, then target 1 Effect Monster on the field; change it to face-down Defense Position. This is a Quick Effect if "The Sanctuary in the Sky" is on the field or in either GY. You can ban...
--冥府の執行者 プルート --The Executor of the Underworld - Pluto --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99) --change position local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,1)) e1:SetCategory(CA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can target 1 other Machine monster you control; the Levels of both that monster and this card become the combined current Levels of those 2 monsters until the end of this turn, also you cannot Special Summon from the Extra Deck for the rest of this turn, except Machine Xyz Monsters. You can only use this effect of ...
--スターシップ・アジャスト・プレーン --Starship Adjust Plane --scripted by Naim local s,id=GetID() function s.initial_effect(c) --The Levels of both this card and 1 other Machine monster you control become their combined current Levels local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_LVC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can send 1 face-up "Umi" you control to the GY; destroy all other cards on the field.
--海竜-ダイダロス --Levia-Dragon - Daedalus local s,id=GetID() function s.initial_effect(c) --Destroy all cards on the field local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCost(s.cost) e1:SetTarge...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During your Main Phase: You can return this face-up card from the field to the hand. During the Damage Step, when a LIGHT monster you control battles (Quick Effect): You can send this card from your hand to the GY; that monster gains ATK equal to the ATK of the opponent's monster it is battling, until the end of this t...
--オネスト --Honest local s,id=GetID() function s.initial_effect(c) --to hand local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetRange(LOCATION_MZONE) e1:SetTarget(s.target1) e1:SetOperation(s.operation1) c:RegisterEffect(e1)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: Target 1 WIND monster your opponent controls; take control of it while this card is face-up on the field. * The above text is unofficial and describes the card's functionality in the OCG.
--風霊使いウィン --Wynn the Wind Charmer local s,id=GetID() function s.initial_effect(c) --flip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_CONTROL) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP) e1:SetTarget(s.target) e1:SetOpe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can Tribute 1 "Performapal" monster; inflict damage to your opponent equal to the Level it had on the field x 100 (original Level, if face-down). You can Tribute 1 "Performapal" monster, then target 1 "Performapal" monster in your Graveyard other than the Tributed monster; add it to your hand. You can only use each...
--EMガンバッター --Performapal Bowhopper local s,id=GetID() function s.initial_effect(c) --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DAMAGE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Select and Special Summon 1 Level 4 or lower "Morphtronic" monster from your Graveyard. Destroy it during the End Phase.
--ジャンクBOX --Junk Box 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:Regi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Send 1 "Stardust" monster from your Deck to the GY, or if you control "Stardust Dragon" or a Synchro Monster that mentions it, you can Special Summon it instead. You can banish this card from your GY, then target 1 "Stardust" monster you control; increase or decrease its Level by 1 until the end of this turn. You can o...
--スターダスト・イルミネイト --Stardust Illumination --scripted by Rundas local s,id=GetID() function s.initial_effect(c) --Send 1 "Stardust" monster from your Deck to the GY, or if you control "Stardust Dragon" or a Synchro Monster that mentions it, you can Special Summon it instead local e1=Effect.CreateEffect(c) e1:SetDescrip...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] If another "Dinomist" card(s) you control would be destroyed by battle or an opponent's card effect, you can destroy this card instead. ---------------------------------------- [ Monster Effect ] If all monsters you control are "Dinomist" monsters (min. 1), and none are "Dinomist Ceratops", you can ...
--ダイナミスト・ケラトプス --Dinomist Ceratops local s,id=GetID() function s.initial_effect(c) --pendulum summon Pendulum.AddProcedure(c) --destroy replace local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_DESTROY_REPLACE) e2:SetRange(LOCATION_PZONE) e2:SetTarget(s.reptg...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During damage calculation, when you would take battle damage (Quick Effect): You can discard this card; make yourself take no battle damage from that battle, and if you do, each player takes 1000 damage. You can banish this card from your GY, then target 1 "Destiny HERO" monster you control; it gains 1000 ATK until the...
--D-HERO ダイナマイトガイ --Destiny HERO - Dynatag local s,id=GetID() function s.initial_effect(c) --Damage to 0 local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE) e1:SetRange(LOCATION_HAND) e1:SetC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can discard 3 other WATER monsters to the GY; Special Summon this card from your hand. When Summoned this way: You can target 1 "Abyss-" Spell/Trap in your GY; add that target to your hand. You can Tribute 1 other Attack Position "Mermail" monster; send 1 random card from your opponent's hand to the GY. You can onl...
--水精鱗-リードアビス --Mermail Abyssleed 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_HAND) e1:SetCost(s.spcost) e1:SetTarget(s.sptg) e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card is Normal Summoned: You can target 2 Fish-Type monsters in your Graveyard; shuffle those targets into your Deck.
--メタボ・シャーク --Metabo-Shark local s,id=GetID() function s.initial_effect(c) --to deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TODECK) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you control no monsters, you can Normal Summon this card without Tributing. Once per turn, during your opponent's Standby Phase: This card's ATK becomes double its current ATK until the end of this turn.
--デプス・シャーク --Depth Shark 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_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SUMMON_PROC) e1:SetCondition(s.ntcon) c:RegisterEffect(e...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is in your hand or GY: You can Tribute 1 monster; Special Summon this card, but banish it when it leaves the field, also, you cannot Special Summon monsters from the Extra Deck for the rest of this turn, except Synchro Monsters. If this card is Normal or Special Summoned: You can add 1 Spell/Trap from your...
--スターダスト・シンクロン --Stardust Synchron --scripted by Hatter local s,id=GetID() function s.initial_effect(c) --special summon itself from hand or GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND|L...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Cannot be Special Summoned, except by a "Hazy Flame" monster's effect. Your opponent cannot target this card with card effects. You can send 1 FIRE monster from your hand to the Graveyard and Tribute this card; Special Summon 2 "Hazy Flame" monsters from your Deck. You can only use this effect of "Hazy Flame Peryton" o...
--陽炎獣 ペリュトン --Hazy Flame Peryton local s,id=GetID() function s.initial_effect(c) --cannot be target local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetValue(aux.tgoval) c:RegisterEff...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If you have no cards in your Pendulum Zones: Add 2 face-up "Magician" Pendulum Monsters with different names from your Extra Deck to your hand. You can only activate 1 "Amazing Pendulum" per turn.
--アメイジング・ペンデュラム --Amazing Pendulum local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetCondition(s.condition) e1:SetTarget(s.target) e1:SetOperation(s.activate...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Once per turn: You can target 2 "Ice Barrier" monsters in your GY; shuffle both into the Deck, then each player draws 1 card.
--氷結界の輸送部隊 --Caravan of the Ice Barrier local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetTarget(s...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Toss a coin: ● Heads: draw 2 cards. ● Tails: your opponent draws 2 cards.
--カップ・オブ・エース --Cup of Ace local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_COIN+CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(s.target) e1:SetOperation(s.activate) ...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Dark Magician" + "Red-Eyes Black Dragon" or 1 Dragon Effect Monster Cannot be destroyed by card effects. Neither player can target this card with card effects. During your Main Phase: You can destroy 1 monster your opponent controls, and if you do, inflict damage to your opponent equal to that monster's original ATK. ...
--超魔導竜騎士-ドラグーン・オブ・レッドアイズ --Red-Eyes Dark Dragoon --Scripted by Naim local s,id=GetID() function s.initial_effect(c) --fusion material c:EnableReviveLimit() Fusion.AddProcMix(c,true,true,CARD_DARK_MAGICIAN,{CARD_REDEYES_B_DRAGON,s.ffilter}) --register effect local e0=Effect.CreateEffect(c) e0:SetType(EFFECT_TYPE_C...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
A Thunder-Type monster equipped with this card increases its ATK and DEF by 300 points.
--電撃鞭 --Electro-Whip local s,id=GetID() function s.initial_effect(c) aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsRace,RACE_THUNDER)) --atk up local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_EQUIP) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetValue(300) c:RegisterEffect(e2) --def up local e3=Effe...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
All LIGHT monsters you control gain 100 ATK for each LIGHT monster in your Graveyard. During your End Phase, destroy 1 LIGHT monster you control. There can only be 1 face-up "Rai-Jin" on the field.
--RAI-JIN --Rai-Jin local s,id=GetID() function s.initial_effect(c) c:SetUniqueOnField(1,1,id) --atkup 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(s.atkval) c:Re...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Each time this card declares an attack, you must Tribute 1 Aqua-Type monster. This card can attack 3 times during each Battle Phase.
--トリプル・ヴァイパー --Hydra Viper local s,id=GetID() function s.initial_effect(c) --multiattack local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_EXTRA_ATTACK) e1:SetValue(2) c:RegisterEffect(e1) --attack cost local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_SINGLE) e2:SetCode(EF...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 FIRE monsters All FIRE monsters on the field gain 500 ATK/DEF, also all WATER monsters on the field lose 400 ATK/DEF. If this card is destroyed by battle or card effect: You can target 1 FIRE monster in your GY; add it to your hand. You can only use this effect of "Duelittle Chimera" once per turn.
--ドリトル・キメラ --Duelittle Chimera --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --link summon Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_FIRE),2,2) c:EnableReviveLimit() --atk/def local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If a face-up monster(s) "Fur Hire" you control is destroyed by battle or an opponent's card effect: You can target 1 of those monsters; Special Summon 1 monster "Fur Hire" from your Deck, whose Level is lower than that target's original Level. You can only use this effect of "Training Fur Hire, Fur All Your Training Ne...
--空牙団の修練 --Training Fur Hire, Fur All Your Training Needs local s,id=GetID() function s.initial_effect(c) --Activate local e0=Effect.CreateEffect(c) e0:SetDescription(aux.Stringid(id,0)) e0:SetType(EFFECT_TYPE_ACTIVATE) e0:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e0) --Activate(spsummon) local e1=Effect.Creat...
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: It gains 800 ATK for each card currently in your hand. When this card you control is destroyed by your opponent's card and sent to your GY, if all of the monsters that were used for the Synchro Summon of this card are in your GY: You can Special Summon a...
--天穹覇龍ドラゴアセンション --Ascension Sky 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() --atk local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFEC...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Level 4 monsters During either player's turn, when a Level 5 or higher monster would be Special Summoned: You can detach 1 Xyz Material from this card; negate the Special Summon, and if you do, destroy it.
--インヴェルズ・ローチ --Steelswarm Roach local s,id=GetID() function s.initial_effect(c) --xyz summon Xyz.AddProcedure(c,nil,4,2) c:EnableReviveLimit() --disable spsummon local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DISABLE_SUMMON+CATEGORY_DESTROY) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
(This card is always treated as a "G Golem" card.) Target 2 of your EARTH monsters with the same name that are banished or in your GY; Special Summon both in Defense Position, but negate their effects, change their ATK/DEF to 0, also destroy them during the End Phase. If a "G Golem" monster(s) you control would be dest...
--重力均衡 --Gravity Balance --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Activate 1 "Generaider" Field Spell directly from your Deck or GY, then your opponent draws 1 card. You can only activate 1 "Generaider Boss Fight" per turn.
--王の襲来 --Generaider Boss Fight --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetTarget(s.target) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If this card is used as a Synchro Material Monster, all the other Synchro Material Monsters must be Fish-Type.
--竜宮の白タウナギ --Royal Swamp Eel local s,id=GetID() function s.initial_effect(c) local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SYNCHRO_MAT_RESTRICTION) e1:SetValue(aux.TargetBoolFunction(Card.IsRace,RACE_FISH)) c:Regi...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
All monsters are changed to Attack Position, also their battle positions cannot be changed. (Flip Effects are not activated.) Once per turn: You can reveal any number of Fiend monsters in your hand; this card gains 300 ATK for each, until the end of this turn.
--軍神ガープ --Gaap the Divine Soldier local s,id=GetID() function s.initial_effect(c) --Pos Change local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SET_POSITION) e1:SetProperty(EFFECT_FLAG_SET_AVAILABLE) e1:SetRange(LOCATION_MZONE) e1:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE) e1:S...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
All Insect monsters your opponent controls are changed to Attack Position. If this card destroys an Insect monster by battle: This card gains 500 ATK.
--インセクト・プリンセス --Insect Princess local s,id=GetID() function s.initial_effect(c) --Change position local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SET_POSITION) e1:SetRange(LOCATION_MZONE) e1:SetTarget(s.target) e1:SetTargetRange(0,LOCATION_MZONE) e1:SetValue(POS_FACEUP_ATTACK) c...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When your opponent activates a monster effect on the field (Quick Effect): You can Special Summon this card from your hand, and if you do, send the top 3 cards of your Deck to the GY. If this card is sent to the GY by card effect (except during the Damage Step): You can Fusion Summon 1 Fusion Monster from your Extra De...
--ティアラメンツ・ハゥフニス --Tearlaments Havnis --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) --Special Summon this card local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DECKDES) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_CHAIN...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
FLIP: Target 1 EARTH monster your opponent controls; take control of it while this card is face-up on the field. * The above text is unofficial and describes the card's functionality in the OCG.
--地霊使いアウス --Aussa the Earth Charmer local s,id=GetID() function s.initial_effect(c) --flip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_CONTROL) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP) e1:SetTarget(s.target) e1:SetO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2 Pendulum Monsters During your Main Phase: You can add 1 Pendulum Monster from your hand to the Extra Deck face-up, and 1 face-up Pendulum Monster from your Extra Deck to the hand, as long as one of them has an even Pendulum Scale, and the other has an odd Pendulum Scale. When you Pendulum Summon a "Solfachord" monste...
--グランドレミコード・ミューゼシア --GranSolfachord Musecia --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_PENDULUM),2,2) --to hand (extra) 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:
If this card is destroyed by battle and sent to the Graveyard: The ATK of the monster that destroyed it becomes 0. You can banish this card from your Graveyard, then target 1 Set Spell/Trap Card your opponent controls; that target cannot be activated this turn. Your opponent cannot activate the targeted card in respons...
--ゴルゴニック・ゴーレム --Gorgonic Golem 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_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BATTLE_DESTROYED) e1:SetCondition(s.condition) e1:Se...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If the only monsters on the field are this card you control and 4 "Forbidden One" Normal Monsters with different names, your opponent wins the Duel.
--真エクゾディア --True Exodia --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --lose condition local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_IGNORE_IMMUNE) e1:SetRange(LOCATION_MZO...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
[ Pendulum Effect ] You cannot Special Summon monsters, except "Qli" monsters. This effect cannot be negated. All monsters your opponent controls lose 300 ATK. ---------------------------------------- [ Monster Effect ] You can Normal Summon this card without Tributing. If this card is Normal Summoned without Tributing...
--クリフォート・ゲノム --Qliphort Helix local s,id=GetID() function s.initial_effect(c) --pendulum summon Pendulum.AddProcedure(c) --splimit local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON) e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
"Junk Synchron" + 1 or more non-Tuner monsters Once per turn, you can select 1 monster your opponent controls, and change its battle position. This effect can be activated during either player's turn. If this card is sent from the field to the Graveyard, you can select 1 monster on the field and change its battle posit...
--ジャンク・ガードナー --Junk Gardna local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Synchro Summon procedure: "Junk Synchron" + 1+ non-Tuner monsters Synchro.AddProcedure(c,s.tunerfilter,1,1,Synchro.NonTuner(nil),1,99) --Change the battle position of 1 monster your opponent controls local e1=Effect....
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
If your opponent controls a card and you control no cards, you can Special Summon this card (from your hand).
--先史遺産モアイキャリア --Chronomaly Moai Carrier 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:
2 Level 8 Gemini monsters When this card is Xyz Summoned: You can target 1 Gemini monster in your Graveyard; Special Summon it. While this card has Xyz Material, monsters your opponent controls cannot target Gemini monsters you control for attacks, also your opponent cannot target Gemini monsters you control with card ...
--超化合獣メタン・ハイド --Vola-Chemicritter Methydraco local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() --Xyz Summon Procedure Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_GEMINI),8,2) --Special Summon 1 Gemini monster from the GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.St...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
2+ Wyrm monsters While you control a face-up non-Effect Monster, monsters your opponent controls cannot target Effect Monsters for attacks, also your opponent cannot target Effect Monsters on the field with card effects. (Quick Effect): You can target 1 Effect Monster your opponent controls; Special Summon 1 "Tenyi Spi...
--天威龍-サハスラーラ --Tenyi Spirit - Sahasrara --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) --Link Summon c:EnableReviveLimit() Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WYRM),2) --Cannot be targeted local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(E...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Gains 300 ATK for every "Dark Magician" or "Magician of Black Chaos" in the GYs.
--ブラック・マジシャン・ガール --Dark Magician Girl local s,id=GetID() function s.initial_effect(c) --atkup local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetRange(LOCATION_MZONE) e1:SetValue(s.val) c:RegisterEffect(e1) end s.listed_...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
When this card you control is destroyed by a card effect and sent to your Graveyard: You can target 1 Level 4 or lower Plant-Type monster in your Graveyard, except "Seed of Flame"; Special Summon that target, and if you do, Special Summon 1 "Seed Token" (Plant-Type/EARTH/Level 1/ATK 0/DEF 0) to your opponent's side of ...
--シード・オブ・フレイム --Seed of Flame local s,id=GetID() function s.initial_effect(c) --Special Summon 1 Level 4 or lower Plant monster from your GY local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
During the Main Phase or your opponent's Battle Phase: Target 2 or more "Raidraptor" Xyz Monsters you control and/or in your GY, including a monster on the field; if at least 2 remain face-up at resolution, Special Summon 1 "Raidraptor" Xyz Monster from your Extra Deck with a Rank equal to their combined Ranks, and if ...
--ЯRUM-レイド・ラプターズ・フォース --Rise Rank-Up-Magic Raidraptor's Force --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLA...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
You can declare 1 Attribute and discard this card to select 1 face-up "Genex" monster you control. That monster becomes that Attribute. This effect can be activated during either player's turn.
--A・ジェネクス・ケミストリ --Genex Ally Chemistrer local s,id=GetID() function s.initial_effect(c) --Change the Attribute of 1 "Genex" monster you control local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN)...
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect:
Banish all "Laval" monsters from your Graveyard; destroy any number of cards on the field, up to the number of monsters banished for this card's activation.
--炎塵爆発 --Dustflame Blast 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(0,TIMINGS_CHECK_MONSTER_E) e1:SetCost(s.cost) e1:SetTarget(s.target) e1:SetOperatio...