-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add easyEdit icons to Island Missions
Also adds an unused easyEdit mission list, in case of future implementation.
- Loading branch information
Showing
21 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.48 KB
mods/other/mods/IslandMissions/img/missions/Mission_tosx_Earthquake.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.76 KB
mods/other/mods/IslandMissions/img/missions/Mission_tosx_Healrain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.38 KB
mods/other/mods/IslandMissions/img/missions/Mission_tosx_Juggernaut.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+10.8 KB
mods/other/mods/IslandMissions/img/missions/Mission_tosx_Marathon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+9.59 KB
mods/other/mods/IslandMissions/img/missions/Mission_tosx_Shipping.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.81 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Cannon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.61 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Disease.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.23 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Earthquake.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.15 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Healrain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.51 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Juggernaut.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.2 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Locusts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.23 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Marathon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.91 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Shipping.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.22 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Siege.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.54 KB
mods/other/mods/IslandMissions/img/missions/small/Mission_tosx_Zapper.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
-- create mission list | ||
local missionList = easyEdit.missionList:add("IslandMissions") | ||
|
||
missionList.name = "Island Missions" | ||
|
||
local HIGH_THREAT = true | ||
local LOW_THREAT = false | ||
|
||
-- add our missions to the mission list | ||
missionList:addMission("Mission_tosx_Shipping", LOW_THREAT) | ||
missionList:addMission("Mission_tosx_Zapper", LOW_THREAT) | ||
|
||
missionList:addMission("Mission_tosx_Cannon", HIGH_THREAT) | ||
missionList:addMission("Mission_tosx_Disease", HIGH_THREAT) | ||
missionList:addMission("Mission_tosx_Earthquake", HIGH_THREAT) | ||
missionList:addMission("Mission_tosx_Healrain", HIGH_THREAT) | ||
missionList:addMission("Mission_tosx_Juggernaut", HIGH_THREAT) | ||
missionList:addMission("Mission_tosx_Locusts", HIGH_THREAT) | ||
missionList:addMission("Mission_tosx_Marathon", HIGH_THREAT) | ||
missionList:addMission("Mission_tosx_Siege", HIGH_THREAT) |