| 1070 | } |
| 1071 | |
| 1072 | staticfn void |
| 1073 | peffect_blindness(struct obj *otmp) |
| 1074 | { |
| 1075 | if (Blind || ((HBlinded || EBlinded) && BBlinded)) |
| 1076 | gp.potion_nothing++; |
| 1077 | make_blinded(itimeout_incr(BlindedTimeout, |
| 1078 | rn1(200, 250 - 125 * bcsign(otmp))), |
| 1079 | (boolean) !Blind); |
| 1080 | } |
| 1081 | |
| 1082 | staticfn void |
| 1083 | peffect_gain_level(struct obj *otmp) |
no test coverage detected