@@ -16,10 +16,10 @@ function s.initial_effect(c)
1616 c :RegisterEffect (e2 )
1717 -- Tribute 1 monster or destroy this card
1818 local e3 = Effect .CreateEffect (c )
19- e3 :SetDescription (aux .Stringid (78371393 , 1 ))
19+ e3 :SetDescription (aux .Stringid (id , 0 ))
2020 e3 :SetCategory (CATEGORY_RELEASE + CATEGORY_DESTROY )
2121 e3 :SetType (EFFECT_TYPE_FIELD + EFFECT_TYPE_TRIGGER_F )
22- e3 :SetCode (EVENT_PHASE + PHASE_END )
22+ e3 :SetCode (EVENT_PHASE | PHASE_END )
2323 e3 :SetRange (LOCATION_MZONE )
2424 e3 :SetCountLimit (1 )
2525 e3 :SetCondition (s .descon )
@@ -28,11 +28,10 @@ function s.initial_effect(c)
2828 c :RegisterEffect (e3 )
2929 -- Special Summon "Yubel - Terror Incarnate" if destroyed
3030 local e4 = Effect .CreateEffect (c )
31- e4 :SetDescription (aux .Stringid (78371393 , 3 ))
31+ e4 :SetDescription (aux .Stringid (id , 2 ))
3232 e4 :SetCategory (CATEGORY_SPECIAL_SUMMON )
3333 e4 :SetType (EFFECT_TYPE_SINGLE + EFFECT_TYPE_TRIGGER_O )
3434 e4 :SetCode (EVENT_DESTROYED )
35- e4 :SetProperty (EFFECT_FLAG_DAMAGE_STEP )
3635 e4 :SetCondition (s .spcon )
3736 e4 :SetTarget (s .sptg )
3837 e4 :SetOperation (s .spop )
5352function s .desop (e ,tp ,eg ,ep ,ev ,re ,r ,rp )
5453 local c = e :GetHandler ()
5554 if c :IsFacedown () or not c :IsRelateToEffect (e ) then return end
56- if Duel .CheckReleaseGroup (tp ,Card .IsReleasableByEffect ,1 ,c ) and Duel .SelectYesNo (tp ,aux .Stringid (78371393 , 2 )) then
55+ if Duel .CheckReleaseGroup (tp ,Card .IsReleasableByEffect ,1 ,c ) and Duel .SelectYesNo (tp ,aux .Stringid (id , 1 )) then
5756 local g = Duel .SelectReleaseGroup (tp ,Card .IsReleasableByEffect ,1 ,1 ,c )
5857 Duel .Release (g ,REASON_EFFECT )
5958 else Duel .Destroy (c ,REASON_EFFECT ) end
0 commit comments