1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
[
{
"type": "effect_type",
"id": "leechpoison",
"name": [ "abominable leech poison" ],
"int_add_val": 1,
"max_intensity": 10,
"resist_trait": [ "POISRESIST" ],
"base_mods": { "per_mod": [ -2 ], "dex_mod": [ -1 ], "str_mod": [ -1 ], "int_mod": [ -3 ], "speed_mod": [ -5 ] },
"scaling_mods": { "per_mod": [ -1, 0 ], "dex_mod": [ -1, -0.75 ], "str_mod": [ -1, -0.5 ], "int_mod": [ -2, -1 ], "speed_mod": [ -15 ] }
},
{
"type": "effect_type",
"id": "leechvenom",
"name": [ "venomous leech poison" ],
"int_add_val": 1,
"max_intensity": 15,
"resist_trait": [ "POISRESIST" ],
"base_mods": { "per_mod": [ -4 ], "dex_mod": [ -2 ], "str_mod": [ -2 ], "int_mod": [ -5 ], "speed_mod": [ -15 ] },
"scaling_mods": { "per_mod": [ -1, -0.25 ], "dex_mod": [ -1 ], "str_mod": [ -2, 0 ], "int_mod": [ -4, -2.5 ], "speed_mod": [ -15 ] }
},
{
"type": "effect_type",
"id": "profane_curse",
"name": [ "Profane Curse" ],
"desc": [ "A curse lingers through your body, amplifying elemental damage you take." ],
"apply_message": "You've been cursed.",
"remove_message": "You feel your body thaw from the curse.",
"rating": "bad",
"show_in_info": true,
"base_mods": { "environmental_protection": [ -2 ] }
},
{
"type": "effect_type",
"id": "vamp_conceal",
"name": [ "Conceal" ],
"desc": [ "Your body is invisible to the naked eye." ],
"apply_message": "You've turned invisible!",
"remove_message": "You reveal yourself.",
"rating": "bad",
"show_in_info": true,
"flags": [ "EFFECT_INVISIBLE" ],
"base_mods": { "speed_mod": [ -50 ] }
}
]
|