Commit 5fe5dba2 authored by a597449807's avatar a597449807 Committed by GitHub

Fix Mind Castlin (#2720)

修复②效果脚本里写了两个SetProperty,导致在某些情况下不能正常使用的问题。
parent 2008c090
...@@ -20,9 +20,8 @@ function s.initial_effect(c) ...@@ -20,9 +20,8 @@ function s.initial_effect(c)
e2:SetDescription(aux.Stringid(id,1)) e2:SetDescription(aux.Stringid(id,1))
e2:SetCategory(CATEGORY_CONTROL) e2:SetCategory(CATEGORY_CONTROL)
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e2:SetProperty(EFFECT_FLAG_DELAY) e2:SetProperty(EFFECT_FLAG_DELAY+EFFECT_FLAG_CARD_TARGET)
e2:SetCode(EVENT_TO_GRAVE) e2:SetCode(EVENT_TO_GRAVE)
e2:SetProperty(EFFECT_FLAG_CARD_TARGET)
e2:SetCountLimit(1,id+o) e2:SetCountLimit(1,id+o)
e2:SetCondition(s.ctcon) e2:SetCondition(s.ctcon)
e2:SetTarget(s.cttg) e2:SetTarget(s.cttg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment