Skip to content

Commit

Permalink
#1618 Adjusted scaling a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
Wotuu committed Apr 5, 2023
1 parent 75e42ac commit a149c84
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/Service/MDT/MDTMappingExportService.php
Expand Up @@ -183,14 +183,14 @@ private function getDungeonEnemies(MappingVersion $mappingVersion, Collection $t

$scaleMapping = [
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_NORMAL] => 0.8,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_ELITE] => 0.8,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_BOSS] => 1.2,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_FINAL_BOSS] => 1.2,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_RARE] => 1.2,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_ELITE] => 1,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_BOSS] => 1.6,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_FINAL_BOSS] => 1.6,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_RARE] => 1.6,
];

$dungeonEnemy = [
'name' => $npc->name,
'name' => addslashes($npc->name),
'id' => $npc->id,
'count' => $npc->enemy_forces,
'health' => $npc->base_health,
Expand Down

0 comments on commit a149c84

Please sign in to comment.