Skip to content

Commit 72f2e67

Browse files
committed
"Maliss <P> Chessy Cat" fix
Fixed an incorrect description shown when the player selects a card to be banished
1 parent 0f83aec commit 72f2e67

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

official/c96676583.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function s.initial_effect(c)
1313
e1:SetValue(LOCATION_REMOVED)
1414
e1:SetTarget(s.linkfilter)
1515
c:RegisterEffect(e1)
16-
--Banish 1 "Maliss" card from your hand
16+
--During your Main Phase: You can banish 1 "Maliss" card from your hand, then you can draw 2 cards
1717
local e2=Effect.CreateEffect(c)
1818
e2:SetDescription(aux.Stringid(id,0))
1919
e2:SetCategory(CATEGORY_REMOVE+CATEGORY_DRAW)
@@ -23,7 +23,7 @@ function s.initial_effect(c)
2323
e2:SetTarget(s.rmtg)
2424
e2:SetOperation(s.rmop)
2525
c:RegisterEffect(e2)
26-
--Special Summon this card
26+
--If this card is banished: You can pay 300 LP; Special Summon it, also you cannot Special Summon from the Extra Deck for the rest of this turn, except Link Monstes
2727
local e3=Effect.CreateEffect(c)
2828
e3:SetDescription(aux.Stringid(id,1))
2929
e3:SetCategory(CATEGORY_SPECIAL_SUMMON)
@@ -49,7 +49,7 @@ function s.rmtg(e,tp,eg,ep,ev,re,r,rp,chk)
4949
Duel.SetPossibleOperationInfo(0,CATEGORY_DRAW,nil,0,tp,2)
5050
end
5151
function s.rmop(e,tp,eg,ep,ev,re,r,rp)
52-
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TOGRAVE)
52+
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_REMOVE)
5353
local g=Duel.SelectMatchingCard(tp,s.rmfilter,tp,LOCATION_HAND,0,1,1,nil)
5454
if #g>0 and Duel.Remove(g,POS_FACEUP,REASON_EFFECT)>0 and Duel.IsPlayerCanDraw(tp,2)
5555
and Duel.SelectYesNo(tp,aux.Stringid(id,2)) then
@@ -68,7 +68,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
6868
if c:IsRelateToEffect(e) then
6969
Duel.SpecialSummon(c,0,tp,tp,false,false,POS_FACEUP)
7070
end
71-
--Cannot Special Summon monsters from the Extra Deck, except Link Monsters
71+
--You cannot Special Summon from the Extra Deck for the rest of this turn, except Link Monstes
7272
local e1=Effect.CreateEffect(c)
7373
e1:SetDescription(aux.Stringid(id,3))
7474
e1:SetType(EFFECT_TYPE_FIELD)

0 commit comments

Comments
 (0)