Compare commits
7 commits
408ac73aa6
...
940f1416ed
Author | SHA1 | Date | |
---|---|---|---|
|
940f1416ed | ||
|
5ad9ed9ff6 | ||
|
dba9db0e62 | ||
|
9802d4620b | ||
|
577bb84f81 | ||
|
4f85e54ba3 | ||
|
a44f2bc5ea |
BIN
assets/glows/Boosting Black.png
Normal file
After Width: | Height: | Size: 311 KiB |
BIN
assets/glows/Boosting Blue.png
Normal file
After Width: | Height: | Size: 311 KiB |
BIN
assets/glows/Boosting Green.png
Normal file
After Width: | Height: | Size: 311 KiB |
BIN
assets/glows/Boosting Orange.png
Normal file
After Width: | Height: | Size: 345 KiB |
BIN
assets/glows/Boosting Pink.png
Normal file
After Width: | Height: | Size: 304 KiB |
BIN
assets/glows/Boosting Purple.png
Normal file
After Width: | Height: | Size: 349 KiB |
BIN
assets/glows/Boosting Red.png
Normal file
After Width: | Height: | Size: 311 KiB |
BIN
assets/glows/Boosting White.png
Normal file
After Width: | Height: | Size: 306 KiB |
BIN
assets/glows/Boosting Yellow.png
Normal file
After Width: | Height: | Size: 305 KiB |
BIN
assets/hats/2nd Party Hat Black.png
Normal file
After Width: | Height: | Size: 53 KiB |
BIN
assets/hats/2nd Party Hat Blue.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
assets/hats/2nd Party Hat Green.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
assets/hats/2nd Party Hat Orange.png
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
assets/hats/2nd Party Hat Pink.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
assets/hats/2nd Party Hat Purple.png
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
assets/hats/2nd Party Hat Red.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
assets/hats/2nd Party Hat White.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
assets/hats/2nd Party Hat Yellow.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
assets/locations/Battle Moon Left.png
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
assets/locations/Battle Moon Right.png
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
assets/locations/Moonbase HQ Gate 1.0 Left.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/locations/Moonbase HQ Gate 1.0 Right.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/necks/Placeholder Text Black.png
Normal file
After Width: | Height: | Size: 107 KiB |
BIN
assets/necks/Placeholder Text Blue.png
Normal file
After Width: | Height: | Size: 92 KiB |
BIN
assets/necks/Placeholder Text Green.png
Normal file
After Width: | Height: | Size: 91 KiB |
BIN
assets/necks/Placeholder Text Orange.png
Normal file
After Width: | Height: | Size: 99 KiB |
BIN
assets/necks/Placeholder Text Pink.png
Normal file
After Width: | Height: | Size: 95 KiB |
BIN
assets/necks/Placeholder Text Purple.png
Normal file
After Width: | Height: | Size: 101 KiB |
BIN
assets/necks/Placeholder Text Red.png
Normal file
After Width: | Height: | Size: 92 KiB |
BIN
assets/necks/Placeholder Text White.png
Normal file
After Width: | Height: | Size: 97 KiB |
BIN
assets/necks/Placeholder Text Yellow.png
Normal file
After Width: | Height: | Size: 96 KiB |
BIN
assets/playerlocations/Moonbase HQ Gate 1.0 Left.png
Normal file
After Width: | Height: | Size: 1 MiB |
BIN
assets/playerlocations/Moonbase HQ Gate 1.0 Right.png
Normal file
After Width: | Height: | Size: 1 MiB |
6
types.ts
|
@ -24,6 +24,7 @@ export enum Hats {
|
|||
FirstPartyHat = "1st Party Hat",
|
||||
MasterTransceivers = "Master Transceivers",
|
||||
BuilderHelmet = "Builder Helmet",
|
||||
SecondPartyHat = "2nd Party Hat",
|
||||
}
|
||||
|
||||
export enum Faces {
|
||||
|
@ -95,6 +96,7 @@ export enum Backs {
|
|||
export enum Necks {
|
||||
NeckChain = "Neck Chain",
|
||||
OneKChain = "1K Chain",
|
||||
PlaceholderText = "Placeholder Text",
|
||||
}
|
||||
|
||||
export enum Opponents {
|
||||
|
@ -171,8 +173,8 @@ export type GenerateBattlerOptions = {
|
|||
eye?: ColouredOpt<Eyes>;
|
||||
|
||||
hair?: ColouredOpt<Hair>;
|
||||
upperBottom?: ColouredOpt<UpperBottom>;
|
||||
upperTop?: ColouredOpt<UpperTop>;
|
||||
//upperBottom?: ColouredOpt<UpperBottom>;
|
||||
//upperTop?: ColouredOpt<UpperTop>;
|
||||
};
|
||||
|
||||
export enum PlayerActions {
|
||||
|
|