-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: syndicate jobs now have the type
fix: added missing faction, cleaned up factions
- Loading branch information
1 parent
7182107
commit 11b8dcd
Showing
4 changed files
with
41 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,46 @@ | ||
use super::macros::enum_builder; | ||
enum_builder! { | ||
:"A Mission Type in Warframe" | ||
MissionType; | ||
AncientRetribution = "Ancient Retribution", | ||
Arena = "Arena", | ||
Assassination = "Assassination", | ||
Assault = "Assault", | ||
Capture = "Capture", | ||
Conclave = "Conclave", | ||
Arena, | ||
Assassination, | ||
Assault, | ||
Capture, | ||
Conclave, | ||
DarkSectorDefection = "Dark Sector Defection", | ||
DarkSectorDefense = "Dark Sector Defense", | ||
DarkSectorDisruption = "Dark Sector Disruption", | ||
DarkSectorExcavation = "Dark Sector Excavation", | ||
DarkSectorSabotage = "Dark Sector Sabotage", | ||
DarkSectorSurvival = "Dark Sector Survival", | ||
Defense = "Defense", | ||
Disruption = "Disruption", | ||
Excavation = "Excavation", | ||
Defense, | ||
Disruption, | ||
Excavation, | ||
ExterminationArchwing = "Extermination (Archwing)", | ||
Extermination = "Extermination", | ||
Extermination, | ||
FreeRoam = "Free Roam", | ||
Hijack = "Hijack", | ||
Hive = "Hive", | ||
Hijack, | ||
Hive, | ||
HiveSabotage = "Hive Sabotage", | ||
Interception = "Interception", | ||
Interception, | ||
InterceptionArchwing = "Interception (Archwing)", | ||
MobileDefense = "Mobile Defense", | ||
MobileDefenseArchwing = "Mobile Defense (Archwing)", | ||
OrokinSabotage = "Orokin Sabotage", | ||
Orphix = "Orphix", | ||
Orphix, | ||
PursuitArchwing = "Pursuit (Archwing)", | ||
Relay = "Relay", | ||
Rescue = "Rescue", | ||
Relay, | ||
Rescue, | ||
RushArchwing = "Rush (Archwing)", | ||
Sabotage = "Sabotage", | ||
Sabotage, | ||
SabotageArchwing = "Sabotage (Archwing)", | ||
Skirmish = "Skirmish", | ||
Spy = "Spy", | ||
Survival = "Survival", | ||
Volatile = "Volatile", | ||
Alchemy = "Alchemy", | ||
Corruption = "Corruption", | ||
Skirmish, | ||
Spy, | ||
Survival, | ||
Volatile, | ||
Alchemy, | ||
Corruption, | ||
VoidCascade = "Void Cascade", | ||
Defection | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters