Skip to content

Commit

Permalink
Added Bounty as Hunter (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiraakDG committed Nov 2, 2024
1 parent 405c552 commit e1db6c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions dist/app/Enums/Game/Characters.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ enum Characters: string
case Poacher = 'Poacher';
case Inquisitor = 'Inquisitor';
case Mass = 'Mass';
case Bounty = 'Bounty';

// Runners
case Smoke = 'Smoke';
Expand Down
2 changes: 2 additions & 0 deletions dist/app/Enums/Game/ItemGroupType.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ enum ItemGroupType: string
case HunterInquisitor = 'HunterGroupB';
case HunterPoacher = 'HunterGroupC';
case HunterVeteran = 'HunterGroupD';
case HunterBounty = 'HunterGroupE';

// Not used by game but needed for InitOrGetGroups
case PlayerProgression = 'PlayerProgression';
Expand All @@ -36,6 +37,7 @@ public function getCharacter(): Characters|false
ItemGroupType::HunterInquisitor => Characters::Inquisitor,
ItemGroupType::HunterPoacher => Characters::Poacher,
ItemGroupType::HunterVeteran => Characters::Mass,
ItemGroupType::HunterBounty => Characters::Bounty,
default => false,
};
}
Expand Down
3 changes: 2 additions & 1 deletion dist/app/Enums/Game/MetadataGroup.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
w<?php

namespace App\Enums\Game;

Expand All @@ -15,6 +15,7 @@ enum MetadataGroup: string
case Inquisitor = 'HunterGroupB';
case Poacher = 'HunterGroupC';
case Veteran = 'HunterGroupD';
case Bounty = 'HunterGroupE';

case Profile = 'ProfileMetadata';

Expand Down

0 comments on commit e1db6c2

Please sign in to comment.