Skip to content

Commit a1a4f5b

Browse files
committed
script updates
1 parent 6a66f46 commit a1a4f5b

Some content is hidden

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

57 files changed

+65
-65
lines changed

official/c10732060.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--HSRグライダー2
2-
--Hi-Speedroid Glider 2
2+
--Hi-Speedroid Glider #2
33
--scripted by Naim
44
local s,id=GetID()
55
function s.initial_effect(c)
@@ -14,7 +14,7 @@ function s.initial_effect(c)
1414
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY)
1515
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
1616
e1:SetCountLimit(1,id)
17-
e1:SetCondition(function(e) return e:GetHandler():IsSummonType(SUMMON_TYPE_SYNCHRO) end)
17+
e1:SetCondition(function(e) return e:GetHandler():IsSynchroSummoned() end)
1818
e1:SetTarget(s.sptg)
1919
e1:SetOperation(s.spop)
2020
c:RegisterEffect(e1)

official/c11464648.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--刻まれし魔レクストレメンデ
2-
--Fiendsmith's Rex Tremendae
2+
--Fiendsmith's Rextremende
33
--scripted by Naim
44
local s,id=GetID()
55
function s.initial_effect(c)
@@ -23,7 +23,7 @@ function s.initial_effect(c)
2323
e2:SetProperty(EFFECT_FLAG_DELAY)
2424
e2:SetCode(EVENT_SPSUMMON_SUCCESS)
2525
e2:SetCountLimit(1,id)
26-
e2:SetCondition(function(e) return e:GetHandler():IsSummonType(SUMMON_TYPE_FUSION) end)
26+
e2:SetCondition(function(e) return e:GetHandler():IsFusionSummoned() end)
2727
e2:SetCost(s.tgcost)
2828
e2:SetTarget(s.tgtg)
2929
e2:SetOperation(s.tgop)

official/c15171722.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function s.setop(e,tp,eg,ep,ev,re,r,rp)
5151
end
5252
function s.tgcon(e,tp,eg,ep,ev,re,r,rp)
5353
local c=e:GetHandler()
54-
return c:IsSummonType(SUMMON_TYPE_NORMAL) or (c:IsSpecialSummoned() and c:HasFlagEffect(id))
54+
return c:IsNormalSummoned() or (c:IsSpecialSummoned() and c:HasFlagEffect(id))
5555
end
5656
function s.tgfilter(c)
5757
return c:IsMonster() and c:IsAttribute(ATTRIBUTE_FIRE) and c:IsRace(RACE_REPTILE|RACE_DINOSAUR) and c:IsAbleToGrave()

official/c24643913.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--叛逆者エト
2-
--Liberator Etho
2+
--Liberator Eto
33
--Scripted by Eerie Code
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c25865565.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--水晶機巧-サルファドール
2-
--Crystron Sulfudhole
2+
--Crystron Sulfador
33
--scripted by Naim
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c26434972.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--刻まれし魔の憐歌
2-
--Fiendsmith's Kyrie
2+
--Fiendsmith Kyrie
33
--scripted by Naim
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c26582143.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--剣闘獣ギステル
2-
--Gladiator Beast Magister
2+
--Gladiator Beast Gistel
33
--scripted by pyrQ
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c2674965.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--ARG☆S-HomeStadium
2-
--ARG☆S - Home Stadium
2+
--Argostars - Home Stadium
33
--Scripted by Hatter
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c27556460.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--原石の反叫
2-
--Primite Resounding Reaction
2+
--Primite Scream
33
--scripted by Naim
44
local s,id=GetID()
55
function s.initial_effect(c)

official/c27704731.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--鋼炎の剣士
2-
--Metal Flame Swordsman
2+
--Metalflame Swordsman
33
--scripted by Naim
44
local s,id=GetID()
55
function s.initial_effect(c)

0 commit comments

Comments
 (0)