Corrected damage for micro rockets and spread plasma for Classic difficulty

This commit is contained in:
Layla Marchant 2020-12-26 14:30:40 -05:00
parent 69430b7a2a
commit b3252b3ea7
No known key found for this signature in database
GPG Key ID: 52FB5C20A8336782
1 changed files with 9 additions and 0 deletions

View File

@ -94,6 +94,15 @@ void bullet_add(Object *theWeapon, Object *attacker, int y, int dy)
bullet->damage = theWeapon->damage;
// Adjustments to damage for Classic difficulty (to match original)
if (game.difficulty == DIFFICULTY_ORIGINAL)
{
if (bullet->id == WT_MICROROCKET)
bullet->damage = 3;
else if (bullet->id == WT_SPREAD)
bullet->damage = 1;
}
if (bullet->id == WT_CHARGER)
{
if (game.difficulty == DIFFICULTY_ORIGINAL)