Index: script/c0.lua ================================================================== --- script/c0.lua +++ script/c0.lua @@ -50,14 +50,16 @@ fun["是否效果卡"] = function(card) cache_1 = Card.IsType(card, TYPE_SPELL) cache_2 = Card.IsType(card, TYPE_TRAP) cache_3 = Card.IsType(card, TYPE_EFFECT) + cache_4 = Card.IsType(card, TYPE_PENDULUM) if cache_1 or cache_2 - or cache_3 then + or cache_3 + or cache_4 then return true end return false end