Skip to content

Commit 29c05f2

Browse files
committed
Update remaining usages of aux.SelfBanishCost
1 parent e799a61 commit 29c05f2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

unofficial/c511000366.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function s.initial_effect(c)
88
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
99
e1:SetType(EFFECT_TYPE_IGNITION)
1010
e1:SetRange(LOCATION_GRAVE)
11-
e1:SetCost(aux.SelfBanishCost)
11+
e1:SetCost(Cost.SelfBanish)
1212
e1:SetTarget(s.sptg)
1313
e1:SetOperation(s.spop)
1414
c:RegisterEffect(e1)
@@ -28,4 +28,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
2828
if #g>0 then
2929
Duel.SpecialSummon(g,0,tp,tp,true,false,POS_FACEUP)
3030
end
31-
end
31+
end

unofficial/c511009378.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ end
7878
function s.regop(e,tp,eg,ep,ev,re,r,rp)
7979
local c=e:GetHandler()
8080
if c:IsPreviousLocation(LOCATION_ONFIELD) and c:IsReason(REASON_DESTROY) then
81-
--Search 1 "Cipher Wing"
81+
--Search 1 "Cipher Wing"
8282
local e1=Effect.CreateEffect(c)
8383
e1:SetDescription(aux.Stringid(id,0))
8484
e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND)
8585
e1:SetType(EFFECT_TYPE_IGNITION)
8686
e1:SetRange(LOCATION_GRAVE)
87-
e1:SetCost(aux.selfbanishcost)
87+
e1:SetCost(Cost.SelfBanish)
8888
e1:SetTarget(s.thtg)
8989
e1:SetOperation(s.tgop)
9090
e1:SetReset(RESET_EVENT|RESETS_STANDARD|RESET_PHASE|PHASE_END)
@@ -105,4 +105,4 @@ function s.tgop(e,tp,eg,ep,ev,re,r,rp)
105105
Duel.SendtoHand(g,nil,REASON_EFFECT)
106106
Duel.ConfirmCards(1-tp,g)
107107
end
108-
end
108+
end

unofficial/c511009957.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function s.initial_effect(c)
1111
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
1212
e1:SetCountLimit(1,id)
1313
e1:SetCondition(s.damcon)
14-
e1:SetCost(aux.selfbanishcost)
14+
e1:SetCost(Cost.SelfBanish)
1515
e1:SetOperation(s.dmop)
1616
c:RegisterEffect(e1)
1717
--Search 1 "Gouki" card
@@ -94,4 +94,4 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
9494
Duel.SendtoHand(g,nil,REASON_EFFECT)
9595
Duel.ConfirmCards(1-tp,g)
9696
end
97-
end
97+
end

0 commit comments

Comments
 (0)