-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNames.lua
More file actions
143 lines (116 loc) · 3.45 KB
/
Names.lua
File metadata and controls
143 lines (116 loc) · 3.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
-- A bunch of shorthand names so I don't have to keep
-- retyping the same long string 5 times.
Names = {
-- Middle track properties
medit = "Mediterranean Avenue",
baltic = "Baltic Avenue",
oriental = "Oriental Avenue",
vermont = "Vermont Avenue",
connecticut = "Connecticut Avenue",
charles = "St. Charles Place",
states = "States Avenue",
virginia = "Virginia Avenue",
james = "St. James Place",
tennessee = "Tennessee Avenue",
newyork = "New York Avenue",
kentucky = "Kentucky Avenue",
indiana = "Indiana Avenue",
illinois = "Illinois Avenue",
atlantic = "Atlantic Avenue",
ventnor = "Ventnor Avenue",
marvin = "Marvin Gardens",
pacific = "Pacific Avenue",
carolina = "North Carolina Avenue",
pennsyl = "Pennsylvania Avenue",
park = "Park Place",
boardwalk = "Boardwalk",
-- Outer track properties
lake = "Lake Street",
nicollet = "Nicollet Avenue",
hennepin = "Hennepin Avenue",
esplanade = "Esplanade Avenue",
canal = "Canal Street",
magazine = "Magazine Street",
bourbon = "Bourbon Street",
katy = "Katy Freeway",
westheimer = "Westheimer Road",
kirby = "Kirby Drive",
cullen = "Cullen Boulevard",
dekalb = "Dekalb Avenue",
andrew = "Andrew Young International Boulevard",
decatur = "Decatur Street",
peach = "Peachtree Street",
randolph = "Randolph Street",
shore = "Lake Shore Drive",
wacker = "Wacker Drive",
michigan = "Michigan Avenue",
south = "South Temple",
west = "West Temple",
north = "North Temple",
square = "Temple Square",
southst = "South Street",
broad = "Broad Street",
walnut = "Walnut Street",
market = "Market Street",
mulholland = "Mulholland Drive",
ventura = "Ventura Boulevard",
rodeo = "Rodeo Drive",
-- Inner track properties
florida = "Florida Avenue",
miami = "Miami Avenue",
biscayne = "Biscayne Avenue",
lombard = "Lombard Street",
embarca = "The Embarcadero",
fisher = "Fisherman's Wharf",
beacon = "Beacon Street",
boylston = "Boylston Street",
newbury = "Newbury Street",
fifth = "Fifth Avenue",
madison = "Madison Avenue",
wall = "Wall Street",
-- Utility properties
elec = "Electric Company",
water = "Water Works",
cable = "Cable Company",
isp = "Internet Service Provider",
trash = "Trash Collector",
sewer = "Sewage System",
tel = "Telephone Company",
gas = "Gas Company",
-- Transit stations
reading = "Reading Railroad",
pennsylrr = "Pennsylvania Railroad",
bno = "B&O Railroad",
short = "Short Line",
-- Cab companies
checker = "Checker Cab Company",
black = "Black & White Cab Company",
yellow = "Yellow Cab Company",
ute = "Ute Cab Company",
-- Card spaces
chance = "Chance",
chest = "Community Chest",
bus = "Bus Ticket",
-- Money spaces
go = "Go",
bonus = "Bonus",
payday = "Pay Day",
-- Taxes
income = "Income Tax",
luxury = "Luxury Tax",
refund = "Tax Refund",
-- Other corner spaces
jail = "In Jail",
visit = "Just Visiting",
parking = "Free Parking",
malloy = "Go To Jail",
holland = "Holland Tunnel",
subway = "Subway",
stock = "Stock Exchange",
roll3 = "Roll Three",
squeeze = "Squeeze Play",
-- Other event spaces
auction = "Auction",
birthday = "Birthday Gift",
reverse = "Reverse Direction"
}