-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
706 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
packages/filterscript/src/scripts/gl_property/constants/index.ts
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,25 @@ | ||
export const PROP_VW = 10000; | ||
export const MAX_INTERIORS = 146; | ||
|
||
export const TYPE_EMPTY = 0; | ||
export const TYPE_HOUSE = 1; | ||
export const TYPE_BUSINESS = 2; | ||
export const TYPE_BANK = 3; | ||
export const TYPE_COP = 4; | ||
|
||
// [ Array of property type iconid's and strings for property type ] | ||
export const propIcons = [ | ||
[0, ""], // TYPE_EMPTY ( not used ) | ||
[1273, "House"], // TYPE_HOUSE green house icon | ||
[1272, "Business"], // TYPE_BUSINESS blue house icon | ||
[1274, "Bank"], // TYPE_BANK dollar sign icon | ||
[1247, "Police Station"], // TYPE_COP Bribe Star 1247 | ||
] as const; | ||
|
||
export const propFile = [ | ||
// "blank", | ||
"properties/houses.txt", | ||
"properties/businesses.txt", | ||
"properties/banks.txt", | ||
"properties/police.txt", | ||
] as const; |
Oops, something went wrong.