mattgodbolt / xania

Xania MUD source
Other
58 stars 13 forks source link

APPLY_SAVING_ROD etc all map to saving throw #192

Open mattgodbolt opened 4 years ago

mattgodbolt commented 4 years ago

e.g.

    case APPLY_SAVING_PARA: ch.saving_throw += mod; break;
    case APPLY_SAVING_ROD: ch.saving_throw += mod; break;
    case APPLY_SAVING_PETRI: ch.saving_throw += mod; break;
    case APPLY_SAVING_BREATH: ch.saving_throw += mod; break;
    case APPLY_SAVING_SPELL: ch.saving_throw += mod; break;

Not sure this is intentional?

mattgodbolt commented 4 years ago

That said: items with multiple savings will stack, so something with s vs rod 10 and save sv spell 10 will get a saving roll of 20.