fix slime enemy types
This commit is contained in:
+2
-2
@@ -618,10 +618,10 @@ uint8_t battle_param_index_for_enemy_type(Episode episode, EnemyType enemy_type)
|
||||
return 0x20;
|
||||
case EnemyType::VOL_OPT_2:
|
||||
return 0x25;
|
||||
case EnemyType::POUILLY_SLIME:
|
||||
return 0x2F;
|
||||
case EnemyType::POFUILLY_SLIME:
|
||||
return 0x30;
|
||||
case EnemyType::POUILLY_SLIME:
|
||||
return 0x2F;
|
||||
case EnemyType::PAN_ARMS:
|
||||
return 0x31;
|
||||
case EnemyType::HIDOOM:
|
||||
|
||||
+2
-2
@@ -327,8 +327,8 @@ void Map::add_enemy(
|
||||
}
|
||||
case 0x0064: // TObjEneSlime
|
||||
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;
|
||||
break;
|
||||
case 0x0065: // TObjEnePanarms
|
||||
|
||||
Reference in New Issue
Block a user