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 Tribute Summoned: Target 1 card on the field; place that target on the top of the Deck. | --風帝ライザー
--Raiza the Storm Monarch
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:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_SUMMON_S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as a "Millennium" card.) If a Level 5 or higher Monster Card is on the field, you can Normal Summon this card without Tributing. If your opponent Normal or Special Summons a monster(s) in Attack Position, increase its Level by 7 while this monster is on the field. When your opponent activat... | --魂宿りし暗黒騎士ガイア
--Soul of Gaia the Fierce Knight
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--If a Level 5 or higher Monster Card is on the field, you can Normal Summon this card without Tributing
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SUM... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] If you have a "Performapal" card in your other Pendulum Zone, except "Performapal Lizardraw": You can destroy this card, and if you do, draw 1 card. You can only use this effect of "Performapal Lizardraw" once per turn. ---------------------------------------- [ Monster Effect ] If another face-up m... | --EMリザードロー
--Performapal Lizardraw
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--destroy
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW)
e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_PZONE)
e2:SetCountLimit(1,id)
e2:SetTarget... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Inflict 600 points of damage to your opponent's Life Points. | --火あぶりの刑
--Final Flame
local s,id=GetID()
function s.initial_effect(c)
--damage
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.damtg)
e1:SetOperation(s.damop)
c:RegisterEffect... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can excavate a number of cards from the top of your Deck, equal to the number of cards your opponent controls, send any excavated Plant-Type monsters to the Graveyard, also place the other cards on the bottom of your Deck in any order. If this card is excavated from the Deck and sent to the Graveyard... | --森羅の渡し守 ロータス
--Sylvan Lotuswain
local s,id=GetID()
function s.initial_effect(c)
--Excavte cards from your Deck up to the number of cards your opponent controls
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DECKDES)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can send 1 monster you control to the Graveyard and Special Summon 1 "Neo-Spacian" monster from your hand. When this card is sent to the Graveyard, you can add 1 "Neo-Spacian" monster from your Deck to your hand. | --クロス・ポーター
--Cross Porter
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_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(s.s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 monster you control and send it to the Graveyard, and send 1 random card in your opponent's hand to the Graveyard. | --無情の抹殺
--Ruthless Denial
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE)
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:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Aroma" monster + 1 Plant monster While your LP are higher than your opponent's, Plant monsters you control cannot be destroyed by your opponent's card effects. Once per turn: You can pay 2000 LP; banish cards on the field equal to the number of "Humid Winds", "Dried Winds", and "Blessed Winds" you control. Once per ... | --アロマリリス-マグノリア
--Aromalilith Magnolia
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_AROMA),aux.FilterBoolFunctionEx(Card.IsRace,RACE_PLANT))
--Plant monsters you control cannot be ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned by a card effect. If this card is sent from your Deck to the GY by a monster effect: Special Summon it. You can Tribute this card, then target 1 monster your opponent controls; destroy that target, then send the top 3 cards of your Deck to the GY. | --ライトロード・アーチャー フェリス
--Felis, Lightsworn Archer
local s,id=GetID()
function s.initial_effect(c)
c:EnableUnsummonable()
--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_F)
e1:SetCode(EVEN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a monster declares an attack: Target 1 face-up monster on the field; it gains 1000 ATK until the end of the Battle Phase. | --虚栄巨影
--Ego Boost
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an attack is declared involving 2 Link Monsters: Shuffle all monsters on the field and in the GYs into the Decks. For the rest of this turn after this card resolves, neither player can Link Summon. | --星遺物の対焉
--World Legacy Cliffhanger
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If another card(s) you control is destroyed by battle or card effect: You can add 1 "Liberty at Last!" from your Deck or GY to your hand. At the start of the Damage Step, if a Synchro Monster battles a monster: You can destroy your opponent's battling monster. If this card in the Spell & Trap Zone would be destroyed by... | --革命の御旗
--Pennant of Revolution
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Search
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 3 Level 3 or lower Sea Serpent-Type monsters in your Graveyard; Special Summon all 3 of them. You cannot Special Summon any other monsters during the turn you activate this card. | --海皇の咆哮
--Call of the Atlanteans
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:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCos... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Standby Phase: Toss a coin. If the result is Tails, the following effects are negated until your next Standby Phase. ● When you resolve an "Arcana Force" monster's effect when it is Summoned, choose which effect to apply without tossing a coin. ● If your "Arcana Force" monster destroys an opp... | --光の結界
--Light Barrier
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Toss a coin during the Standby Phase
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a monster that is not a "Burning Abyss" monster, destroy this card. You can only use 1 of these effects of "Calcab, Malebranche of the Burning Abyss" per turn, and only once that turn. ● If you control no Spell/Trap Cards: You can Special Summon this card from your hand. ● If this card is sent to the Gra... | --彼岸の悪鬼 ハックルスパー
--Calcab, Malebranche of the Burning Abyss
local s,id=GetID()
function s.initial_effect(c)
--self destroy
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_SELF_DESTROY)
e1:SetCondition(s.sdcon)
c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner Synchro Monster + 1+ non-Tuner monsters Must be either Synchro Summoned, or Special Summoned from your Extra Deck by banishing 1 Tuner Synchro Monster and 1 "Black-Winged Dragon" from your face-up Monster Zone and/or GY. Each time your opponent activates a monster effect, place 1 Black Feather Counter on this c... | --ブラックフェザー・アサルト・ドラゴン
--Black-Winged Assault Dragon
--scripted by Cybercatman
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(COUNTER_FEATHER)
--Synchro Summon procedure
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_SYNCHRO),1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Standby Phase, you must pay 500 LP (this is not optional), or this card is destroyed. When resolving an opponent's card effect that targets this card, roll a six-sided die and negate that effect if you roll a 3, and if you do, destroy that card. Your opponent's monsters cannot attack any "Arc... | --ヘルポーンデーモン
--Vilepawn Archfiend
local s,id=GetID()
function s.initial_effect(c)
--Once per turn, during your Standby Phase, you must pay 500 LP (this is not optional), or this card is destroyed
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_CANNOT_DI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Fusion Monster that lists "Elemental HERO Neos" as material: Target 1 "HERO" Fusion Monster in your GY; Special Summon it, ignoring its Summoning conditions. You can only activate 1 "Double Hero Attack" per turn. | --ダッブルヒーローアタック
--Double Hero Attack
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,id,EFFECT_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] All Fusion Monsters you control gain 300 ATK. Once per turn, if a "Frightfur" Fusion Monster(s) is Fusion Summoned to your field (except during the Damage Step): You can draw 1 card. ---------------------------------------- [ Monster Effect ] If this card is Special Summoned: You can inflict 200 dam... | --エッジインプ・コットン・イーター
--Edge Imp Cotton Eater
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetRange(LOCATION_PZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish 1 face-up Fish, Sea Serpent, or Aqua monster you control; draw 2 cards. You can only activate 1 "Moray of Avarice" per turn. | --貪欲なウツボ
--Moray of Avarice
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Draw 2 cards
local e1=Effect.CreateEffect(c)
e1:SetCategory(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 face-up "Alien" monster you control. Destroy it and distribute new A-Counters equal to its Level among your opponent's face-up monsters. | --「A」細胞散布爆弾
--"A" Cell Scatter Burst
local s,id=GetID()
function s.initial_effect(c)
--counter
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_COUNTER+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(s.target)
e1:SetOper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Flower Cardian" monster in your Graveyard; add it to your hand, then you can Special Summon 1 "Flower Cardian" monster from your hand, ignoring its Summoning conditions. If this card is sent to the Graveyard by a "Flower Cardian" monster's effect: You can excavate the top 5 cards of your Deck, and if you do, ... | --札再生
--Recardination
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Link-4 or higher monster: Destroy monsters your opponent controls, up to the number of Link-3 or higher monsters you control. You can only activate 1 "Link Hole" per turn. | --リンケージ・ホール
--Link Hole
--Scripted by Eerie Code
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:SetCountLimit(1,id)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Gladiator Beast" monsters Must first be Special Summoned (from your Extra Deck) by shuffling the above cards you control into the Deck. (You do not use "Polymerization".) | --剣闘獣エセダリ
--Gladiator Beast Essedarii
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_GLADIATOR),2)
Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit)
end
s.listed_series={SET_GLADIATOR}
s.mat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Link Monster you control and 1 monster your opponent controls; destroy them, then draw 1 card. You can only activate 1 "Link Burst" per turn. | --リンク・バースト
--Link Burst
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
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: | 2 Level 4 LIGHT monsters Once per turn: You can detach 1 material from this card; send your entire hand to the GY (min. 1), and if you do, draw 2 cards. When this card you controlled while face-up leaves the field because of an opponent's card effect: You can target Level 4 Beast-Warrior "Bujin" monsters in your GY, up... | --武神帝-ツクヨミ
--Bujintei Tsukuyomi
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_LIGHT),4,2)
c:EnableReviveLimit()
--draw
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: | Cannot be Normal Summoned/Set. Must first be Special Summoned (from your hand) while the total ATK of all monsters your opponent controls is more than that of all monsters you control. You can target any number of Beast, Beast-Warrior, and/or Winged Beast monsters you control; return them to the hand, then, return face... | --獣王アルファ
--Alpha, the Master of Beasts
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special Summon from the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters, including a WATER monster (This card is always treated as a "Familiar-Possessed" card.) You can target 1 WATER monster in your opponent's GY; Special Summon it to your zone this card points to. If this Link Summoned card is destroyed by battle, or is destroyed by an opponent's card effect while in its owner... | --清冽の水霊使いエリア
--Eria the Water Charmer, Gentle
local s,id=GetID()
function s.initial_effect(c)
--Link summon
Link.AddProcedure(c,nil,2,2,s.lcheck)
c:EnableReviveLimit()
--Special Summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_SPECIAL_SUMMON)
e2:SetType(EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Target 1 LIGHT 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. | --光霊使いライナ
--Lyna the Light 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:SetOp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Tribute Summoned by Tributing at least 1 "roid" monster: Banish all Spells and Traps on the field. | --アーマロイドガイデンゴー
--Armoroid
local s,id=GetID()
function s.initial_effect(c)
--summon success
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCondition(s.condition)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Rokket" monsters If you control a "Borrel" Link Monster while this card is in your GY: You can Tribute 1 Link-3 or lower monster; Special Summon this card, but it cannot be used as material for the Link Summon of a monster with the same Link Rating as the Tributed monster. You can only use this effect of "Miniborrel... | --ショートヴァレル・ドラゴン
--Miniborrel Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_ROKKET),2,2)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetTyp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Plant monsters During the Main Phase (Quick Effect): You can target 1 Effect Monster your opponent controls; take damage equal to its ATK, and if you did take damage, return it to the hand. If this card is in your GY: You can banish 2 or more Link Monsters from your GY whose combined Link Ratings equal exactly 4; Sp... | --サムサリック・サイクルのベンガランス
--Benghalancer the Resurgent
--Scripted by Kohana Sonogami
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_PLANT),2)
c:EnableReviveLimit()
--tohand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters Gains 500 ATK/DEF for each Winged Beast monster you control, except this card. Once per turn: You can detach 1 material from this card; add 1 Level 4 DARK Winged Beast monster from your Deck to your hand. | --RR-フォース・ストリクス
--Raidraptor - Force Strix
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--atk/def
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 of your banished monsters and 1 of your opponent's banished monsters; Special Summon your monster to your opponent's field, and if you do, Special Summon that opponent's monster to your field. You can only activate 1 "Alpha Summon" per turn. | --魔法名-「解体し統合せよ」
--Alpha Summon
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon monsters
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:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Neither player can Special Summon monsters, except WIND monsters. | --烈風の結界像
--Barrier Statue of the Stormwinds
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)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While equipped with a "Noble Arms" Equip Spell Card, this card becomes DARK and its Level is increased by 1. If this card is sent to the Graveyard while equipped with a "Noble Arms" Equip Spell Card: Target 1 "Noble Arms" card in your Graveyard; add that target to your hand. | --聖騎士パーシヴァル
--Noble Knight Peredur
local s,id=GetID()
function s.initial_effect(c)
--Attribute Dark
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e2:SetCode(EFFECT_CHANGE_ATTRIBUTE)
e2:SetRange(LOCATION_MZONE)
e2:SetCondition(s.eqcon2)
e2:SetValue(ATTRIB... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can Fusion Summon 1 Fiend Fusion Monster from your Extra Deck, using monsters from your hand or field as material. You can only use this effect of "Dark Contract with the Swamp King" once per turn. If Summoning a "D/D" Fusion Monster this way, you can also banish monsters from your GY as mat... | --魔神王の契約書
--Dark Contract with the Swamp King
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)
--Fusion summon 1 Fiend monster
local params = {fusfilter=aux.FilterBoolFunction(Card.IsRace,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Illusion monster + 1 LIGHT Spellcaster monster Monsters your opponent controls lose 500 ATK/DEF for each "Azamina" monster you control. You can only use each of the following effects of "Azamina Mu Rcielago" once per turn. If this card is Fusion Summoned: You can add 1 "Azamina" or "Sinful Spoils" card from your Deck... | --告死聖徒ルシエラーゴ
--Azamina Mu Rcielago
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: 1 Illusion monster + 1 LIGHT Spellcaster monster
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsRace,RACE_ILLUSION),s.matfilter)
--Monsters your opponent c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with "White Dragon Ritual". At the start of the Damage Step, if this card attacks a face-down Defense Position monster: Destroy that face-down monster. You can Tribute this card; Special Summon 1 "Blue-Eyes White Dragon" from your hand or Deck, but "Blue-Eyes White Dragon" cannot attack ... | --白竜の聖騎士
--Paladin of White Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_START)
e1:SetCond... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Loses 1000 ATK while you control "Iron Hans". If this card on the field is destroyed by battle or sent to the GY by a card effect: You can add 1 "Iron Hans" from your Deck to your hand, or, if "Golden Castle of Stromberg" is in a Field Zone, you can add 1 Warrior monster from your Deck to your hand, instead. You can on... | --鉄の騎士
--Iron Knight
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetCondition(s.atkcond)
e1:SetValue(-1000)
c:RegisterEff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Gains 1000 ATK each time your opponent activates a monster effect. If your opponent activates a monster effect in their hand, GY, or banishment (except during the Damage Step): You can Special Summon this card from your GY (if it was there when they activated) or hand (even if not), but destroy it during the End Phase.... | --夢幻吸収体
--Neverending Nightmare Absorber
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand or GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_FIELD+E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Each player can banish up to 3 cards in their opponent's GY. * The above text is unofficial and describes the card's functionality in the OCG. | --ディメンション・ポッド
--Dimension Jar
local s,id=GetID()
function s.initial_effect(c)
--Banish
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
en... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When using this card as Synchro Material, the other Synchro Materials must be 2 "Nordic" monsters in your hand. | --極星霊スヴァルトアールヴ
--Mara of the Nordic Alfar
local s,id=GetID()
function s.initial_effect(c)
--hand synchro
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_SINGLE)
e3:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e3:SetCode(EFFECT_HAND_SYNCHRO)
e3:SetLabel(id)
e3:SetValue(s.synval)
c:Regist... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can banish this card from your GY, then target 1 Fish monster you control; it gains 500 ATK until the end of this turn. During the Standby Phase of the next turn after this card was banished: You can Special Summon this banished card. During your opponent's Main Phase, if this card was Special Summoned this turn, y... | --ゴーティスの妖精シフ
--Shif, Fairy of the Ghoti
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Increase the ATK of 1 Fish monster by 500
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can send 1 non-LIGHT "Super Quant" monster from your hand or face-up field to the GY; Special Summon this card from your hand in Defense Position. When this card is Normal or Special Summoned: You can send 1 "Super Quant" monster from your Deck to the GY, and if you do, this card's Attribute and Level become the sa... | --超量士ホワイトレイヤー
--Super Quantum White Layer
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card gains 200 ATK for each "Geargia" monster you control. You can Tribute this card; Special Summon 1 "Geargia" monster from your Deck in Defense Position, except "Geargiarsenal". | --ギアギアーセナル
--Geargiarsenal
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:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(s.atkval)
c:RegisterEffect(e1)
--spsummon
local e2... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Add 1 Equip Spell from your Deck to your hand. | --名工 虎鉄
--Iron Blacksmith Kotetsu
local s,id=GetID()
function s.initial_effect(c)
--flip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:Reg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 8 DARK monsters Must be Xyz Summoned. Once per turn (Quick Effect): You can detach 1 material from this card and send 1 card from your hand to the GY, then target 1 face-up card your opponent controls; change this card to Defense Position, and if you do, negate that targeted card's effects, until the end of thi... | --No.22 不乱健
--Number 22: Zombiestein
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 8 DARK monsters
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_DARK),8,2)
c:AddMustBeXyzSummoned()
--Change this card to Defense Position, and if you do... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Dark Magician" + 1 Warrior monster Gains 100 ATK for each Spell/Trap on the field and in the GYs. If this card attacks a Defense Position monster, inflict piercing battle damage. When a card or effect is activated that targets a card on the field (Quick Effect): You can discard 1 card; negate the activation, and if yo... | --超魔導騎士-ブラック・キャバルリー
--Dark Cavalry
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,CARD_DARK_MAGICIAN,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WARRIOR))
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Set 2 Field Spells with different names from your Deck on the field (1 on your field, and 1 on your opponent's field). While either of those cards remain Set on the field, neither player can activate or Set other Field Spells. | --盆回し
--Set Rotation
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
function s.filter(c)
return c:IsType(TYPE_FIELD) and c:IsSSet... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the GY, except from the field, while another "Photon" or "Galaxy" monster is on your field or in your GY: You can Special Summon this card in Defense Position. You can only use this effect of "Photon Emperor" once per turn. After you Normal or Special Summon this card, you can Normal Summon 1 LI... | --フォトン・エンペラー
--Photon Emperor
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Special Summon this card in Defense Position
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:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Genex" Tuner + 1 or more non-Tuner WIND monsters Your opponent cannot select this card as an attack target. If this card destroys an opponent's monster by battle, you can add 1 "Genex" monster from your Deck to your hand. | --レアル・ジェネクス・ヴィンディカイト
--Vindikite R-Genex
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_GENEX),1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_WIND),1,99)
c:EnableReviveLimit()
--untargetable
local e1=Effect.CreateEffect(c)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned by card effect. While there are 2 cards in the Field Zones, your opponent cannot target this card with card effects. You can only use each of the following effects of "Jungle Dweller" once per turn. You can banish 1 LIGHT or DARK monster from your GY; Special Summ... | --密林に潜む者
--Jungle Dweller
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableUnsummonable()
c:AddMustBeSpecialSummonedByCardEffect()
--Cannot be targeted by opponent's card effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Destroy as many face-up Spells/Traps on the field as possible, except this card, and if you do, each player takes damage equal to the total number of cards destroyed by this effect x 300. | --妖精の風
--Fairy Wind
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, if a monster is Fusion Summoned to your field (except during the Damage Step): You can add 1 "Performapal", "Odd-Eyes", or "Magician" Pendulum Monster from your GY or face-up in your Extra Deck to your hand. ---------------------------------------- [ Monster Effect ] Once per turn, du... | --EMユーゴーレム
--Performapal U Go Golem
local s,id=GetID()
function s.initial_effect(c)
Pendulum.AddProcedure(c)
--add card to the hand
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetRange(LOCATION_PZONE)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned while your opponent controls a Special Summoned monster: You can target 1 "Blackwing" Tuner in your GY; you cannot Special Summon monsters from the Extra Deck for the rest of this turn, except "Blackwing" monsters, also Special Summon that monster, but its effects are negated. | --BF-逆巻のトルネード
--Blackwing - Tornado the Reverse Wind
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Level 4 or lower Dragon monster If this card is Link Summoned: You can add 1 "Boot Sector Launch" from your Deck to your hand. You can target 1 face-up monster you control and 1 "Rokket" monster in your GY; destroy that monster on the field, and if you do, add that other monster from the GY to your hand. You can only... | --ストライカー・ドラゴン
--Striker Dragon
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure
Link.AddProcedure(c,s.matfilter,1,1)
--Add 1 "Boot Sector Launch" from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 7 monsters During each Standby Phase: You can Special Summon 1 "Kashtira" monster from your Deck. You can only use the previous effect of "Kashtira Shangri-Ira" once per turn. Each time a card(s) your opponent owns and possesses is banished face-down (except during the Damage Step): You can choose 1 unused Mai... | --クシャトリラ・シャングリラ
--Kashtira Shangri-Ira
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2+ Level 7 monsters
Xyz.AddProcedure(c,nil,7,2,nil,nil,Xyz.InfiniteMats)
--Special Summon 1 "Kashtira" monster from your Deck
local e1=Effect.CreateEffect(c)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Summoned unless you control a face-up "Wicked-Breaking Flamberge - Baou". When this card destroys an opponent's monster by battle and sends it to the Graveyard: It gains 1000 ATK. Negate the effects of monsters destroyed by battle with this card. | --ガーディアン・バオウ
--Guardian Baou
local s,id=GetID()
function s.initial_effect(c)
--sum limit
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_SUMMON)
e1:SetCondition(s.sumlimit)
c:RegisterEffect(e1)
local e2=e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. During the End Phase of the turn this card is Normal Summoned or flipped face-up: Return it to the hand. When this card is Normal Summoned or flipped face-up: Negate all Trap Card effects on the field, until the End Phase. You must control another face-up "Gishki" monster to activate and to ... | --リチュア・エミリア
--Gishki Emilia
local s,id=GetID()
function s.initial_effect(c)
Spirit.AddProcedure(c,EVENT_SUMMON_SUCCESS,EVENT_FLIP)
--Cannot be Special Summoned
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a Link Monster(s) you control is destroyed by battle or an opponent's card effect: You can target 1 monster in your GY, except a Link Monster; Special Summon it in Defense Position. You can only use this effect of "Cynet Recovery" once per turn. | --サイバネット・リカバー
--Cynet Recovery
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--special summon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | All Gemini monsters that were on your side of the field when this card was activated are treated as Effect Monsters, and gain their effect(s). During the End Phase of this turn, Set all monsters affected by this card's effect. | --フォース・リリース
--Unleash Your Power!
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
s.listed_card_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Select 1 face-up monster your opponent controls during each of your Standby Phases. It loses 500 ATK until the end of this turn. | --アマゾネスの吹き矢兵
--Amazoness Blowpiper
local s,id=GetID()
function s.initial_effect(c)
--atkdown
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_PHASE|... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate 1 of these effects, also, after that, Set this card face-down instead of sending it to the GY. ● Send 1 monster from your hand or face-up field to the GY, and if you do, add 1 Flip monster from your Deck to your hand with the same Attribute, but a different name, as that monster before it was sent to the GY. ●... | --サブテラーの継承
--Subterror Succession
--scripted by Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
--Activate (Send monster to GY to add flip monster)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | The face-up monster(s) with the highest ATK on the field is unaffected by the effects of Spell Cards. When "Pole Position" is removed from the field, destroy the face-up monster(s) with the highest ATK on the field. | --ポールポジション
--Pole Position
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)
local g=Group.CreateGroup()
g:KeepAlive()
--Adjust
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters When this card is Synchro Summoned: You can destroy all cards on the field. Once per turn: You can banish 1 Plant monster from your GY, then target 1 Defense Position monster your opponent controls; change that target to face-up Attack Position, and if you do, its ATK becomes 0 until the... | --ブラック・ローズ・ドラゴン
--Black Rose 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... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 "Metalfoes" Fusion Monster from your Extra Deck, using monsters from your hand or field as Fusion Materials. If this card is in your GY: You can shuffle it into the Deck, then draw 1 card. You can only use this effect of "Metalfoes Fusion" once per turn. | --錬装融合
--Metalfoes Fusion
local s,id=GetID()
function s.initial_effect(c)
--Activate
c:RegisterEffect(Fusion.CreateSummonEff(c,aux.FilterBoolFunction(Card.IsSetCard,SET_METALFOES)))
--draw
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW)
e2:SetDescription(aux.Stringid(id,1))
e2:SetTy... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate by paying 1000 LP. Monsters that are banished, as well as monsters in the GY, cannot activate their effects. | --ソウルドレイン
--Soul Drain
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(Cost.PayLP(1000))
c:RegisterEffect(e1)
--
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetProperty(EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the Main Phase (Quick Effect): You can send this card from your hand or field to the GY; Special Summon 1 "Labrynth" monster, or Set 1 Normal Trap, from your hand. The Set Normal Trap can be activated this turn. When your opponent activates a card or effect in response to your card or effect activation of a Norm... | --白銀の城の執事 アリアス
--Arias the Labrynth Butler
--Ashaki
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Labrynth" monster, or Set 1 Normal Trap, from your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_QUICK_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 Spellcaster monster; add up to 2 copies of "Dark Magician" from your Deck and/or GY to your hand. You can only activate 1 "Illusion Magic" per turn. | --イリュージョン・マジック
--Illusion Magic
local s,id=GetID()
function s.initial_effect(c)
--Add up to 2 "Dark Magician" to the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCount... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn: You can discard this card, then target 1 Psychic-Type monster you control; banish it until your next Standby Phase. | --タイム・エスケーパー
--Time Escaper
local s,id=GetID()
function s.initial_effect(c)
--remove
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetRange(LOCATION_HAND)
e1:SetCode(EVENT_FREE_CHAI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Add 1 Field Spell from your Deck to your hand. | --テラ・フォーミング
--Terraforming
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:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a monster(s) is Special Summoned to your side of the field (except during the Damage Step): Target 1 face-up monster your opponent controls; banish that target. If the Summon is an Xyz Summon, you can activate this card the turn it was Set. | --ディメンション・スライド
--Dimension Slice
local s,id=GetID()
function s.initial_effect(c)
--Banish 1 face-up monster
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetCondition(s.condition)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 non-Link "Traptrix" monster This Link Summoned card is unaffected by Trap effects. You can only use each of the following effects of "Traptrix Sera" once per turn, and not during the Damage Step. ● If a Normal Trap Card is activated: You can Special Summon 1 "Traptrix" monster from your Deck with a different name tha... | --セラの蟲惑魔
--Traptrix Sera
--scripted by Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
--Link summon method
c:EnableReviveLimit()
Link.AddProcedure(c,s.matfilter,1,1)
--Unaffected by trap effects, continuous effect
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a "Penguin" monster(s) is sent from your Monster Zone to your GY by an opponent's card, even during the Damage Step: You can target 1 of them; discard this card, and if you do, Special Summon that monster in face-down Defense Position. You can only use this effect of "Penguin Cleric" once per turn. Once per turn: Yo... | --ペンギン僧侶
--Penguin Cleric
--Logical Nonsense
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 of your "Penguin" monsters that was sent from your Monster Zone to your GY by an opponent's card
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_HANDES+CATEGO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a card or effect is activated that includes any of these effects (Quick Effect): You can discard this card; negate that activation. ● Add a card(s) from the GY to the hand, Deck, and/or Extra Deck. ● Special Summon a Monster Card(s) from the GY. ● Banish a card(s) from the GY. You can only use this effect of "Ghos... | --屋敷わらし
--Ghost Belle & Haunted Mansion
local s,id=GetID()
function s.initial_effect(c)
--Negate the activation of a card or effect that includes adding a card(s) to the hand, Deck, and/or Extra Deck, Special Summoning a Monster Card, or banishing a card(s), from the GY
local e1=Effect.CreateEffect(c)
e1:SetDescript... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this face-down Defense Position card is destroyed and sent to the GY: Special Summon it and switch its original ATK/DEF. | --サンドモス
--Sand Moth
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetCondition(s.spcon)
e1:SetTarget(s.spt... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Blackwing" monster other than "Blackwing - Oroshi the Squall", you can Special Summon this card (from your hand). You can only Special Summon "Blackwing - Oroshi the Squall" once per turn this way. If this card is sent to the GY as a Synchro Material: You can target 1 monster on the field; change that... | --BF-突風のオロシ
--Blackwing - Oroshi the Squall
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,EFFECT_COUNT_CODE_OAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 WATER monsters Once per turn: You can detach 1 Xyz Material from this card; reveal any number of WATER monsters from your hand, and place that many Ice Counters on face-up monsters on the field. Non-WATER monsters on the field lose 200 ATK for each Ice Counter on the field. | --スノーダスト・ジャイアント
--Snowdust Giant
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),4,2)
--Place Ice Counters on face-up monsters on the field
local e1=Effect.CreateEffect(c)
e1:SetDescription(a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | (This card is always treated as a "Magistus" and "Witchcrafter" card.) Activate 1 of these effects (but you can only use each effect of "Verre Magic - Lacrima of Light" once per turn); ● If you control a "Magistus" or "Witchcrafter" monster: Send 1 Spellcaster monster or 1 Spell from your Deck to the GY. ● When your op... | --結晶魔術 光の涙
--Verre Magic - Lacrima of Light
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_STANDBY_PHASE|T... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time your opponent draws a card(s), place 1 Spell Counter on this card (max. 5). This card gains 500 ATK for each Spell Counter on it. During the Standby Phase of your next turn after you place the 5th Spell Counter on this card: You can send this card with 5 Spell Counters to the GY; Special Summon 1 "Silent Magi... | --サイレント・マジシャン LV4
--Silent Magician LV4
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(COUNTER_SPELL)
c:SetCounterLimit(COUNTER_SPELL,5)
--draw
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_DRAW)
e1:SetRange(LOCATION_MZONE)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner WIND monsters If this card is Synchro Summoned: You can target 1 "Windwitch" monster in your GY; inflict damage to your opponent equal to half its ATK. You can only use this effect of "Windwitch - Diamond Bell" once per turn. Once per turn, if your opponent takes battle or effect damage: You can ... | --WW-ダイヤモンド・ベル
--Windwitch - Diamond Bell
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Synchro Summon
c:EnableReviveLimit()
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_WIND),1,99)
--Inflict damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have 7 or more DARK monsters in your GY: Banish 5 DARK monsters from your GY; draw 3 cards. | --終わりの始まり
--The Beginning of the End
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:SetCondition(s.condition)
e1:SetCost(s.cost)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 "Black Luster Soldier" monster you control; send it to the Graveyard, and if you do, Special Summon 1 "Black Luster Soldier" monster from your hand with a different name from that monster, ignoring its Summoning conditions. During your Main Phase, except the turn this card was sent to the Graveyard: You can ba... | --転生の超戦士
--Super Soldier Rebirth
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCou... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card attacks, it is changed to Defense Position at the end of the Battle Phase. It cannot change its battle position until the end of your next turn. | --ジャイアント・オーク
--Giant Orc
local s,id=GetID()
function s.initial_effect(c)
--After attacking, change itself to defense position
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_PHASE|PHASE_BATTLE)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCondition(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is destroyed by battle: You can Special Summon 1 Level 2 or lower Warrior-Type monster from your Deck in face-down Defense Position. | --リトルトルーパー
--Little Trooper
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetCondition(s.condition)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent cannot activate cards or effects when you Normal Summon a FIRE Warrior monster. Once per turn: You can send 1 monster from your hand or face-up field to the GY; Special Summon 1 "Flame Swordsman" from your Extra Deck. (This is treated as a Fusion Summon.) Once per turn, when a monster declares an attack: ... | --炎の剣域
--Flame Swordsrealm
--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)
--Opponent cannot activate cards or effects when you Normal Summon a FIRE Warrior monster
loc... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 face-up monster you control; it gains 400 ATK until the end of this turn. During your turn, except the turn this card was sent to the GY: You can banish this card from your GY, then target 1 face-up monster you control; that target gains 800 ATK until the end of this turn. | --スキル・サクセサー
--Skill Successor
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, if you activate a Spell Card: This card gains 300 ATK. (Quick Effect): You can target 1 Continuous Spell you control; return it to the hand, then you can activate 1 "Magician" Continuous Spell from your hand. You can only use this effect of "Performapal Sky Magician" once per turn. If this face-up card l... | --EMスカイ・マジシャン
--Performapal Sky Magician
local s,id=GetID()
function s.initial_effect(c)
--atk up
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_CHAINING)
e1:SetRange(LOCATION_MZONE)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a Spell Card is activated, place 1 Spell Counter on this card when that Spell resolves (max. 3). You can Tribute this card with 3 Spell Counters on it; Special Summon 1 "Dark Magician" from your hand, Deck, or GY. | --熟練の黒魔術師
--Skilled Dark Magician
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(COUNTER_SPELL)
c:SetCounterLimit(COUNTER_SPELL,3)
--add counter
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_FIELD)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e0:SetCode(EVENT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | While a Field Spell Card is face-up on the field, this card gains 1000 ATK. | --オヤコーン
--Papa-Corn
local s,id=GetID()
function s.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetCondition(s.condtion)
e1:SetValue(1000)
c:RegisterEffect(e1)
end
function... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card gains 500 ATK and DEF for each Fish, Sea Serpent, or Aqua-Type monster in your Graveyard. | --深海の怒り
--Rage of the Deep Sea
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:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(s.atkup)
c:RegisterEffect(e1)
local e2=e1:Clone... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn, if a Normal Monster you control destroys an opponent's monster by battle, after damage calculation: You can add 1 Level 4 or higher Normal Monster from your Deck to your hand. ---------------------------------------- [ Flavor Text ] Armed with muskets and iron spears, these mounted la... | --ドラコニアの獣竜騎兵
--Dragoons of Draconia
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--to hand
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e2:SetCode(EVENT_BATTLED)
e2:SetRange(LOCAT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a "Genex" monster is added from your Deck to your hand, you can reveal that monster to Special Summon it. | --レアル・ジェネクス・アクセラレーター
--R-Genex Accelerator
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:SetRange(LOCATION_MZONE)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVEN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each face-up "X-Saber" monster on the field gains 100 ATK x its Level, and loses 100 DEF x its Level. | --セイバー・ヴォールト
--Saber Vault
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
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Your opponent must pay 500 LP to declare an attack. If this card is Normal or Special Summoned and you control no other monsters: You can Special Summon 1 "Ki-sikil" monster from your hand or Deck. You can only use this effect of "Live☆Twin Lil-la" once per turn. | --Live☆Twin リィラ
--Live☆Twin Lil-la
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--If normal summoned, special summon 1 "Kisikil" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Standby Phase: Your opponent declares 1 card type (Monster, Spell, or Trap). Excavate the top card of your Deck, then if it is that type of card, your opponent draws 1 card. Otherwise, discard 1 random card from their hand. Place the excavated card on the bottom of your Deck. | --鬼くじ
--Onikuji
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_STANDBY_PHASE,0)
c:RegisterEffect(e1)
--instant(chain)
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to "SPYRAL Super Agent". It gains 1000 ATK. If it destroys your opponent's monster by battle: You can banish both the opponent's destroyed monster and 1 other card your opponent controls. When this face-up card on the field is destroyed and sent to the Graveyard: You can target 1 "SPYRAL Super Agent" in your... | --SPYRAL GEAR-エクストラアームズ
--SPYRAL GEAR - Fully Armed
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsCode,41091257))
--atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(1000)
c:RegisterEffect(e2)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the Graveyard for the Synchro Summon of a LIGHT Synchro Monster: Gain 1000 Life Points. | --サニー・ピクシー
--Sunny Pixie
local s,id=GetID()
function s.initial_effect(c)
--lp rec
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BE_MATERIAL)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is treated as a Normal Monster while face-up on the field or in the GY. While this card is a Normal Monster on the field, you can Normal Summon it to have it become an Effect Monster with this effect. ● Once per turn: You can target 1 face-up card on the field that you can place a Spell Counter on; place 1 Sp... | --クルセイダー・オブ・エンディミオン
--Crusader of Endymion
local s,id=GetID()
function s.initial_effect(c)
Gemini.AddProcedure(c)
--Place 1 Spell Counter
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_COUNTER)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.