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: | Target 1 "Primitive Planet Reichphobia" you control or in your GY; return it to the hand, then, if you control "Visas Starfrost", you can change 1 face-up monster your opponent controls to face-down Defense Position. If 3 or more Defense Position monsters are on the field: You can banish this card from your GY; add 1 "... | --械貶する肆世壊
--Scareclaw Decline
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Return 1 "Primitive Planet Reichphobia" to the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can only control 1 "ZW - Pegasus Twin Saber". If your opponent's LP are at least 2000 higher than yours, you can Special Summon this card (from your hand). You can target 1 "Utopia" monster you control; equip this card you control to it as an Equip Spell that gives it 1000 ATK. Once per turn, while this card is equ... | --ZW-天馬双翼剣
--ZW - Pegasus Twin Saber
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Can only control one
c:SetUniqueOnField(1,0,id)
--Special summon itself from hand
local e1=Effect.CreateEffect(c)
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: | Special Summon 1 Warrior monster from your hand or GY, but if you Special Summoned a non-"Heroic" monster by this effect, negate its effects, also it cannot attack. If your LP are 500 or less: You can banish this card from your GY, then target 1 face-up monster you control; it gains 500 ATK for each "Heroic" card you c... | --ヒロイック・コール
--Heroic Call
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Warrior monster from hand or GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is sent to the GY: You can change all Attack Position monsters your opponent controls to Defense Position. * The above text is unofficial and describes the card's functionality in the OCG. | --フリップ・フローズン
--Flip Frozen
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--change position
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_POSITION)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DELAY)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Psychic-Type monster: Target 1 card on the field; destroy it, and if you do, take 1000 damage. | --最古式念導
--Psychokinesis
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
e1:SetTarget(s.ta... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. Monsters cannot activate their effects, except Spirit monsters. Once per turn, during the End Phase, if this card was Normal Summoned or flipped face-up this turn: Return this card to the hand. | --天岩戸
--Amano-Iwato
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_SPSUMMON_CONDIT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Other Beast, Beast-Warrior, and Winged Beast-Type monsters you control cannot be destroyed by battle. | --武神器-タルタ
--Bujingi Wolf
local s,id=GetID()
function s.initial_effect(c)
--Cannot be destroyed
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarget(s.indtg)
e1:SetValue(1)
c:RegisterEf... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Tribute 1 face-up Attack Position Level 2 or lower monster; return all Level 7 or higher Special Summoned monsters to the hand. | --大番狂わせ
--A Major Upset
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
functio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Machine monsters Gains the following effects while this card points to an "R.B." monster. ● Gains ATK equal to the total original ATK of "R.B." monsters it points to. ● Can make a second attack during each Battle Phase. ● Cannot be destroyed by battle or card effects. During your Main Phase: You can add 1 "R.B." car... | --JP Name
--R.B. The Brute Blues
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2+ Machine monsters
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACE_MACHINE),2)
--Gains total original ATK of "R.B." monsters this card points to w... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 2 monsters While you control another "Ghostrick" monster, your opponent's monsters cannot target this card for attacks. Once per turn: You can detach 1 material from this card, then target 1 monster on the field, with ATK less than or equal to the combined ATK of all "Ghostrick" monsters on the field; destroy i... | --ゴーストリック・サキュバス
--Ghostrick Socuteboss
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,nil,2,2)
c:EnableReviveLimit()
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: You can Special Summon 1 Level 3 or higher Flip monster from your hand or Deck in face-down Defense Position, also you cannot activate monster effects for the rest of this turn, except "Prediction Princess" monsters'. | --占術姫コインノーマ
--Prediction Princess Coinorma
local s,id=GetID()
function s.initial_effect(c)
--Special summon 1 level 3+ flip monster from hand or deck
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_F... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a monster(s) would be Summoned: Tribute 1 "Lightsworn" monster; negate the Summon, and if you do, destroy that monster(s). | --ライト・バニッシュ
--Vanquishing Light
local s,id=GetID()
function s.initial_effect(c)
--Activate(summon)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DISABLE_SUMMON+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SUMMON)
e1:SetCondition(s.condition)
e1:SetCost(s.cost)
e1:SetTarget(s.tar... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can only attack if this card is the only card on your side of the field and if you also have no cards in your hand. The effects of Effect Monsters that this card destroys are negated. | --絶対服従魔人
--Ultimate Obedient Fiend
local s,id=GetID()
function s.initial_effect(c)
--atk limit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_ATTACK)
e1:SetCondition(s.atkcon)
c:RegisterEffect(e1)
--negate
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE+EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a card(s) you control is destroyed by battle or card effect, place 1 Emperor's Key Counter on this card (max. 1). If your opponent Special Summons a monster(s) from the Extra Deck (except during the Damage Step): You can remove 1 Emperor's Key Counter from this card; send 1 "The Door of Destiny" from your han... | --運命の契約
--The Deal of Destiny
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableCounterPermit(0x207)
c:SetCounterLimit(0x207,1)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--counter
local e2=Effect.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When an opponent's monster declares an attack: You can discard 1 Spell/Trap, then target 1 Divine-Beast monster in your GY; Special Summon it in Defense Position, then change the attack target to it. During the End Phase, if you control a Divine-Beast monster: You can destroy all face-up cards your opponent controls th... | --絶対なる幻神獣
--Ultimate Divine-Beast
--Scripted by Larry126
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:SetCategory(CATEGORY_SPECIAL_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Equip only to a FIRE monster. It gains 700 ATK. | --サラマンドラ
--Salamandra
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsAttribute,ATTRIBUTE_FIRE))
--Atk up
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(700)
c:RegisterEffect(e2)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control "Shining Sarcophagus" and a monster that mentions it: Special Summon up to 2 Level 4 or lower monsters with different names that mention "Shining Sarcophagus" from your hand and/or Deck, also, for the rest of this turn after this card resolves, you cannot Special Summon from the Extra Deck. You can only ... | --仲間の絆
--Ties That Bind
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is destroyed by battle and sent to the Graveyard, you can send 1 Gemini monster from your Deck to the Graveyard and draw 1 card. | --フェデライザー
--Featherizer
local s,id=GetID()
function s.initial_effect(c)
--tograve & draw
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BATTLE_DESTROYED)
e1:SetCondition(s.c... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Special Summon 1 Level 4 or lower Fish, Sea Serpent, or Aqua monster from your hand or GY, but you cannot Special Summon from the Extra Deck, except Xyz Monsters, while you control that face-up monster. If your opponent controls an Attack Position monster: You can banish this card from your GY, then target 1 Fish, Sea ... | --アクア・ジェット・サーフェス
--Aqua Jet Surface
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 Level 4 or lower Fish, Sea Serpent, or Aqua monster from your hand or GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal Summoned: You can Special Summon 1 non-LIGHT "Number" monster from your GY, but negate its effects, and if you do, equip both this card and 1 "Utopia" monster you control to it, each as an Equip Spell that gives it 1700 ATK, also you can only declare one attack for the rest of this turn. When t... | --ZS-双頭龍賢者
--ZS - Ouroboros Sage
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Special Summon 1 non-LIGHT "Number" monster from your GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_SI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Each time a Counter Trap Card is activated, immediately after it resolves, draw 1 card. | --豊穣のアルテミス
--Bountiful Artemis
local s,id=GetID()
function s.initial_effect(c)
--draw
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_CHAIN_SOLVED)
e1:SetRange(LOCATION_MZONE)
e1:SetOperation(s.drop)
c:RegisterEffect(e1)
end
function s.drop(e,tp,eg,ep,ev,re,r... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Increase the original ATK and DEF of all face-up Level 1 Normal Monsters (except Tokens) on your side of the field by 2000 points until the End Phase. Destroy all Level 1 Normal Monsters on your side of the field during the End Phase. | --トライアングルパワー
--Triangle Power
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_ATKCHANGE+CATEGORY_DEFCHANGE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 6 monsters If you use a monster(s), with a Level, that is owned by your opponent for the Xyz Summon of this card, treat it as Level 6. Once per turn: You can detach 1 material from this card, then target 1 card your opponent controls; send it to the GY. Once per turn, if a Monster Card(s) is sent from the fiel... | --交血鬼-ヴァンパイア・シェリダン
--Dhampir Vampire Sheridan
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 2+ Level 6 monsters
Xyz.AddProcedure(c,nil,6,2,nil,nil,Xyz.InfiniteMats)
--Treat 1 monster you control with a Level owned by your opponent as Level 6 f... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When you draw this card: You can reveal it; Special Summon it from your hand. If this card is Special Summoned from the hand: You can target 1 Set card your opponent controls; destroy it. You can only use each effect of "Fortune Fairy En" once per turn. | --占い魔女 エンちゃん
--Fortune Fairy En
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_D... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During each of your End Phases, destroy this card unless you send 1 "Iron Core of Koa'ki Meiru" from your hand to the Graveyard or reveal 1 Beast-Warrior-Type monster in your hand. If this card destroys an opponent's monster by battle, you can add 1 "Koa'ki Meiru" card from your Graveyard to your hand. | --コアキメイル・クルセイダー
--Koa'ki Meiru Crusader
local s,id=GetID()
function s.initial_effect(c)
--cost
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EVENT_PHASE+PHASE_END)
e1:SetCountLimit(1)
e1:SetRange(L... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish 1 Zombie monster from either GY and Special Summon 2 "Haunted Tokens" (Zombie/DARK/ATK 0/DEF 0) with the same Level as the banished monster. If this card is in your GY: You can shuffle 1 of your banished Zombie monsters into the Deck, and if you do, Set this card, but banish it when it leaves the field. You can ... | --ホーンテッド・アンデット
--Haunted Zombies
--Scripted by Hatter
local s,id=GetID()
function s.initial_effect(c)
--Banish a Zombie from either GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_REMOVE+CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during your End Phase: You can add 1 "Bujin" monster from your Deck to your hand, then send 1 card from your hand to the Graveyard. You can only control 1 "Bujin Yamato". | --武神-ヤマト
--Bujin Yamato
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
--to hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_FIELD)
e1:SetRange(LOCATI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] You can target 1 Fusion, Synchro, or Xyz Monster your opponent controls; negate its effects until the end of this turn, then destroy this card. You can only use this effect of "D/D Dog" once per turn. ---------------------------------------- [ Monster Effect ] Once per turn, if your opponent Special... | --DDドッグ
--D/D Dog
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
--Enable pendulum summon
Pendulum.AddProcedure(c)
--Negate 1 of opponent's fusion, synchro, or Xyz monsters
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DISABLE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_IGNITION)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is activated: Add 1 "Zefra" monster from your Deck to your hand. When a player Ritual Summons using a "Zefra" monster, or Special Summons using a "Zefra" monster as Material, you can activate these effects depending on the monster Summoned, once per turn per effect: ● Ritual: Shuffle 1 monster on the fie... | --セフィラの神託
--Oracle of Zefra
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetTarget(s.target)
e1:SetOperatio... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "The Snake Hair" + "Blackland Fire Dragon" | --スケルゴン
--Skelgon
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,29491031,87564352)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Reveal 3 Warrior-Type monsters from your Deck, including at least 1 "Black Luster Soldier" monster or "Gaia The Fierce Knight" monster, and have your opponent randomly pick 1. If they picked a "Black Luster Soldier" monster or "Gaia The Fierce Knight" monster, add it to your hand and send the rest to the Graveyard. Oth... | --天地開闢
--Beginning of Heaven and Earth
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | FLIP: Excavate cards from the top of your Deck until you excavate a Spell/Trap, then add that card to your hand, also send the remaining cards to the GY. | --魔導雑貨商人
--Magical Merchant
local s,id=GetID()
function s.initial_effect(c)
--Excavate cards until you find a Spell/Trap
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_DECKDES)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP)
e1:SetOper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent Special Summons a monster(s), except during the Damage Step: You can Special Summon this card from your hand, and if you do, your opponent takes any effect damage you would have taken from their card effects this turn, instead. | --エクストラ・ヴェーラー
--Extra Veiler
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_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetRange(LOCATION_HAND)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If a monster attacks, at the end of the Damage Step: Its controller gains 300 LP. All monsters must attack, if able. During each End Phase: Destroy all face-up Attack Position monsters the turn player controls, that did not declare an attack. | --サベージ・コロシアム
--Savage Colosseum
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)
--to defense
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGOR... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a WATER monster, you can Normal Summon this card without Tributing. | --サイバー・シャーク
--Cyber Shark
local s,id=GetID()
function s.initial_effect(c)
--summon without tribute
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SUMMON_PROC)
e1:SetCondition(s.ntcon)
c:RegisterEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is added from the Deck to your hand by the effect of an "Ancient Warriors" card: You can Special Summon it. When a Spell/Trap Card is activated (Quick Effect): You can send 1 face-up "Ancient Warriors" Continuous Spell/Trap you control to the GY; negate the activation. When a monster effect is activated wh... | --戦華の智-諸葛孔
--Ancient Warriors - Ingenious Zhuge Kong
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--Special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can only be used to equip Warrior-Type monsters. The equipped monster is treated as Dragon-Type and increases the ATK and DEF of the equipped monster by 500 points. | --竜魂の力
--Dragonic Attack
local s,id=GetID()
function s.initial_effect(c)
aux.AddEquipProcedure(c,nil,aux.FilterBoolFunction(Card.IsRace,RACE_WARRIOR),s.eqlimit)
--Atk
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_EQUIP)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetValue(500)
c:RegisterEffect(e2)
local e3=e2:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Synchro Monster on the field; return that target to the Extra Deck, then, if all of the monsters that were used for the Synchro Summon of that monster are in your GY, you can Special Summon all of them. | --シンクロキャンセル
--De-Synchro
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TODECK+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 4 Level 3 DARK monsters All Tokens you control can make a second attack during each Battle Phase. If this card has "Number 43: Manipulator of Souls" as an Xyz Material, it gains this effect. ● Once per turn: You can detach 1 Xyz Material from this card; Special Summon 1 "Manipulator Token" (Fiend-Type/DARK/Level 1/ATK ... | --CNo.43 魂魄傀儡鬼神カオス・マリオネッター
--Number C43: High Manipulator of Chaos
local s,id=GetID()
function s.initial_effect(c)
--xyz summon
Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_DARK),3,4)
c:EnableReviveLimit()
--atk
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EF... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 "Trickstar" monsters Each time a "Trickstar" monster(s) is Normal or Special Summoned to a zone(s) this card points to, inflict 200 damage to your opponent. "Trickstar" monsters this card points to cannot be destroyed by battle or card effects. Each time your opponent takes damage by a "Trickstar" monster's effect: T... | --トリックスター・ホーリーエンジェル
--Trickstar Holly Angel
local s,id=GetID()
function s.initial_effect(c)
--link summon
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_TRICKSTAR),2,2)
c:EnableReviveLimit()
--damage
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ Level 2 monsters Cannot be destroyed by battle, also you take no damage from battles involving this card. All monsters your opponent controls must attack, if able. When an attack is declared: You can activate 1 of these effects; ● Detach 1 material from this card, and if you do, place 1 Hallucination Counter on 1 fa... | --No.2 蚊学忍者シャドー・モスキート
--Number 2: Ninja Shadow Mosquito
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon Procedure
Xyz.AddProcedure(c,nil,2,2,nil,nil,Xyz.InfiniteMats)
--Cannot be destroyed by battle
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be used as an Xyz Material for an Xyz Summon, except for the Xyz Summon of an Insect-Type monster. Once per turn, if this card is in Attack Position: You can target 1 Level 3 Insect-Type monster in your Graveyard; change this card to Defense Position, and if you do, Special Summon that monster in Defense Positio... | --電子光虫-コクーンデンサ
--Digital Bug Cocoondenser
local s,id=GetID()
function s.initial_effect(c)
--xyzlimit
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetCode(EFFECT_CANNOT_BE_XYZ_MATERIAL)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e0:SetValue(s.xyzlimit)
c:RegisterEffect(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Link Monster's effect is activated that targets this face-up card on the field (Quick Effect): You can destroy this card, then destroy all your opponent's cards in the column this card was in. During the End Phase, if this card is in the GY because it was destroyed on the field by battle or card effect and sent ... | --メタルヴァレット・ドラゴン
--Metalrokket Dragon
--Scripted by Eerie Code
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_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetRange(LOCATION_MZONE)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn: You can target 1 other Level 3 Beast-Warrior-Type monster you control; the Levels of that monster and this card become the combined Levels of those monsters. | --ラインモンスター スピア・ホイール
--Shogi Lance
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1)
e1:SetTarget(s.target)
e1:SetOper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a Link Monster's effect is activated that targets this face-up card on the field (Quick Effect): You can destroy this card, then look at your opponent's Extra Deck and banish 1 card from it. During the End Phase, if this card is in the GY because it was destroyed on the field by battle or card effect and sent ther... | --シルバーヴァレット・ドラゴン
--Silverrokket Dragon
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
--banish
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_CHAINING)
e1:SetProperty(E... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1 non-Tuner monster Once per turn, during your opponent's Main Phase, you can (Quick Effect): Immediately after this effect resolves, Synchro Summon using this card you control. You can only use each of the following effects of "T.G. Mighty Striker" once per turn. If this card is Synchro Summoned: You can add... | --TG マイティ・ストライカー
--T.G. Mighty Striker
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Synchro Summon procedure
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,1)
--Synchro Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When your opponent Special Summons a monster(s) (except during the Damage Step): You can discard this card and 1 Spell; destroy that monster(s). You can only use this effect of "Singularity Fiend" once per turn. | --特異点の悪魔
--Singularity Fiend
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Destroy a monster(s) Special Summoned by your opponent when that monster(s) is Special Summoned
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Feral Imp" + "Snakeyashi" | --バラに棲む悪霊
--Rose Spectre of Dunn
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,41392891,29802344)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Special Summoned. You can Tribute this card, then target 1 "Zombie World" in your GY; add that target to your hand. | --イモータル・ルーラー
--Immortal Ruler
local s,id=GetID()
function s.initial_effect(c)
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:RegisterEffect(e1)
--salvage
local e2=Eff... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand) by sending 3 face-up Continuous Spells you control to the GY. If this card destroys an opponent's monster by battle and sends it to the GY: Inflict 1000 damage to your opponent. While this card is in face-up Defense Position, monsters your opponen... | --降雷皇ハモン
--Hamon, Lord of Striking Thunder
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--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_SPSUMMON_CONDITION)
e1:S... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 non-Link "Tenyi" monster | --Skyforce Monk
--Monk of the Tenyi
local s,id=GetID()
function s.initial_effect(c)
--Link summon method
c:EnableReviveLimit()
Link.AddProcedure(c,s.matfilter,1,1)
end
function s.matfilter(c,lc,stype,tp)
return c:IsSetCard(SET_TENYI,lc,stype,tp) and not c:IsType(TYPE_LINK,lc,stype,tp)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2 Level 4 monsters You can detach 1 material from this card, then activate 1 of these effects; ● Add 1 Rock monster from your Deck to your hand. ● Special Summon 1 Rock monster from your hand in face-down Defense Position. You can only use this effect of "Gallant Granite" once per turn. | --御影志士
--Gallant Granite
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure
Xyz.AddProcedure(c,nil,4,2)
--Activate 1 of these effects
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is discarded directly from your hand to the Graveyard by an effect of a card controlled by your opponent, inflict 1000 points of damage to your opponent's Life Points. | --イビー
--Minar
local s,id=GetID()
function s.initial_effect(c)
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_GRAVE)
e1:SetCondition(s... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a Level 7 or higher WATER or FIRE monster: Apply the appropriate effects, in sequence, depending on the Attributes of monsters you control at that time. ● WATER: Special Summon as many WATER monsters as possible that were sent to your Graveyard to activate monster effects this turn, then destroy 1 monste... | --燃え上がる大海
--High Tide on Fire Island
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DESTROY+CATEGORY_HANDES)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTi... |
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) by sending 1 "Tri-Blaze Accelerator" you control to the GY. During your opponent's Battle Phase, all Attack Position monsters your opponent controls that can attack must attack this card. If this card destroys a monster by battle and sends i... | --ヴォルカニック・デビル
--Volcanic Doomfire
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special Summon procedure
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EFFEC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Fusion Summon 1 "Dracotail" monster from your Extra Deck, using monsters from your hand, Deck, or field, also for the rest of this turn after this card resolves, you cannot Special Summon from the Extra Deck, except Fusion Monsters. You can only activate 1 "Rahu Dracotail" per turn. | --羅睺星辰
--Rahu Dracotail
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
local params={handler=c,fusfilter=aux.FilterBoolFunction(Card.IsSetCard,SET_DRACOTAIL),extrafil=s.extramat,stage2=s.summonlimit,extratg=s.extratg}
--Fusion Summon 1 "Dragontail" Fusion Monster from your Extra Deck, using monste... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can attack twice during each Battle Phase. If this card attacks a face-down Defense Position monster, you can destroy that monster immediately with this card's effect without flipping it face-up or applying damage calculation. | --エレキンモグラ
--Wattmole
local s,id=GetID()
function s.initial_effect(c)
--extra attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_EXTRA_ATTACK)
e1:SetValue(1)
c:RegisterEffect(e1)
--destroy
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate 1 of the following effects. ● Target 1 face-up monster you control; it gains 800 ATK until the end of this turn. ● Target 1 Equip Spell in either GY; Set it to your field, or equip it to 1 appropriate monster you control. You can only activate 1 "Arms Regeneration" per turn. | --武装再生
--Arms Regeneration
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Make a monster gain 800 ATK or Set or Equip a card from the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When you activate this card, you can also Tribute 1 Plant monster; Special Summon 1 "Rikka" monster from your GY in Defense Position, then, if you Tributed a monster when you activated this card, Special Summon 1 Plant monster from your GY in Defense Position. You can only activate 1 "Rikka Tranquility" per turn. | --六花深々
--Rikka Tranquility
--scripted by Naim, updated by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 3 Level 10 monsters At the start of the Damage Step, if this card battles an opponent's monster: You can attach that monster to this card as a face-up Xyz Material. Once per turn: You can inflict 300 damage to your opponent for each Xyz Material attached to this card. If this card has "Number 9: Dyson Sphere" as an Xyz... | --CNo.9 天蓋妖星カオス・ダイソン・スフィア
--Number C9: Chaos Dyson Sphere
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Xyz Summon procedure: 3 Level 10 monsters
Xyz.AddProcedure(c,nil,10,3)
--Attach an opponent's monster this card battles to this card
local e1=Effect.CreateEffect(c)
e1:SetDescription(a... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Send 1 Level 7 "Red-Eyes" monster from your hand to the GY; draw 2 cards, then you can send 1 Level 7 "Red-Eyes" monster from your Deck to the GY. You can only activate 1 "Cards of the Red Stone" per turn. | --紅玉の宝札
--Cards of the Red Stone
local s,id=GetID()
function s.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
e1:SetCo... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Tribute Summoned while you control no Spells/Traps: You can activate this effect; your opponent declares either Continuous Spell or Continuous Trap, then you Set 1 card of that type directly from your Deck. This card gains 300 ATK for each face-up Spell/Trap you control. Face-up cards in your Spell & ... | --The despair URANUS
--The Despair Uranus
local s,id=GetID()
function s.initial_effect(c)
--Your opponent declares either Continuous Spell or Continuous Trap, then you Set 1 card of that type from your Deck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TY... |
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 "Dragonmaid" Spell/Trap from your Deck to your hand. At the start of the Battle Phase: You can return this card to the hand, and if you do, Special Summon 1 Level 7 or higher "Dragonmaid" monster from your hand or GY. You can only use each effect of "Chamber Dra... | --ドラゴンメイド・チェイム
--Chamber Dragonmaid
--Logical Nonsense
--Substitute ID
local s,id=GetID()
function s.initial_effect(c)
--Upon normal summon, add 1 "Dragonmaid" spell/trap
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,1))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_TRI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Pay LP so that you only have 100 left; Special Summon as many "Six Samurai" monsters with different names from your GY as possible. You cannot Special Summon a monster with the same name as a card that is already on the field. * The above text is unofficial and describes the card's functionality in the OCG. | --究極・背水の陣
--Backs to the Wall
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(s.cost)
e1:SetTarget(s.tg)
e1:SetOperation(s.op)
c:RegisterEffect(e1)
end
s.l... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Idaten the Conqueror Star" + 1 Level 5 or higher Warrior monster Once per turn, during the Battle Phase (Quick Effect): You can make the ATK of all face-up monsters your opponent currently controls 0. Once per battle, if a monster battles another monster, during damage calculation (Quick Effect): You can make each bat... | --覇道星シュラ
--Shura the Combat Star
local s,id=GetID()
function s.initial_effect(c)
--Fusion Procedure
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,96220350,s.ffilter)
--Change ATK to 0
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 2+ monsters, except Tokens This card gains these effects based on the number of monsters co-linked to this card. ● 1+: If a monster co-linked to this card battles your opponent's monster, any battle damage it inflicts to your opponent is doubled. ● 2+: Once per turn: You can target 1 card on the field; banish it. ● 3: ... | --トライゲート・ウィザード
--Tri-Gate Wizard
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Link Summon procedure: 2+ monsters, except Tokens
Link.AddProcedure(c,aux.FilterBoolFunctionEx(aux.NOT(Card.IsType),TYPE_TOKEN),2)
--If a monster co-linked to this card battles your opponent's monster, any battl... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is discarded to the GY by card effect: Special Summon this card, then, if it was discarded from your hand to your GY by an opponent's card effect, your opponent places exactly 2 cards from their hand on the bottom of their Deck, in any order. | --暗黒界の軍神 シルバ
--Sillva, Warlord of Dark World
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+CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_TO_GRAVE)
e1:... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn, when an effect of a "Penguin" monster is activated: Special Summon this card from your Graveyard. You can only use this effect of "Nopenguin" once per turn. If a card would be returned from the field to the hand by the effect of a "Penguin" card, banish it instead. | --否定ペンギン
--Nopenguin
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_QUICK_F)
e1:SetCode(EVENT_CHAINING)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DAMAGE_CAL)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 Tuner + 1 or more non-Tuner monsters During your Main Phase 1: You can Tribute 1 monster; inflict damage to your opponent equal to the Tributed monster's Level on the field x 200. You can only use this effect of "Dark Strike Fighter" once per turn. | --ダーク・ダイブ・ボンバー
--Dark Strike Fighter
local s,id=GetID()
function s.initial_effect(c)
--synchro summon
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
c:EnableReviveLimit()
--damage
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCa... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a monster your opponent controls is destroyed by battle and sent to the Graveyard, you can send 1 monster you control to the Graveyard to destroy 1 monster your opponent controls. | --ドミノ
--Domino Effect
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--destroy
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetCategory(CATEGORY_DESTROY)
e... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Banish 1 "Destiny HERO" monster from your GY; add to your hand or Special Summon 1 "Destiny HERO" monster from your GY. You can banish this card from your GY, then target 2 "Destiny HERO" monsters you control; choose 1 of those monsters, and its ATK becomes the other monster's ATK. * The above text is unofficial and de... | --ドクターD
--Doctor D
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Add to your hand or Special Summon 1 "Destiny HERO" monster from your GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYP... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned: You can Special Summon any number of "Hero Kid"(s) from your Deck. | --ヒーロー・キッズ
--Hero Kid
local s,id=GetID()
function s.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_SPSUMMON_SUC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] While you control an "Amorphage" monster, cards cannot be added from either player's Main Deck to the hand, except by drawing them. Once per turn, during your Standby Phase, Tribute 1 monster or destroy this card. ---------------------------------------- [ Monster Effect ] Neither player can Special... | --アモルファージ・ノーテス
--Amorphage Sloth
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--maintenance cost
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE)
e1:SetRange(LOCATIO... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate this card by placing 7 counters on it. Each time an "Ursarctic" monster(s) is Special Summoned from the hand or Extra Deck: You can remove 1 counter from this card; draw 1 card. Once per turn, during the End Phase: You can target 1 "Ursarctic" card in your GY, except "Ursarctic Radiation"; shuffle it into the ... | --ベアルクティ・ラディエーション
--Ursarctic Radiation
--Scripted by Larry126
local s,id=GetID()
function s.initial_effect(c)
c:SetUniqueOnField(1,0,id)
c:EnableCounterPermit(0x209)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_COUNTER)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If this card is detached from an Xyz Monster and sent to the Graveyard to activate that monster's effect: You can Special Summon 1 Level 3 or lower monster from your hand. | --三段腹ナイト
--Big Belly Knight
local s,id=GetID()
function s.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you have 3 or more banished Fish, Sea Serpent, or Aqua-Type monsters: Target 1 card on the field; banish it. | --フィッシュアンドキックス
--Fish and Kicks
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:SetCondition(s.condition)
e1:SetTarget(s.target)
e1... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Special Summoned: You can Special Summon as many "Crystal Beast" Monster Cards as possible from your Spell & Trap Zones. If this face-up card is destroyed in a Monster Zone, you can place it face-up in your Spell & Trap Zone as a Continuous Spell, instead of sending it to the GY. | --宝玉獣ルビー・カーバンクル
--Crystal Beast Ruby Carbuncle
local s,id=GetID()
function s.initial_effect(c)
--send replace
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_TO_GRAVE_REDIRECT_CB)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetCondition(s.repcon)
e1:SetOperation(s.repop)
c:Registe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Activate only while you have no cards in your hand. Inflict 200 damage to your opponent for each Spell Card in your Graveyard. | --マジカル・エクスプロージョン
--Magical Explosion
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(s.condition)
e1:SetTarget(s.targ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Cannot be Normal Summoned/Set. Must be Special Summoned (from your hand or GY) by Tributing 1 Level 6 or higher DARK Dragon monster. You can only Special Summon "The Bystial Lubellion" once per turn this way. You can send this card from your hand to the GY; add 1 "Bystial" monster from your Deck to your hand, except "T... | --深淵の獣ルベリオン
--The Bystial Lubellion
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
--Special Summon condition
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e0:SetCode(EFFECT_SPSUMMON_CONDIT... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When this card is Normal or Special Summoned, you can Special Summon 1 Level 3 or lower "Genex" monster from your hand. | --レアル・ジェネクス・コーディネイター
--R-Genex Overseer
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:Se... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If you control a "Battlin' Boxer" monster, you can Special Summon this card (from your hand). If you do, you cannot conduct your Battle Phase for the rest of this turn. | --BK スパー
--Battlin' Boxer Sparrer
local s,id=GetID()
function s.initial_effect(c)
--Special Summon itself from the hand if you control a "Battlin' Boxer" monster
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATI... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | You can Special Summon this card (from your hand) by Tributing 2 WATER monsters. Once per turn: You can target 1 face-up monster on the field; place an Ice Counter on that target. You can Tribute this card; destroy all monsters with an Ice Counter(s). | --アイス・ブリザード・マスター
--Ice Master
local s,id=GetID()
function s.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(s.spcon)
e1:SetTarget(s.sptg)
e1:SetOpe... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Giant Soldier of Stone" + "Ancient Elf" | --砂の魔女
--Mystical Sand
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,13039848,93221206)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "UFOroid" + 1 Warrior monster A Fusion Summon of this card can only be done with the above Fusion Materials. The original ATK/DEF of this card become the combined original ATK of the 2 materials used for its Fusion Summon. | --ユーフォロイド・ファイター
--UFOroid Fighter
local s,id=GetID()
function s.initial_effect(c)
--fusion material
c:EnableReviveLimit()
Fusion.AddProcMix(c,false,false,7602840,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WARRIOR))
--atk
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetC... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Until the end of this turn, all DARK Spellcaster-Type monsters with 2000 or more ATK you currently control cannot be destroyed by battle, their effects are negated, also they are unaffected by your opponent's card effects. | --ブラック・イリュージョン
--Black Illusion
local s,id=GetID()
function s.initial_effect(c)
--Grant protection to your DARK spellcaster monsters with 2000+ ATK
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
e1:SetHintTiming(0,... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, during the Main Phase, if you control a "Bystial" monster: You can Tribute 1 Dragon monster, then target 1 card your opponent controls; destroy it. During the End Phase: You can target 1 "Branded" Continuous Spell/Trap in your GY; place it face-up on your field. You can only use this effect of "Branded B... | --烙印の獣
--Branded Beast
--scripted by Naim
local s,id=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--Destroy 1 monster the opponent controls
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card can attack your opponent directly. If this card attacks, it is destroyed at the end of the Battle Phase. If this card is destroyed by the effect of a "Scrap" card and sent to the Graveyard, you can select 1 "Scrap" monster in your Graveyard, except "Scrap Worm", and add it to your hand. | --スクラップ・ワーム
--Scrap Worm
local s,id=GetID()
function s.initial_effect(c)
--Register flag if this card declares an attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetOperation(s.regop)
c:Re... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | If your opponent controls more monsters than you do, you can Special Summon this card (from your hand). You can only Special Summon "Ancient Gear Statue" once per turn this way. You can Tribute this card; Special Summon from your hand or Deck, 1 "Ancient Gear Golem" or 1 monster that mentions it, except "Ancient Gear S... | --古代の機械像
--Ancient Gear Statue
--scripted by pyrQ
local s,id=GetID()
function s.initial_effect(c)
--If your opponent controls more monsters than you do, you can Special Summon this card (from your hand)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProper... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Rank 4 or lower Xyz Monster in your GY; Special Summon it. Its Attribute becomes WATER. You can banish this card from your GY, then target 1 WATER Xyz Monster you control; Special Summon from your Extra Deck, 1 WATER Xyz Monster that is 1 Rank higher than that monster you control, by using it as material. (Thi... | --エクシーズ・リバイブ・スプラッシュ
--Xyz Revive Splash
--Scripted by AlphaKretin
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:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLim... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Target 1 Machine "Cyber" Fusion Monster in your GY; return it to the Extra Deck or Special Summon it, ignoring its Summoning conditions. If a Machine "Cyber" Fusion Monster(s) you control would be destroyed by battle or card effect, you can banish this card from your GY instead. You can only use each effect of "Cyber E... | --エターナル・サイバー
--Cyber Eternal
--Scripted by The Razgriz
local s,id=GetID()
function s.initial_effect(c)
--Return to Extra Deck or Special Summon 1 Machine "Cyber" Fusion monster
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOEXTRA)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTyp... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | "Summoned Skull" + 1 DARK monster This card's name becomes "Summoned Skull" on the field, but is still treated as an "Archfiend" card. All "Summoned Skull" you control gain 500 ATK. If this Fusion Summoned card you control is sent to your GY by your opponent: You can Special Summon 1 "Summoned Skull" from your hand, De... | --デーモンの顕現
--Archfiend's Manifestation
--Scripted by AlphaKretin
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Fusion.AddProcMix(c,true,true,CARD_SUMMONED_SKULL,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_DARK))
--Change name
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SIN... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | When a monster declares an attack, while you control a Fiend monster: Target 1 card on the field; negate the attack, and if you do, destroy that targeted card, then, you can Set 1 non-"Labrynth" Normal Trap from your hand or Deck. | --フェアーウェルカム・ラビュリンス
--Farewelcome Labrynth
--Scripted by Yuno
local s,id=GetID()
function s.initial_effect(c)
--Negate attack and destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | [ Pendulum Effect ] Once per turn: You can increase this card's Pendulum Scale by 1 (max. 12). ---------------------------------------- [ Monster Effect ] When your Pendulum Monster is targeted for an attack: You can negate the attack. You can only use this effect of "Performapal Trumpanda" once per turn. | --EMラ・パンダ
--Performapal Trumpanda
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--scale change
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_PZONE)
e2:SetCountLimit(1)
e2:SetTarget(s.sctg)... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Add 1 Level 4 or lower Warrior monster from your Deck to your hand. | --増援
--Reinforcement of the Army
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
fu... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This monster can attack your opponent's Life Points directly. | --人造人間7号
--Jinzo #7
local s,id=GetID()
function s.initial_effect(c)
--direct attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DIRECT_ATTACK)
c:RegisterEffect(e1)
end |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During the turn you Normal Summoned this card, it can attack your opponent directly. If this card is Special Summoned from the GY: You can treat it as a Tuner this turn. | --白鱓
--White Moray
local s,id=GetID()
function s.initial_effect(c)
--Can attack directly during the turn it's Normal Summoned
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetOperation(s.sumsuc)
c:RegisterEffect(e1)
--Treat this card as ... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | 1 "Elemental HERO" Fusion Monster + 1+ Warrior monsters Must be Fusion Summoned. Gains 300 ATK for each material used for its Summon. This card can make a number of attacks on monsters each Battle Phase, up to the number of Fusion Monsters used as material for its Summon. After damage calculation, if this card battled ... | --Wake Up Your E・HERO
--Wake Up Your Elemental HERO
--Scripted by Eerie Code
local s,id=GetID()
function s.initial_effect(c)
c:EnableReviveLimit()
Fusion.AddProcMixRep(c,true,true,aux.FilterBoolFunctionEx(Card.IsRace,RACE_WARRIOR),1,99,s.mfilter)
--Must be Fusion Summoned
local e1=Effect.CreateEffect(c)
e1:SetType... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | This card is used to Ritual Summon "Ruin, Queen of Oblivion" or "Demise, King of Armageddon". You must also Tribute monsters from your field whose total Levels equal or exceed the Level of the Ritual Monster you Ritual Summon. During your Main Phase, except the turn this card was sent to the GY: You can shuffle this ca... | --エンドレス・オブ・ザ・ワールド
--Cycle of the World
local s,id=GetID()
function s.initial_effect(c)
--Ritual Summon "Ruin, Queen of Oblivion" or "Demise, King of Armageddon"
Ritual.AddProcGreater({handler=c,filter=s.ritualfil,matfilter=s.forcedgroup})
--Add 1 "End of the World" from your Deck to your hand, then, you can add 1 "R... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | Once per turn, when a monster(s) is sent from the field to the Graveyard by a card effect: Inflict 800 damage to the owner of the monster(s). | --クラッキング
--Cracking
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)
--damage
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e2:SetCode(EVENT_TO_GRA... |
Generate a YGOPro Lua script for the following Yu-Gi-Oh card effect: | During either player's turn, you can activate "Magical Musket" Spell/Trap Cards from your hand. If a Spell/Trap Card is activated in this card's column (except during the Damage Step): You can add 1 "Magical Musket" card from your Deck to your hand, but not a card with the same name as that activated card. You can only... | --魔弾の射手 カスパール
--Magical Musketeer Caspar
local s,id=GetID()
function s.initial_effect(c)
--"Magical Musket" Spell/Traps can be activated from the hand
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,2))
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_QP_ACT_IN_NTPHAND)
e1:SetRange(LOCATION_MZONE... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.