Skip to content

Commit b339863

Browse files
committed
Update internal string ids for Unchained Abomination
1 parent d5fb95e commit b339863

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

official/c29479265.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function s.initial_effect(c)
66
--link summon
77
Link.AddProcedure(c,nil,2,4,s.lcheck)
88
c:EnableReviveLimit()
9-
--destroy
9+
--If a card(s) on the field is destroyed by card effect, except by "Unchained Abomination" (except during the Damage Step): You can target 1 card on the field; destroy it
1010
local e1=Effect.CreateEffect(c)
1111
e1:SetDescription(aux.Stringid(id,0))
1212
e1:SetCategory(CATEGORY_DESTROY)
@@ -19,16 +19,16 @@ function s.initial_effect(c)
1919
e1:SetTarget(s.destg)
2020
e1:SetOperation(s.desop)
2121
c:RegisterEffect(e1)
22-
--destroy!
22+
--When another monster is destroyed by battle: You can target 1 card on the field; destroy it
2323
local e2=e1:Clone()
24-
e2:SetDescription(aux.Stringid(id,0))
24+
e2:SetDescription(aux.Stringid(id,1))
2525
e2:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY+EFFECT_FLAG_DAMAGE_STEP)
2626
e2:SetCountLimit(1,{id,1})
2727
e2:SetCondition(s.descon2)
2828
c:RegisterEffect(e2)
29-
--destroy!!
29+
--During the End Phase: You can target 1 card on the field; destroy it
3030
local e3=e1:Clone()
31-
e3:SetDescription(aux.Stringid(id,0))
31+
e3:SetDescription(aux.Stringid(id,2))
3232
e3:SetProperty(EFFECT_FLAG_CARD_TARGET)
3333
e3:SetCode(EVENT_PHASE+PHASE_END)
3434
e3:SetCondition(aux.TRUE)
@@ -60,4 +60,4 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
6060
end
6161
function s.descon2(e,tp,eg,ep,ev,re,r,rp)
6262
return eg:IsExists(Card.IsReason,1,e:GetHandler(),REASON_BATTLE)
63-
end
63+
end

0 commit comments

Comments
 (0)