-
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.
CanisterSpawns format. Is non functional and was used in Old Salvage.
- Loading branch information
1 parent
89129e2
commit cf4fc32
Showing
2 changed files
with
55 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
title: CanisterSpawns | ||
prev: false | ||
next: false | ||
--- | ||
|
||
# CanisterSpawns | ||
This would determine where canister locations in Old Salvage are. This no longer does anything, but is still a valid field. | ||
|
||
The following setup is from one of Padre's old maps. | ||
```json | ||
"CanisterSpawns": [ | ||
[ | ||
{ | ||
"Name": "Center", // Optional | ||
"Type": "box", // Probably only Box | ||
"Min": [ 162, 66, 131 ], | ||
"Max": [ 162, 66, 131 ], | ||
} | ||
], | ||
[ | ||
{ | ||
"Name": "Center2", | ||
"Type": "box", | ||
"Min": [ 176, 27, 126 ], | ||
"Max": [ 176, 28, 126 ], | ||
} | ||
], | ||
[ | ||
{ | ||
"Name": "Corner", | ||
"Type": "box", | ||
"Min": [ 222, 27, 19 ], | ||
"Max": [ 222, 29, 19 ], | ||
} | ||
], | ||
[ | ||
{ | ||
"Name": "Corner2", | ||
"Type": "box", | ||
"Min": [ 24, 28, 219 ], | ||
"Max": [ 24, 30, 219 ], | ||
} | ||
], | ||
[ | ||
{ | ||
"Name": "Corner3", | ||
"Type": "box", | ||
"Min": [ 25, 25, 69 ], | ||
"Max": [ 25, 27, 69 ], | ||
} | ||
] | ||
], | ||
``` |