11 lines
555 B
Plaintext
11 lines
555 B
Plaintext
|
|
# 状态牌:由某些效果创建,洗入玩家牌堆或手牌
|
|||
|
|
# unplayable: 是否不可打出
|
|||
|
|
# effects: 状态牌在场时施加的效果
|
|||
|
|
|
|||
|
|
id, name, desc, unplayable, effects
|
|||
|
|
string, string, string, boolean, ['self'; @effectDesert; number][]
|
|||
|
|
wound, 伤口, 无效果,占用手牌和牌堆, true,
|
|||
|
|
venom, 蛇毒, 弃掉超过1张蛇毒时受到6伤害, true, [self; venom; 1]
|
|||
|
|
curse, 诅咒, 受攻击时物品攻击-1,直到弃掉一张该物品的牌, true, [self; curse; 1]
|
|||
|
|
static, 静电, 在手里时受电击伤害+1, true, [self; static; 1]
|