|
65 | 65 | STOCK_COSTS = {
|
66 | 66 | # id : [name, portions, cost]
|
67 | 67 | 'bun': ['Pack of Hotdog Buns', 6, 1],
|
68 |
| - 'sausage': ['Pack of Hotdog Sausage', 8, 2], |
| 68 | + 'sausage': ['Pack of Sausages', 8, 2], |
69 | 69 | 'onion': ['Onion', 10, 1],
|
70 | 70 | 'sauce': ['Jar of Special Sauce', 20, 5]
|
71 | 71 | }
|
|
77 | 77 | 'sauce'
|
78 | 78 | ]
|
79 | 79 |
|
80 |
| -BACKGROUND_STORY = f"""------------------------------------ |
81 |
| -{cyan('Background')} |
82 |
| ------------------------------------- |
| 80 | +LINE = """---------------------------------------\ |
| 81 | +--------------------------------------""" |
| 82 | + |
| 83 | +BACKGROUND_STORY = f"""{cyan('Background')} |
| 84 | +{LINE} |
83 | 85 |
|
84 | 86 | You have hit some really hard times lately and nearly lost everything. Your
|
85 | 87 | down to your last £{STARTING_CASH}. Luckily your friend has told you about
|
|
92 | 94 | things around to get you started...."""
|
93 | 95 |
|
94 | 96 | CREDITS = f"""{cyan('Credits:')}
|
95 |
| ------------------------------------- |
| 97 | +{LINE} |
96 | 98 | {"Code by:":<20}{gold("Warwick Hart"):<40}
|
97 | 99 | {"Inspired by:":<20}{gold("Lemonade Stand by Bob Jamison"):<40}
|
98 | 100 |
|
|
112 | 114 | ************************************
|
113 | 115 |
|
114 | 116 | {cyan('MAIN MENU')}
|
115 |
| ------------------------------------- |
116 |
| -Can you prove that you are able to take a small hotdog stand and turn it into \ |
| 117 | +{LINE} |
| 118 | +Can you prove that you are able to take a small hotdog stand and turn it into |
117 | 119 | a great hotdog empire?!
|
118 | 120 |
|
119 | 121 | {cyan('Choose from the following options:')}
|
120 |
| ------------------------------------- |
| 122 | +{LINE} |
121 | 123 | 1. New Game
|
122 | 124 | 2. Retrieve a previous game
|
123 | 125 | 3. View leaderboard
|
124 | 126 | 4. Credits"""
|
125 | 127 |
|
126 | 128 | PURCHASE_STOCK_OPTIONS = f"""
|
127 |
| -{cyan('Pricing for products:')} |
128 |
| ------------------------------------- |
129 |
| -{'Pack of Hotdog buns':<22} (pack of {STOCK_COSTS['bun'][1]}) \ |
130 |
| - £{STOCK_COSTS['bun'][2]}.00 |
131 |
| -{'Pack of Hotdogs':<22} (pack of {STOCK_COSTS['sausage'][1]}) \ |
132 |
| - £{STOCK_COSTS['sausage'][2]}.00 |
| 129 | +{cyan('Pricing:')} |
| 130 | +{LINE} |
| 131 | +{'Hotdog buns':<22} (Pack of {STOCK_COSTS['bun'][1]}) \ |
| 132 | + £{STOCK_COSTS['bun'][2]}.00 |
| 133 | +{'Sausages':<22} (Pack of {STOCK_COSTS['sausage'][1]}) \ |
| 134 | + £{STOCK_COSTS['sausage'][2]}.00 |
133 | 135 | {'Onion':<22} ({STOCK_COSTS['onion'][1]} portions) \
|
134 | 136 | £{STOCK_COSTS['onion'][2]}.00
|
135 | 137 | {'Jar of Special Sauce':<22} ({STOCK_COSTS['sauce'][1]} portions) \
|
136 | 138 | £{STOCK_COSTS['sauce'][2]}.00"""
|
137 | 139 |
|
138 | 140 |
|
139 | 141 | HELP_SCREEN1 = f"""{cyan('Help:')}
|
140 |
| ------------------------------------------------------------------------------ |
| 142 | +{LINE} |
141 | 143 | {gold('Main Objective:')} Your main objective is to collect as much wealth
|
142 | 144 | before the final day. At the end your wealth will determine your score.
|
143 | 145 |
|
|
0 commit comments