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 you control a Level 2 or lower monster, you can Special Summon this card (from your hand) in Defense Position. You can only Special Summon "White Steed of the Floral Knights" once per turn this way. When an opponent's monster declares an attack: You can banish this card from your GY, then target 1 card you control; ... | --花騎士団の白馬
--White Steed of the Floral Knights
--scripted by Rundas
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_SPSUM_PARAM)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a monster(s) is Summoned: This turn, that face-up monster(s) cannot attack, its effects are negated, also it cannot be used as material for a Fusion, Synchro, Xyz, or Link Summon. | --ワーニングポイント
--Warning Point
--Scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate on Normal, Flip, or Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Link Monster your opponent controls or is in their GY; draw cards equal to its Link Rating, then, if you have 2 or more cards in your hand, place 2 cards from your hand on the bottom of your Deck in any order. You can only activate 1 "Saryuja's Shackles" per turn. | --蛇龍の枷鎖
--Saryuja's Shackles
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned: You can target 1 "Lunalight" monster you control, except "Lunalight Blue Cat"; its ATK becomes double its original ATK until the end of this turn. You can only use this effect of "Lunalight Blue Cat" once per turn. If this card on the field is destroyed by battle or card effect: You ca... | --月光蒼猫
--Lunalight Blue Cat
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_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_CARD_TAR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 8 monsters Once per turn, you can also Xyz Summon "P.U.N.K. JAM FEVER!" by using a "P.U.N.K." Fusion or Synchro Monster you control. You can pay 600 LP, then detach 1 material from this card; draw 1 card. When another monster's effect is activated and you have a Level 3 Psychic monster in your GY (Quick Effect)... | --P.U.N.K.JAM FEVER!
--P.U.N.K. JAM FEVER!
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 8 monsters, or 1 "P.U.N.K." Fusion or Synchro Monster
Xyz.AddProcedure(c,nil,8,2,s.ovfilter,aux.Stringid(id,0),2,s.xyzop)
--Draw 1 card
local e1=Effe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Blue-Eyes White Dragon" + 1 Dragon monster Must first be either Fusion Summoned, or Special Summoned from your Extra Deck by Tributing 1 "Blue-Eyes White Dragon" equipped with a Fusion Monster. Unaffected by Trap Cards or effects. This card can attack all monsters your opponent controls, once each. Once per turn, at t... | --ブルーアイズ・タイラント・ドラゴン
--Blue-Eyes Tyrant Dragon
--Scripted by the Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Fusion Summon
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,CARD_BLUEEYES_W_DRAGON,aux.FilterBoolFunctionEx(Card.IsRace,RACE_DRAGON))
--Alt. Special Summon procedure
local e1=Effect.Creat... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Any monster destroyed by battle is shuffled into the Deck instead of going to the GY. | --グレイヴ・キーパー
--Grave Protector
local s,id=GetID()
function s.initial_effect(c)
--todeck
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_TO_GRAVE_REDIRECT)
e1:SetRange(LOCATION_MZONE)
e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE)
e1:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE)
e1:SetT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | At the start of the Damage Step, if your Normal Monster battles an opponent's monster: You can reveal this card in your hand; discard 1 card, and if you do, your monster cannot be destroyed by that battle. At the start of the Damage Step, if this card battles an opponent's monster: You can reveal 1 Normal Monster in yo... | --氷河のアクア・マドール
--Glacier Aqua Madoor
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Battle protection
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_START)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card cannot be Normal Summoned or Set. This card cannot be Special Summoned except by removing from play 3 LIGHT Fairy-Type monsters and 1 DARK Fiend monster in your Graveyard. Once per turn, you can remove from play 1 face-up monster on the field. If you activate this effect, this card cannot attack during this t... | --天魔神 エンライズ
--Sky Scourge Enrise
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Must be special summon by its own method
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SIN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card attacks directly, it gains 500 ATK during the Damage Step only. | --エトワール・サイバー
--Etoile Cyber
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(500)
c:RegisterEffect(e1)
end
f... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Fiendsmith" Fusion Monster + 1 Fusion or Link Monster Unaffected by card effects, except "Fiendsmith" cards, while equipped with a "Fiendsmith" Equip Spell. You can only use each of the following effects of "Fiendsmith's Rextremende" once per turn. If this card is Fusion Summoned: You can discard 1 card; send 1 LIGH... | --刻まれし魔レクストレメンデ
--Fiendsmith's Rextremende
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Materials: 1 "Fiendsmith" Fusion Monster + 1 Fusion or Link Monster
Fusion.AddProcMix(c,true,true,s.matfilter,aux.FilterBoolFunctionEx(Card.IsType,TYPE_FUSION|TYPE_LINK))
--Un... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a LIGHT Warrior-Type monster. Remove from play any monsters that battle with it at the end of Damage Step. | --ライトイレイザー
--Light Laser
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,s.filter)
--remove
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(id,0))
e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e3:SetCategory(CATEGORY_REMOVE)
e3:SetCode(EVENT_BATTLED)
e3:SetRange(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Set this card from your hand to your Spell & Trap Zone as a Spell Card. During your opponent's turn, if this Set card in the Spell & Trap Zone is destroyed and sent to your Graveyard: Special Summon it. If this card is Special Summoned during your opponent's turn: Your opponent cannot target "Artifact" monsters... | --アーティファクト-アキレウス
--Artifact Achilleshield
local s,id=GetID()
function s.initial_effect(c)
--set
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MONSTER_SSET)
e1:SetValue(TYPE_SPELL)
c:RegisterEffect(e1)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(i... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send up to 3 cards from your hand to the GY; draw that many cards, then you can Special Summon up to that many monsters from your hand, with different names, that are "Performapal" monsters, "Magician" Pendulum Monsters, and/or "Odd-Eyes" monsters, each with a Level between the Pendulum Scales of the 2 cards in your Pe... | --EMポップアップ
--Performapal Popperup
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control "Crystal Skull", "Ashoka Pillar", and "Cabrera Stone": Destroy all cards on the field, also for the rest of this turn, your opponent takes any effect damage you would have taken instead. You can banish this card from your GY, then target 1 each of "Crystal Skull", "Ashoka Pillar", and "Cabrera Stone" in ... | --トライアングル-O
--Triangle O
--Scripted by Hatter
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_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can target 1 "Melodious" monster you control; it gains 800 ATK until your next Standby Phase (even if this card leaves the field). You can send this card to the Graveyard; Fusion Summon 1 "Melodious" Fusion Monster from your Extra Deck, using monsters you control as Fusion Materials. | --フォルテッシモ
--Fortissimo
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)
--atkup
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_ATKCHANGE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 monster you control with "Guardian" in its original name, that cannot be Normal Summoned/Set; it can make a second attack during each Battle Phase this turn. You can banish this card from your GY, then target 1 "Guardian" monster in your GY that cannot be Normal Summoned/Set, and activate 1 of these ef... | --プリンシパグ
--Principug
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Make 1 "Guardian" monster that cannot be Normal Summoned/Set able to attack twice
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, when a face-up FIRE monster(s) you control is destroyed by a card effect, place 1 counter on this card for each destroyed FIRE monster. During either player's Standby Phase: You can send this card to the Graveyard; inflict 1000 damage to your opponent for each counter on this card. | --キックファイア
--Kickfire
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x2d)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--add counter
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_C... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Elemental HERO Neos" + "Neo-Spacian Air Hummingbird" This card can only be Special Summoned from your Extra Deck by returning the above cards you control to the Deck. (You do not use "Polymerization".) While your Life Points are lower than your opponent's, this card gains ATK equal to the difference. This card returns... | --E・HERO エアー・ネオス
--Elemental HERO Air Neos
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,CARD_NEOS,54959865)
Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit)
aux.EnableNeosReturn(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card declares an attack, you can take control of 1 face-up Attack Position monster your opponent controls, and attack with it instead of this monster. It cannot attack your opponent directly. Return it to your opponent at the end of the Battle Phase. | --ミュータント・ハイブレイン
--Mutant Mindmaster
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_TRIGGER_O)
e1:SetCode(EVENT_ATTACK... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 4 monsters Once per turn, you can also Xyz Summon "Zoodiac Tigermortar" by using 1 "Zoodiac" monster you control with a different name as Xyz Material. (If you used an Xyz Monster, any Xyz Materials attached to it also become Xyz Materials on this card.) This card gains ATK and DEF equal to the ATK and DEF of a... | --十二獣タイグリス
--Zoodiac Tigermortar
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,4,3,s.ovfilter,aux.Stringid(id,0),3,s.xyzop)
c:EnableReviveLimit()
--atk
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetProperty(EFFECT_FLAG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Warrior monsters Gains ATK equal to the combined Link Ratings of all other Link Monsters you control x 200. This Link Summoned card is unaffected by other cards' effects. You can Tribute 1 "Gouki" Link Monster, then target cards on the field, up to its Link Rating; destroy them. You can only use this effect of "Gouk... | --剛鬼ザ・パワーロード・オーガ
--Gouki The Powerload Ogre
--Anime version by Larry126
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WARRIOR),2)
c:EnableReviveLimit()
--immune
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can add 1 "Battlin' Boxer" monster or 1 "Counter" Counter Trap from your Deck to your hand, except "Battlin' Boxer Uppercutter". If this card is sent to the GY by card effect: You can activate 1 of these effects; ● Special Summon 1 "Battlin' Boxer" monster from your GY, e... | --BK アッパーカッター
--Battlin' Boxer Uppercutter
--Scripted by Satella
local s,id=GetID()
function s.initial_effect(c)
--Add 1 "Battlin Boxer" monster or 1 "Counter" Counter Trap from your Deck to your hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 4 Level 5 monsters When an opponent's monster declares an attack: You can destroy all cards your opponent controls. If this card has "Number 69: Heraldry Crest" as material, it gains this effect. ● Once per turn: You can detach 1 material from this card, then target 1 face-up Xyz Monster your opponent controls; this ca... | --CNo.69 紋章死神カオス・オブ・アームズ
--Number C69: Heraldry Crest of Horror
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,5,4)
c:EnableReviveLimit()
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is sent to your GY: Shuffle it into your Deck. | --迷犬マロン
--Outstanding Dog Marron
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:SetCode(EVENT_TO_GRAVE)
e1:SetTarget(s.target)
e1:SetOperation(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Ritual Beast" monster: Destroy monsters on the field up to the number of "Ritual Beast" monsters you currently control. | --霊獣の連契
--Ritual Beast Steeds
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)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: Add 1 "The Winged Dragon of Ra" or 1 card that mentions it from your Deck to your hand, except "The True Sun God". Monsters, except "The Winged Dragon of Ra", cannot attack the turn they are Special Summoned. Once per turn, during your Main Phase: You can send this card from the field, or 1... | --真なる太陽神
--The True Sun God
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Search "The Winged Dragon of Ra" or 1 card that mentions it
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal Summoned: You can add 1 Level 4 or lower FIRE Dragon monster from your Deck to your hand. You can only use this effect of "Dora Dora" once per turn. Once per turn, during your Main Phase: You can excavate the top card of your Deck, and if it is a FIRE Dragon monster, send it to the GY, and if you... | --ドラ・ドラ
--Dora Dora
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Search 1 Level 4 or lower FIRE Dragon monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a LIGHT or DARK monster(s) would be Summoned: Pay 2000 LP; negate the Summon of the LIGHT and DARK monster(s), and if you do, banish it. | --混沌の落とし穴
--Chaos Trap Hole
local s,id=GetID()
function s.initial_effect(c)
--Activate(summon)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DISABLE_SUMMON+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SUMMON)
e1:SetCondition(s.condition)
e1:SetCost(Cost.PayLP(2000))
e1:SetTarget(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reveal 1 "Iron Core of Koa'ki Meiru" in your hand. Destroy all face-down Spell and Trap Cards your opponent controls. | --レクリスパワー
--Reckoned Power
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,TIMING_END_PHASE)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You cannot Pendulum Summon monsters, except "D/D" monsters. This effect cannot be negated. Once per turn, during your Standby Phase: Reduce this card's Pendulum Scale by 2 (min. 1), then destroy all monsters you control with a Level greater than or equal to this card's Pendulum Scale, except "D/D" m... | --DD魔導賢者ケプラー
--D/D Savant Kepler
local s,id=GetID()
function s.initial_effect(c)
--Pendulum Summon
Pendulum.AddProcedure(c)
--Cannot Pendulum Summon monsters, except "D/D" monsters
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_CANNOT_DISABLE+EFF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Blackwing" monster, you can Normal Summon this card without Tributing. When this card is Normal Summoned: You can target 1 monster your opponent controls; change that target's battle position. | --BF-漆黒のエルフェン
--Blackwing - Elphin the Raven
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)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by returning 1 "U.A." monster you control to the hand, except "U.A. Libero Spiker". You can only Special Summon "U.A. Libero Spiker" once per turn this way. During your opponent's Main Phase (Quick Effect): You can shuffle 1 Level 5 or higher "U.A." monster from your ha... | --U.A.リベロスパイカー
--U.A. Libero Spiker
--Scripted by AlphaKretin
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:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPY... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters Cannot attack unless it has Xyz Material. Once per turn: You can detach 1 Xyz Material from this card, then target 1 other face-up monster on the field; change it to face-down Defense Position. This effect can be activated during either player's turn, if this card has "Super Quantum Green Layer" as X... | --超量機獣エアロボロス
--Super Quantal Mech Beast Aeroboros
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2 Level 4 monsters
Xyz.AddProcedure(c,nil,4,2)
--Cannot attack unless it has Xyz Material
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 1 Pyro monster from your Deck to the GY, then, if you sent a "Volcanic" monster to the GY, you can apply 1 of these effects. ● Inflict damage to your opponent equal to its Level x 100. ● Special Summon 1 "Bomb Token" (Pyro/FIRE/Level 1/ATK 1000/DEF 1000) to your opponent's field. Each time 1 is destroyed, its cont... | --ファイヤー・エジェクション
--Fire Ejection
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Send 1 Pyro monster from your Deck to the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_DAMAGE+CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be destroyed by battle. If you take any damage: Destroy this face-up card. This card can be treated as 2 Tributes for the Tribute Summon of a LIGHT Fairy monster. | --ジェルエンデュオ
--Gellenduo
local s,id=GetID()
function s.initial_effect(c)
--Cannot be destroyed by battle
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetValue(1)
c:RegisterEffect(e1)
--Destroy this face-up card
local e2=Effect.CreateEffect(c)
e2:SetDe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Cyberse monsters If a monster is Special Summoned to a zone this card points to (except during the Damage Step): You can banish 1 Spell from your GY; add 1 Cyberse Ritual Monster and 1 "Cynet Ritual" from your Deck to your hand. During your Main Phase, if this effect was activated this turn: You can target 1 Level 4 ... | --サイバース・ウィッチ
--Cyberse Witch
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--Link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_CYBERSE),2,2)
c:EnableReviveLimit()
--Add from Deck to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: If it is the Main Phase: Apply these effects in sequence. ● This turn, "Mimighoul" monsters cannot be destroyed by battle. ● Give control of this card to your opponent. During your Main Phase: You can Special Summon this card from your hand to your opponent's field in face-down Defense Position, or if your oppone... | --ミミグル・アーマー
--Mimighoul Armor
--scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--FLIP: Apply these effects in sequence
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_CONTROL)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_F)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, you can equip this card to an "Indomitable Fighter Lei Lei" you control, OR unequip it to Special Summon this card in face-up Attack Position. When equipped to a monster by this card's effect, you can change that monster's battle position once per turn. (A monster can only be equipped with 1 Union Monste... | --守護霊 アイリン
--Protective Soul Ailin
local s,id=GetID()
function s.initial_effect(c)
aux.AddUnionProcedure(c,aux.FilterBoolFunction(Card.IsCode,84173492),true)
--pos change
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,2))
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card destroys an opponent's monster by battle and sends it to the Graveyard: You can excavate the top card of your Deck, and if it is a Plant-Type monster, send it to the Graveyard. Otherwise, place it on the bottom of your Deck. If this card is excavated from the Deck and sent to the Graveyard by a card effe... | --森羅の葉心棒 ブレイド
--Sylvan Bladefender
local s,id=GetID()
function s.initial_effect(c)
--Excavate the top cardof your deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DECKDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If any Spell or Trap Card(s) are Chained, inflict 500 damage to your opponent. | --連爆魔人
--Blast Asmodian
local s,id=GetID()
function s.initial_effect(c)
--chain
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EVENT_CHAINING)
e1:SetRange(LOCATION_MZONE)
e1:SetOperation(s.chop)
c:RegisterEffect(e1)
--d... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by targeting 1 "Karakuri" monster in your GY; Special Summon it and equip it with this card. Once per turn, if the battle position of a face-up "Karakuri" monster(s) you control is changed: The equipped monster gains 500 ATK/DEF (even if this card is no longer equipped). You can only activate 1 "Kara... | --カラクリ蝦蟇油
--Karakuri Gama Oil
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_EQUIP+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,id,EFFECT_COUNT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a "Utopia" monster is Xyz Summoned to your field: You can pay 500 LP; draw 1 card. You can only control 1 "Xyz Change Tactics". | --エクシーズ・チェンジ・タクティクス
--Xyz Change Tactics
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--draw
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase, if you Normal or Special Summon an "Ancient Warriors" monster(s): You can target 1 of those monsters; add 1 "Ancient Warriors" monster with a different name from your Deck to your hand. If this card is sent from the Spell & Trap Zone to the GY: You can Special Summon 1 "Ancient Warriors" monster... | --戦華史略-三顧礼迎
--Ancient Warriors Saga - Three Visits
--Scripted by ahtelel
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
c:RegisterEffect(e1)
--Add a monster with different name from De... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned, you can send 1 Reptile-Type "Worm" monster from your Deck to the Graveyard. If you control a face-up "Worm Yagan", this card cannot be destroyed by battle. | --ワーム・ゼクス
--Worm Xex
local s,id=GetID()
function s.initial_effect(c)
--send to grave
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_SUMMON_SUCCESS)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3+ monsters with different Attributes You can only control 1 "The Arrival Cyberse @Ignister". The original ATK of this card becomes 1000 x the number of Link Materials used for its Link Summon. Unaffected by other cards' effects. Once per turn: You can target 1 other monster on the field; destroy it, and if you do, Spe... | --ジ・アライバル・サイバース@イグニスター
--The Arrival Cyberse @Ignister
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--Link Summon
c:EnableReviveLimit()
Link.AddProcedure(c,nil,3,nil,s.lcheck)
--Gain ATK per each material used
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a monster you control declares an attack, place 1 Thunder Counter on this card. You can send this card with 4 or more Thunder Counters to the Graveyard; destroy all monsters your opponent controls. | --サンダー・ボトル
--Raigeki Bottle
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0xc)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--counter
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can take control of up to 1 Union Monster that is currently a monster on your opponent's side of the field, and equip it to this card. The Union Monster that is equipped to this card cannot be changed back to a monster using its own effect. | --ユニオン・ライダー
--Union Rider
local s,id=GetID()
function s.initial_effect(c)
--equip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is in your GY: You can banish 1 other Plant monster from your GY; Special Summon this card, and if you do, increase its Level by the Level of that banished monster. You can only use this effect of "Spore" once per Duel. | --スポーア
--Spore
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_GRAVE)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_DUEL)
e1:SetCost(s.co... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During damage calculation, when your "Dinowrestler" monster battles a monster with an equal or higher ATK (Quick Effect): You can send this card from your hand to the GY; your battling monster cannot be destroyed by that battle, also end the Battle Phase after the Damage Step. Once per turn, during the End Phase, if th... | --ダイナレスラー・マーシャルアンガ
--Dinowrestler Martial Anga
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--battle end
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.bpcon)
e1:SetCost(s.bpcost)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can add 1 "Dual Avatar" Trap from your Deck to your hand. During your opponent's turn, if a face-up "Dual Avatar" monster(s) you control, except "Dual Avatar Feet - Kokoku", is destroyed by battle or card effect: You can Special Summon this card from your hand, then you c... | --双天脚の鴻鵠
--Dual Avatar Feet - Kokoku
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from hand and 1 "Souten" Fusion Monster from Extra Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DESTROY)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your Main Phase, you can pay 800 Life Points. If you do this, until the End Phase, Spell and Trap Cards cannot be activated. | --言語道断侍
--Sasuke Samurai #2
local s,id=GetID()
function s.initial_effect(c)
--act limit
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(Cost.PayLP(800))
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 monsters with the same Type and Attribute, but different names Any battle damage your opponent takes from battles involving this card is doubled. If this card is sent to the GY: You can draw 1 card. You can only use this effect of "Garura, Wings of Resonant Life" once per turn. | --共命の翼ガルーラ
--Garura, Wings of Resonant Life
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion materials: 2 monsters with the same Type and Attribute, but different names
Fusion.AddProcMixN(c,true,true,s.ffilter,2)
--Any battle damage your opponent takes from battles i... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters All monsters your opponent controls become Dragons. Once per turn, if you do not control a "Buster Blader" monster: You can target 1 "Buster Blader" in your GY; Special Summon it. Once per opponent's turn (Quick Effect): You can target 1 "Buster Blader" monster you control; equip it with... | --破戒蛮竜-バスター・ドラゴン
--Buster Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--All monsters your opponent controls become Dragons
local e1=Effect.CreateEffect(c)
e1:SetT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can target 1 other Cyberse monster you control that began the Duel in the Main Deck; return it to the hand, and if you do, Special Summon from your Deck 1 Cyberse monster with the same Level, but with a different name. You can only use this effect of "Garbage Collector" once per turn. | --ガベージコレクター
--Garbage Collector
local s,id=GetID()
function s.initial_effect(c)
--bounce and summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reveal 1 "Noble Arms" Equip Spell in your hand, and if you do, Special Summon 1 "Infernoble Knight" monster from your hand or Deck, then either equip the revealed card to that monster, or send it to the GY. You can banish this card from your GY, then target 1 "Infernoble Knight Emperor Charles" you control; equip 1 "No... | --シャルルの叙事詩
--The Continuing Epic of Charles
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 "Infernoble Knight" monster from your hand or Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_EQUIP+CATEGOR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: You can add 1 "Dimension Dice" from your Deck to your hand. At the start of the Battle Phase: You can activate this effect; each player rolls a six-sided die and applies the result to all monsters they control, until the end of this turn. ● 1: Lose 1000 ATK. ● 2: Gain 1000 ATK. ● 3: Lose 50... | --ダイス・ダンジョン
--Dice Dungeon
--scripted by Naim
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:SetOperation(s.activate)
c:RegisterEffect(e1)
--At the start o... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only if you control a face-up "Naturia" monster. Your opponent cannot activate Trap Cards this turn. | --パルキオンのうろこ
--Barkion's Bark
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
s.listed_series={SET_NATURIA}
function s.conditi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Toss a coin and apply this effect. If "Light Barrier" is in your Field Zone, you can choose the effect instead. ● Heads: Add 1 card from your Deck to your hand that has a coin tossing effect, except "Arcana Reading". ● Tails: Your opponent adds 1 card from their Deck to their hand. You can banish this card from your GY... | --アルカナリーディング
--Arcana Reading
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Flip a coin, apply appropriate effect base on result
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_COIN)
e1:SetType(EFFECT_TYPE_A... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a card or effect is activated that targets a card(s) on the field (Quick Effect): You can Tribute 1 face-up Plant monster; negate the activation, and if you do, destroy it. | --椿姫ティタニアル
--Tytannial, Princess of Camellias
local s,id=GetID()
function s.initial_effect(c)
--negate
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e2:SetType(EFFECT_TYPE_QUICK_O)
e2:SetCode(EVENT_CHAINING)
e2:SetProperty(EFFECT_FLAG_DAMAG... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Ninja" monsters with different Types Must first be either Fusion Summoned, or Special Summoned from your Extra Deck by Tributing the above cards you control. Your "Ninja" monsters can attack directly. While you control a face-down Defense Position monster, your opponent's monsters cannot target this card for attacks... | --戎の忍者-冥禪
--Meizen the Battle Ninja
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Fusion Summon procedure
Fusion.AddProcMixN(c,true,true,s.ffilter,2)
--Alternative Summon procedure
Fusion.AddContactProc(c,s.contactfil,s.contactop,s.splimit,nil,nil,nil,false)
--"Ninja" ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 Spellcaster Fusion Monster from your Extra Deck, by banishing Fusion Materials mentioned on it from your field or GY. You can only activate 1 "Magicalized Fusion" per turn. | --円融魔術
--Magicalized Fusion
local s,id=GetID()
function s.initial_effect(c)
local e1=Fusion.CreateSummonEff(c,aux.FilterBoolFunction(Card.IsRace,RACE_SPELLCASTER),Fusion.OnFieldMat(Card.IsAbleToRemove),s.fextra,Fusion.BanishMaterial,nil,nil,nil,nil,nil,nil,nil,nil,nil,s.extratg)
e1:SetCountLimit(1,id,EFFECT_COUNT_COD... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have 9000 or more Life Points, you can pay 2000 Life Points to draw 2 cards. | --エンシェント・リーフ
--Ancient Leaf
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)
e1:SetTarg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned, if you have a "Laval" monster in your Graveyard other than "Laval Blaster": You can choose a number from 1 to 5, then send that many cards from the top of your Deck to the Graveyard; this card gains 200 ATK for each "Laval" monster sent to the Graveyard to activate this effect. | --ラヴァル・ガンナー
--Laval Blaster
local s,id=GetID()
function s.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetCondition(s.condition)
e1:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can add 1 "Left-Hand Shark" from your Deck to your hand. If this card is in your GY and you control no monsters: You can Special Summon this card, but banish it when it leaves the field. An Xyz Monster that was Summoned using only WATER monsters as material, including this card on... | --ライトハンド・シャーク
--Right-Hand Shark
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--When normal summoned, add 1 "Left-Hand Shark" from deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can choose a number from 1 to 3, then send that many cards from the top of your Deck to the GY; increase this card's Level by the number of cards sent to the GY this way, until the end of this turn. If this card you control is destroyed by an opponent's card and sent to your GY: You gain 1500 LP. You can only use e... | --ハイ・キューピット
--Cupid Volley
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--lv
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,id)
e1:SetCost(s.cost)
e1:SetOperation(s.operation)
c:R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card in your possession is destroyed by an opponent's card and sent to your GY: Shuffle this card into the Deck. When this card is Normal or Flip Summoned: You can add 1 "Madolche" monster from your Deck to your hand. | --マドルチェ・マジョレーヌ
--Madolche Magileine
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:SetCode(EVENT_TO_GRAVE)
e1:SetCondition(s.retcon)
e1:SetTarg... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Increase your Life Points by 600 points. | --ゴブリンの秘薬
--Goblin's Secret Remedy
local s,id=GetID()
function s.initial_effect(c)
--recover
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_RECOVER)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.rectg)
e1:SetOperation(s.recop)
c:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Ritual Summon this card with any "Gishki" Ritual Spell Card. When this card is Ritual Summoned: Target up to 5 cards in any Graveyard(s); shuffle those targets into the Deck. | --イビリチュア・マインドオーガス
--Evigishki Mind Augus
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Shuffle cards from the GY into the 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:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a Level 5 or higher "HERO" monster. If you control a card in your Field Zone, the equipped monster gains ATK equal to its original DEF, also your opponent cannot target it with card effects. At the start of the Battle Phase: You can activate 1 Field Spell directly from your hand or Deck. You can only use ... | --フェイバリット・ヒーロー
--Favorite Hero
--Scripted by Randuin and AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Equip only to lvl 5+ hero
aux.AddEquipProcedure(c,nil,s.filter)
--Provide ATK equal to the DEF
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_EQUIP)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Summoned Skull" + "Red-Eyes Black Dragon" (This card is always treated as an "Archfiend" card.) | --ブラック・デーモンズ・ドラゴン
--Black Skull Dragon
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,CARD_SUMMONED_SKULL,CARD_REDEYES_B_DRAGON)
end
s.listed_names={CARD_REDEYES_B_DRAGON}
s.material_setcode={SET_RED_EYES,SET_ARCHFIEND} |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can send 1 Effect Monster from your hand to the GY; Special Summon 1 Level 4 or lower Dragon Normal Monster from your hand, Deck, or GY, in Defense Position. You can only use this effect of "Guardragon Corewakening" once per turn. | --守護竜の核醒
--Guardragon Corewakening
--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)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a Fusion Monster that lists "Elemental HERO Neos" as material. It does not have to activate its effect during the End Phase to shuffle itself into the Extra Deck. If the equipped monster leaves the field: You can Special Summon 1 "Elemental HERO Neos" from your hand, Deck, or GY. | --インスタント・ネオスペース
--Instant Neo Space
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,s.eqfilter)
--equip effect
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_EQUIP)
e3:SetCode(42015635)
c:RegisterEffect(e3)
--spsummon
local e4=Effect.CreateEffect(c)
e4:SetDescription(aux.Str... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a monster(s) is Special Summoned to your opponent's field (except during the Damage Step): Special Summon 1 Dinosaur monster from your hand. | --狩猟本能
--Hunting Instinct
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_SPSUMMON_SUCCESS)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:Regi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card attacks a Defense Position monster, inflict piercing battle damage. If this card inflicted battle damage to your opponent, at the end of the Battle Phase: Banish this card until your next Standby Phase. | --フライファング
--Flyfang
local s,id=GetID()
function s.initial_effect(c)
--reg
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_BATTLE_DAMAGE)
e1:SetOperation(s.regop)
c:RegisterEffect(e1)
--pierce
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a "Bujin" monster you control is destroyed by battle with an opponent's monster and sent to your Graveyard: You can send this card from your hand to the Graveyard; destroy that opponent's monster. | --武神器-マフツ
--Bujingi Raven
local s,id=GetID()
function s.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetRange(LOCATION_HAND)
e1:SetCondi... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish 1 card from your Deck face-down. After this card's activation, it remains on the field. Destroy this card during your 2nd Standby Phase after activating this card, and if you do, add the banished card to the hand. | --タイムカプセル
--Different Dimension Capsule
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(aux.RemainFieldCost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Normal or Special Summoned: You can add 1 Level 4 or lower "Salamangreat" monster from your Deck to your hand, except "Salamangreat of Fire", also you cannot Special Summon monsters for the rest of this turn, except FIRE monsters. At the start of the Damage Step, if a Cyberse monster you control battles... | --サラマングレイト・オブ・ファイア
--Salamangreat of Fire
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Search 1 Level 4 or lower "Salamangreat" monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Dragon and/or Winged Beast monsters, except Tokens If this card is Link Summoned: You can add 1 "Dragunity" Spell/Trap or 1 "Dragon Ravine" from your Deck to your hand. If a Dragon monster(s) is Special Summoned from the Extra Deck to a zone this card points to (except during the Damage Step): You can Special Summon ... | --ドラグニティナイト - ロムルス
--Dragunity Knight - Romulus
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Link summon procedure
Link.AddProcedure(c,s.matfilter,2,2)
--Add 1 "Dragunity" spell/trap or 1 "Dragon Ravine" from deck
local e1=Effect.CreateEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 "Hieratic" monster, then target 1 card your opponent controls; banish that target. | --抹殺の聖刻印
--Hieratic Seal of Banishment
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER_E)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters Once per turn: You can detach 1 Xyz Material from this card; apply this effect, depending on this card's current battle position. ● Attack Position: If this card attacks an opponent's monster this turn, it gains 1000 ATK, also the opponent's monster loses 500 ATK, during the Damage Step only. ● Defen... | --ガガガガンマン
--Gagaga Cowboy
local s,id=GetID()
function s.initial_effect(c)
--Xyz Summon
Xyz.AddProcedure(c,nil,4,2)
c:EnableReviveLimit()
--Either gain and reduce ATK when battling or burn for 800
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DAMAGE)
e1:SetDescription(aux.Stringid(id,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Rock monster + 1 Level 4 or lower monster in your opponent's GY Must first be Special Summoned with "Fossil Fusion". If this card attacks a Defense Position monster, inflict piercing battle damage. You can banish this card from your GY; add 1 "Fossil Fusion" from your Deck to your hand. You can only use this effect o... | --新生代化石竜 スカルガ
--Fossil Dragon Skullgar
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--Fusion summon procedure
Fusion.AddProcMix(c,true,true,aux.FilterBoolFunctionEx(Card.IsRace,RACE_ROCK),s.ffilter)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Clock Lizard check
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner FIRE monsters When your opponent activates an effect of a monster on the field or in their hand (Quick Effect): You can destroy that monster, and if you do, inflict 1000 damage to your opponent. If this Synchro Summoned card in its owner's control is destroyed by an opponent's card: You can Speci... | --ラヴァルバル・エクスロード
--Lavalval Exlord
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Must be properly summoned before reviving
c:EnableReviveLimit()
--Synchro summon procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTunerEx(Card.IsAttribute,ATTRIBUTE_FIRE),1,99)
--Destroy opponent mons... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time your opponent Summons a monster(s), gain 300 LP. Your monsters cannot be destroyed by battle while you have 10,000 or more LP. | --大胆無敵
--Child's Play
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)
--heal
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e2:SetCode(EVENT_SUMMON... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Rokket" monsters Once per turn: You can target 1 other face-up monster on the field; it gains 500 ATK/DEF. Your opponent cannot activate cards or effects in response to this effect's activation. If this Link Summoned card is destroyed by battle or card effect and sent to the GY: You can target 1 other Dragon monster... | --ブースター・ドラゴン
--Booster Dragon
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_ROKKET),2,2)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a FIRE monster, you can Special Summon this card (from your hand). You can only Special Summon "Snake-Eye Birch" once per turn this way. During your opponent's turn (Quick Effect): You can send 2 face-up cards you control to the GY, including this card; Special Summon 1 "Snake-Eye" monster from your hand... | --スネークアイ・ワイトバーチ
--Snake-Eye Birch
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the hand if you control a FIRE monster
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:Set... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster(s) on the field is destroyed by battle or card effect and sent to the GY, while this card is in your GY: You can Special Summon this card, but banish it when it leaves the field. If this card is Special Summoned from the GY: You can target 1 monster your opponent controls; destroy it. You can only use each... | --ソウル・シザー
--Soul Scissors
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Effect Monsters You cannot Summon/Set monsters to a zone(s) this card points to. Monsters this card points to cannot attack, also their activated effects are negated. Gains ATK equal to the total original ATK of monsters this card points to. Cannot be destroyed by battle or monster effects, while this card points to... | --麗しき磁律機壊
--Gorgon of Zilofthonia
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2+ Effect Monsters
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsType,TYPE_EFFECT),2)
--You cannot Summon/Set monsters to a zone(s) this card points to
local e0=... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 Fusion Monster from your Extra Deck, that must be Special Summoned with "Dark Fusion", by banishing the Fusion Materials mentioned on it from your hand and/or GY. (This is treated as a Fusion Summon with "Dark Fusion".) | --ダーク・コーリング
--Dark Calling
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Fusion.CreateSummonEff{handler=c,fusfilter=s.fusfilter,matfilter=Fusion.InHandMat(Card.IsAbleToRemove),
extrafil=s.fextra,extraop=Fusion.BanishMaterial,extratg=s.extratg,chkf=FUSPROC_NOLIMIT}
c:RegisterEffect(e1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During your Main Phase: You can increase this card's Level by 2 and ATK by 600, until the End Phase. This effect can be used only once while this card is face-up on the field. | --ゼンマイドッグ
--Wind-Up Dog
local s,id=GetID()
function s.initial_effect(c)
--atk/lv up
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_NO_TURN_RESET)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card destroys an opponent's monster by battle: Activate 1 of these effects. ● Target 1 appropriate Union monster in your GY; equip that target to this card. ● Target 1 face-up LIGHT Machine monster you control; shuffle that target into the Deck, then draw 1 card. | --デルタトライ
--Delta Tri
local s,id=GetID()
function s.initial_effect(c)
--Apply effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetCondition(aux.bdocon)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Thunder monsters During your Main Phase, if you control this Link Summoned card: You can target 1 of your "Thunder Dragon" monsters that is banished or in your GY; apply that monster's effect that discards itself to activate, then place that monster on the top or bottom of your Deck. You can only use this effect of ... | --轟雷機龍-サンダー・ドラゴン
--Thunder Dragon Thunderstormech
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2+ Thunder monsters
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_THUNDER),2)
--Apply 1 "Thunder Dragon" monster's effect that dis... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is Special Summoned by the effect of a "Gouki" card, or Normal Summoned: You can target 1 face-up monster your opponent controls; its ATK becomes half its original ATK until the end of this turn. If this card is sent from the field to the GY: You can add 1 "Gouki" card from your Deck to your hand, except "... | --剛鬼ハッグベア
--Gouki Bearhug
local s,id=GetID()
function s.initial_effect(c)
--atk down
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY)
e1:SetCode(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by targeting 1 face-up monster on the field. During each of your Standby Phases, it loses 500 ATK. When that target is destroyed, destroy this card. * The above text is unofficial and describes the card's functionality in the OCG. | --罅割れゆく斧
--Shattered Axe
local s,id=GetID()
function s.initial_effect(c)
aux.AddPersistentProcedure(c,nil,aux.FilterBoolFunction(Card.IsFaceup),CATEGORY_DISABLE,nil,nil,TIMING_END_PHASE,nil,nil,s.target)
--Destroy
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_FIELD)
e2:SetRange(LOCA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Discard 1 card; roll a six-sided die, then Special Summon, from your hand and/or Deck, 1 or 2 "Speedroid" monsters whose total Levels equal the result, but negate their effects. If you do not Special Summon, you lose LP equal to the result x 500. You can only activate 1 "Speedroid Wheel" per turn. | --SRルーレット
--Speedroid Wheel
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DICE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card inflicts battle damage to your opponent: They can hand you 1 card from their hand to negate this effect, otherwise you add 1 "Goblin" card from your Deck to your hand, except "Goblin Fan". | --おねだりゴブリン
--Scrounging Goblin
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLE_DAMAGE)
e1:SetCondition(s.cond... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent from your hand to your GY by an opponent's card effect: Inflict 2000 damage to your opponent. | --恵災いの像
--Elephant Statue of Disaster
local s,id=GetID()
function s.initial_effect(c)
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_TO_G... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Dragon Fusion Monsters you control cannot be destroyed by your opponent's card effects. You can only use each of the following effects of "Dragonmaid Cehrmba" once per turn. You can discard this card; Special Summon 1 "Dragonmaid" monster from your GY or banishment, except "Dragonmaid Cehrmba". At the end of the Battle... | --ドラゴンメイド・シュテルン
--Dragonmaid Cehrmba
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Dragon Fusion Monsters you control cannot be destroyed by your opponent's card effects
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_INDESTRUCTABLE_EFFECT)
e1:SetRange(LOCATIO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can discard this card to the GY; add 1 "The Sanctuary in the Sky" from your Deck to your hand. If "The Sanctuary in the Sky" is not on the field, destroy this card. | --天空の使者 ゼラディアス
--Zeradias, Herald of Heaven
local s,id=GetID()
function s.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCost(Cost.SelfDiscardToGrave... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1+ non-Tuner monsters You can target 1 face-up monster your opponent controls; switch control of that monster and this card. If this Synchro Summoned card is sent to the GY: You can target 1 face-up monster on each field; switch control of those monsters. You can only use each effect of "Mind Castlin" once pe... | --マインド・キャスリン
--Mind Castlin
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure: 1 Tuner + 1+ non-Tuner monsters
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
--Switch control of 1 opponent's face-up monster and this card
local e1=E... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.