fix slime enemy types

This commit is contained in:
Martin Michelsen
2023-12-08 17:38:42 -08:00
parent b7bc148e09
commit fbf170ef12
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -618,10 +618,10 @@ uint8_t battle_param_index_for_enemy_type(Episode episode, EnemyType enemy_type)
return 0x20; return 0x20;
case EnemyType::VOL_OPT_2: case EnemyType::VOL_OPT_2:
return 0x25; return 0x25;
case EnemyType::POUILLY_SLIME:
return 0x2F;
case EnemyType::POFUILLY_SLIME: case EnemyType::POFUILLY_SLIME:
return 0x30; return 0x30;
case EnemyType::POUILLY_SLIME:
return 0x2F;
case EnemyType::PAN_ARMS: case EnemyType::PAN_ARMS:
return 0x31; return 0x31;
case EnemyType::HIDOOM: case EnemyType::HIDOOM:
+2 -2
View File
@@ -327,8 +327,8 @@ void Map::add_enemy(
} }
case 0x0064: // TObjEneSlime case 0x0064: // TObjEneSlime
add(this->check_and_log_rare_enemy(e.uparam1 & 0x01, rare_rates->pouilly_slime) add(this->check_and_log_rare_enemy(e.uparam1 & 0x01, rare_rates->pouilly_slime)
? EnemyType::POFUILLY_SLIME ? EnemyType::POUILLY_SLIME
: EnemyType::POUILLY_SLIME); : EnemyType::POFUILLY_SLIME);
default_num_children = 4; default_num_children = 4;
break; break;
case 0x0065: // TObjEnePanarms case 0x0065: // TObjEnePanarms