Starsector API
Loading...
Searching...
No Matches
FleetAssignment.java
Go to the documentation of this file.
1package com.fs.starfarer.api.campaign;
2
8public enum FleetAssignment {
9
10 DELIVER_RESOURCES("Delivering resources to", true),
11 DELIVER_SUPPLIES("Delivering supplies to", true),
12 DELIVER_FUEL("Delivering fuel to", true),
13 DELIVER_PERSONNEL("Delivering personnel to", true),
14 DELIVER_CREW("Delivering crew to", true),
15 DELIVER_MARINES("Delivering marines to", true),
16 RESUPPLY("Resupplying at", true),
17 GO_TO_LOCATION("Travelling", false),
18 PATROL_SYSTEM("Patrolling system", false),
19 DEFEND_LOCATION("Defending", false),
20 ORBIT_PASSIVE("Orbiting", true),
21 ORBIT_AGGRESSIVE("Orbiting", true),
22 ATTACK_LOCATION("Attacking", true),
23 RAID_SYSTEM("Raiding", false),
24 GO_TO_LOCATION_AND_DESPAWN("Returning to", true),
25 INTERCEPT("Intercepting", true),
26 FOLLOW("Following", true),
27 HOLD("Holding", false),
28 STANDING_DOWN("Standing down", false),
29 ;
30
33 private FleetAssignment(String description, boolean addTargetName) {
34 this.description = description;
35 this.addTargetName = addTargetName;
36 }
37
38 public String getDescription() {
39 return description;
40 }
41
42 public boolean isAddTargetName() {
43 return addTargetName;
44 }
45
46}