Skip to content

Commit 63f0309

Browse files
committed
script update
correct card names in the scripts
1 parent da0d2e8 commit 63f0309

File tree

142 files changed

+282
-282
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+282
-282
lines changed

official/c10019086.lua

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
-- 鉄獣式強襲機動兵装改"BucephalusⅡ"
2-
-- Tri-Brigade Arms Bucephalus II
3-
-- Scripted by Hatter
1+
--鉄獣式強襲機動兵装改"BucephalusⅡ"
2+
--Tri-Brigade Arms Bucephalus II
3+
--Scripted by Hatter
44
local s,id=GetID()
55
function s.initial_effect(c)
66
c:EnableReviveLimit()
7-
-- 3+ Beast, Beast-Warrior, and/or Winged Beast monsters
7+
--Link Summon Procedure: 3+ Beast, Beast-Warrior, and/or Winged Beast monsters
88
Link.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsRace,RACES_BEAST_BWARRIOR_WINGB),3,5)
9-
-- Special Summon restriction
9+
--Special Summon restriction
1010
local e0=Effect.CreateEffect(c)
1111
e0:SetType(EFFECT_TYPE_SINGLE)
1212
e0:SetCode(EFFECT_SPSUMMON_COST)
1313
e0:SetCost(s.spcost)
1414
c:RegisterEffect(e0)
15-
-- Opponent cannot activate cards or effects on Special Summon
15+
--Opponent cannot activate cards or effects on Special Summon
1616
local e1=Effect.CreateEffect(c)
1717
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
1818
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
1919
e1:SetRange(LOCATION_MZONE)
2020
e1:SetOperation(s.sucop)
2121
c:RegisterEffect(e1)
22-
-- Banish cards
22+
--Banish cards
2323
local e2=Effect.CreateEffect(c)
2424
e2:SetDescription(aux.Stringid(id,0))
2525
e2:SetCategory(CATEGORY_REMOVE)
@@ -29,7 +29,7 @@ function s.initial_effect(c)
2929
e2:SetTarget(s.rmtg)
3030
e2:SetOperation(s.rmop)
3131
c:RegisterEffect(e2)
32-
-- Send 1 Beast, Beast-Warrior, or Winged Beast monster to the GY
32+
--Send 1 Beast, Beast-Warrior, or Winged Beast monster to the GY
3333
local e3=Effect.CreateEffect(c)
3434
e3:SetDescription(aux.Stringid(id,1))
3535
e3:SetCategory(CATEGORY_TOGRAVE)

official/c10125011.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
-- 星守の騎士団
2-
-- Constellar Tellarknights
3-
-- Scripted by Satella
1+
--星守の騎士団
2+
--Constellar Tellarknights
3+
--Scripted by Satella
44
local s,id=GetID()
55
function s.initial_effect(c)
66
--Activate and (you can) Special Summon from the hand or GY
@@ -12,7 +12,7 @@ function s.initial_effect(c)
1212
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
1313
e1:SetOperation(s.activate)
1414
c:RegisterEffect(e1)
15-
-- Special Summon 1 "tellarknight" or "Constellar" Xyz Monster
15+
--Special Summon 1 "tellarknight" or "Constellar" Xyz Monster
1616
local e2=Effect.CreateEffect(c)
1717
e2:SetDescription(aux.Stringid(id,1))
1818
e2:SetCategory(CATEGORY_SPECIAL_SUMMON)

official/c10140443.lua

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
-- 転生炎獣バースト・グリフォン
2-
-- Salamangreat Burst Gryphon
3-
-- Scripted by Satella
1+
--転生炎獣バースト・グリフォン
2+
--Salamangreat Burst Gryphon
3+
--Scripted by Satella
44
local s,id=GetID()
55
function s.initial_effect(c)
66
c:EnableReviveLimit()
77
aux.EnableCheckReincarnation(c)
8-
-- Synchro Summon procedure
8+
--Synchro Summon procedure: 1 Tuner + 1+ non-Tuner monsters
99
Synchro.AddProcedure(c,nil,1,1,Synchro.NonTuner(nil),1,99)
10-
-- Special Summon 1 monster from your GY during the next Standby Phase
10+
--Special Summon 1 monster from your GY during the next Standby Phase
1111
local e1=Effect.CreateEffect(c)
1212
e1:SetDescription(aux.Stringid(id,0))
1313
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
@@ -19,7 +19,7 @@ function s.initial_effect(c)
1919
e1:SetTarget(s.efftg)
2020
e1:SetOperation(s.effop)
2121
c:RegisterEffect(e1)
22-
-- Special Summon 1 Level 7 or lower FIRE monster from your GY
22+
--Special Summon 1 Level 7 or lower FIRE monster from your GY
2323
local e2=Effect.CreateEffect(c)
2424
e2:SetDescription(aux.Stringid(id,1))
2525
e2:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_LVCHANGE)
@@ -34,15 +34,15 @@ end
3434
s.listed_names={id}
3535
function s.effcon(e,tp,eg,ep,ev,re,r,rp)
3636
local c=e:GetHandler()
37-
return c:IsReincarnationSummoned() and c:IsSummonType(SUMMON_TYPE_SYNCHRO)
37+
return c:IsReincarnationSummoned() and c:IsSynchoSummoned()
3838
end
3939
function s.efftg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
4040
if chk==0 then return true end
4141
Duel.SetPossibleOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_GRAVE)
4242
end
4343
function s.effop(e,tp,eg,ep,ev,re,r,rp)
4444
local c=e:GetHandler()
45-
-- Special Summon 1 monster from your GY during the next Standby Phase
45+
--Special Summon 1 monster from your GY during the next Standby Phase
4646
local e1=Effect.CreateEffect(c)
4747
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
4848
e1:SetCode(EVENT_PHASE|PHASE_STANDBY)

official/c10333641.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
-- 超重武者オン-32
2-
-- Superheavy Samurai Stealthy
3-
-- Scripted by Satella
1+
--超重武者オン-32
2+
--Superheavy Samurai Stealthy
3+
--Scripted by Satella
44
local s,id=GetID()
55
function s.initial_effect(c)
6-
-- Special Summon itself from the hand
6+
--Special Summon itself from the hand
77
local e1=Effect.CreateEffect(c)
88
e1:SetType(EFFECT_TYPE_FIELD)
99
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
@@ -12,7 +12,7 @@ function s.initial_effect(c)
1212
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
1313
e1:SetCondition(s.spcon)
1414
c:RegisterEffect(e1)
15-
-- Set 1 Spell/Trap frm the opponent's GY to your field
15+
--Set 1 Spell/Trap frm the opponent's GY to your field
1616
local e2=Effect.CreateEffect(c)
1717
e2:SetDescription(aux.Stringid(id,0))
1818
e2:SetCategory(CATEGORY_LEAVE_GRAVE)
@@ -50,7 +50,7 @@ end
5050
function s.setop(e,tp,eg,ep,ev,re,r,rp)
5151
local tc=Duel.GetFirstTarget()
5252
if tc:IsRelateToEffect(e) and tc:IsSSetable() and Duel.SSet(tp,tc)>0 then
53-
-- Banish it when it leaves the field
53+
--Banish it when it leaves the field
5454
local e1=Effect.CreateEffect(e:GetHandler())
5555
e1:SetDescription(3300)
5656
e1:SetType(EFFECT_TYPE_SINGLE)

official/c10474647.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--五月豹
2-
--May Malaipard
2+
--Depresspard
33
--scripted by pyrQ
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c10632284.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function s.operation(e,tp,eg,ep,ev,re,r,rp)
6363
local rc,att=e:GetLabel()
6464
local c=e:GetHandler()
6565
if tc:IsDifferentRace(rc) then
66-
-- Change monster type
66+
--Change monster type
6767
local e1=Effect.CreateEffect(c)
6868
e1:SetType(EFFECT_TYPE_SINGLE)
6969
e1:SetCode(EFFECT_CHANGE_RACE)
@@ -72,7 +72,7 @@ function s.operation(e,tp,eg,ep,ev,re,r,rp)
7272
tc:RegisterEffect(e1)
7373
end
7474
if tc:IsAttributeExcept(att) then
75-
-- Change attribute
75+
--Change attribute
7676
local e1=Effect.CreateEffect(c)
7777
e1:SetType(EFFECT_TYPE_SINGLE)
7878
e1:SetCode(EFFECT_CHANGE_ATTRIBUTE)

official/c10666000.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--No.1 インフェクション・バアル・ゼブル
2-
--Number 1: Infection Buzz King
2+
--Number 1: Infection Buzzking
33
--scripted by pyrQ, adapted from the anime script
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c10796448.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--A★スペキュレーション
2-
--A★Speculation
2+
--Ace★Spades Speculation
33
--Scripted by Eerie Code
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c10804018.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--粛声なる竜神サフィラ
2-
--Saffira, the Silenforcing Deity of Dragons
2+
--Saffira, Divine Dragon of the Voiceless Voice
33
--scripted by Naim
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c11024707.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--回猫
2-
--Purrfect Lander
2+
--Flipping Feline
33
--Scripted by Hatter
44
local s,id=GetID()
55
function s.initial_effect(c)

0 commit comments

Comments
 (0)