diff --git a/assets/colors.json b/assets/colors.json new file mode 100644 index 0000000..4d2348f --- /dev/null +++ b/assets/colors.json @@ -0,0 +1,8 @@ +{ + "deep pine green": "#163a30", + "warm paper": "#f6edd8", + "marigold": "#e8a12a", + "tomato": "#d6553b", + "muted green": "#3f8f5f", + "slate blue": "#3f6ea5" +} diff --git a/assets/tile_types.json b/assets/tile_types.json new file mode 100644 index 0000000..9bdd27b --- /dev/null +++ b/assets/tile_types.json @@ -0,0 +1,26 @@ +[ + { + "id": "0", + "name": "Start", + "color": "#f6edd8", + "zone": "start" + }, + { + "id": "1", + "name": "High School Dropout", + "color": "#d6553b", + "zone": "start" + }, + { + "id": "2", + "name": "@", + "color": "#e8a12a", + "zone": "start" + }, + { + "id": "3", + "name": "High School Graduate", + "color": "#3f8f5f", + "zone": "start" + } +] \ No newline at end of file diff --git a/shared/BRANCHING-TEMPLATE.md b/shared/BRANCHING-TEMPLATE.md new file mode 100644 index 0000000..3d4d2cf --- /dev/null +++ b/shared/BRANCHING-TEMPLATE.md @@ -0,0 +1,75 @@ +# Life Journey — Branching / Adjacency Template + +The design doc lists tiles **in order within each segment**, but it does not say +how the twelve segments connect, or where the forks and merges are. That wiring +is what turns a pile of tile-lists into a playable board graph. Fill this in and +I'll turn it into a connection map the game can walk. + +## The twelve segments (as parsed, in doc order) + +| # | Segment id | Tiles | First tile → Last tile | +|---|---|---|---| +| 1 | `starting_strip` | 7 | Graduation party → STOP | +| 2 | `career` | 22 | Pay Day → STOP | +| 3 | `investment` | 20 | Pay Day → Dice Space | +| 4 | `investment_bottom` | 23 | Pay Day → Dice Space | +| 5 | `high_risk` | 11 | Dice Space → Dice Space | +| 6 | `gap_year` | 17 | Pay Day → STOP | +| 7 | `education` | 12 | Pay Day → Graduation Gift | +| 8 | `relationship_top` | 20 | Pay Day → Aging Parents | +| 9 | `relationship_bottom` | 26 | Pay Day → … | +| 10 | `retirement_top` | 11 | Pay Day → Hobby | +| 11 | `retirement_middle` | 22 | ½ Life Crisis → … | +| 12 | `retirement_bottom` | 20 | Pay Day → … | + +The `(top)/(bottom)/(middle)` names strongly suggest parallel lanes on the +physical board — that's exactly the geometry only your layout knows. + +## What I need — two things + +### 1. The STOP forks + +There are **3 STOP tiles** (end of `starting_strip`, `career`, `gap_year`). Each +says "roll D8 to age, then pick your new path." Tell me the choices at each: + +``` +STOP after starting_strip → player may choose: [ career | education | gap_year ] ← confirm/edit +STOP after career → player may choose: [ ? | ? | ? ] +STOP after gap_year → player may choose: [ ? | ? | ? ] +``` + +(Do investment / high_risk / relationship / retirement also branch off a STOP, +or are they entered some other way? Note it.) + +### 2. Segment connections (the graph) + +For **each segment**, tell me what its **entry** connects from and what its +**exit** connects to. Easiest format — just fill the arrows, referencing segment +ids and tile numbers (0-indexed within the segment): + +``` +career: enters from STOP#1 → exits to STOP#2 +investment: enters from ?? → exits to ?? +investment_bottom: enters from ?? → exits to ?? +high_risk: enters from ?? → exits to ?? +... +``` + +If a segment has a **mid-path fork or merge** (e.g. tile 8 of `career` splits to +`investment` tile 0 AND continues to tile 9), write it like: + +``` +career tile 8 → forks to: career tile 9 OR investment tile 0 +relationship_top tile 19 → merges into retirement_top tile 0 +``` + +Don't worry about being formal — bullet points in plain English are fine. Photos +or a rough hand-drawn arrow diagram of the board work too; I'll translate. + +## What happens after you send this + +I convert it into a `board-graph.json` — every tile gets a `next` (or list of +`next` for forks) so the game can move tokens along real paths. **Only then** do +coordinates get authored (against the real artwork), because a token's screen +position and its graph position are two different things and both need the final +layout to exist first. diff --git a/shared/GAME-REVIEW.md b/shared/GAME-REVIEW.md new file mode 100644 index 0000000..1325d6e --- /dev/null +++ b/shared/GAME-REVIEW.md @@ -0,0 +1,324 @@ +# Life Journey — Game Content Review + +A readable summary of everything parsed from the design doc, for checking and filling in. The game tracks five things per player: **cash ($), Love, Education, Wealth, Age.** + +**211 tiles** across **12 segments**, referencing **48 roll tables** that still need real content. + +## Board segments and tiles + +### Starting Strip (7 tiles) + +0. **Graduation party** — _event_ +1. **Action space** — _action_space_ · D100 · ⤷ roll table +2. **First Paycheck** — _choice_ +3. **Dice roll** — _dice_space_ · ⤷ roll table +4. **Underground poker** — _choice_ · D20 +5. **New job** — _roll_table_ref_ · ⤷ roll table +6. **STOP** — _stop_ · D8 + +### Career Path (22 tiles) + +0. **PAY DAY** — _payday_ +1. **RECRUITER CALLS** — _choice_ +2. **PERFORMANCE REVIEW** — _roll_table_ref_ · ⤷ roll table +3. **NEW HIRE** — _roll_table_ref_ · D100 · ⤷ roll table +4. **START A BUSINESS** — _roll_table_ref_ · ⤷ roll table +5. **OFFICE BAR TRIVIA** — _roll_table_ref_ · ⤷ roll table +6. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +7. **COMPANY PERKS** — _roll_table_ref_ · D100 · ⤷ roll table +8. **THE NEWS** — _event_ · D20 +9. **NEW JOB** — _roll_table_ref_ · ⤷ roll table +10. **COMPANY RACE DAY** — _inline_table_ · D10 +11. **OPPORTUNITY KNOCKS** — _roll_table_ref_ · ⤷ roll table +12. **CLIENT DINNER** — _roll_table_ref_ · ⤷ roll table +13. **SHENANIGANS** — _roll_table_ref_ · ⤷ roll table +14. **OFFICE CHRISTMAS PARTY** — _roll_table_ref_ · ⤷ roll table +15. **MENTORSHIP** — _choice_ +16. **BIG CAREER MOMENT** — _event_ +17. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +18. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +19. **PERFORMANCE REVIEW** — _roll_table_ref_ · ⤷ roll table +20. **START A BUSINESS** — _roll_table_ref_ · ⤷ roll table +21. **STOP** — _stop_ · D8 + +### Investment Path (20 tiles) + +0. **PAY DAY** — _payday_ +1. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +2. **SIDE INVESTMENT** — _inline_table_ · D20 +3. **BUY A HOUSE** — _roll_table_ref_ · D100 · ⤷ roll table +4. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +5. **ESTATE AUCTION** — _roll_table_ref_ · ⤷ roll table +6. **MARKET CRASH** — _inline_table_ · D20 +7. **FORCED PARTNERSHIP** — _choice_ +8. **401k** — _cash_bonus_ · D20 +9. **SEMINAR** — _inline_table_ · D20 +10. **ANGEL INVESTOR** — _inline_table_ · D20 +11. **BUY A HOUSE** — _roll_table_ref_ · D100 · ⤷ roll table +12. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +13. **BLIND INVESTMENT** — _inline_table_ · D6 +14. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +15. **BANKRUPTCY** — _inline_table_ · D20 +16. **MARKET MAYHEM** — _choice_ +17. **FINANCIAL ADVISOR** — _inline_table_ · D20 +18. **PAY DAY** — _payday_ +19. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table + +### Investment Path (Bottom) (23 tiles) + +0. **PAY DAY** — _payday_ +1. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +2. **SIDE INVESTMENT** — _inline_table_ · D20 +3. **BUY A HOUSE** — _roll_table_ref_ · D100 · ⤷ roll table +4. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +5. **START A BUSINESS** — _roll_table_ref_ · ⤷ roll table +6. **MARKET CRASH** — _inline_table_ · D20 +7. **ESTATE AUCTION** — _roll_table_ref_ · ⤷ roll table +8. **401k** — _cash_bonus_ · D20 +9. **BUY A HOUSE** — _roll_table_ref_ · D100 · ⤷ roll table +10. **ANGEL INVESTOR** — _inline_table_ · D20 +11. **FORCED PARTNERSHIP** — _choice_ +12. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +13. **BANKRUPTCY** — _inline_table_ · D20 +14. **BLIND INVESTMENT** — _inline_table_ · D6 +15. **PAY DAY** — _payday_ +16. **BET AGAINST ANOTHER PLAYER** — _choice_ +17. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +18. **MARKET MAYHEM** — _event_ +19. **FORCE SALE** — _inline_table_ · D20 +20. **START A BUSINESS** — _roll_table_ref_ · ⤷ roll table +21. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +22. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table + +### High Risk Path (11 tiles) + +0. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +1. **BUY A HOUSE** — _roll_table_ref_ · D100 · ⤷ roll table +2. **BET AGAINST ANOTHER PLAYER** — _choice_ +3. **PAY DAY** — _payday_ +4. **LEVERAGED BUYOUT** — _inline_table_ · D20 +5. **100K** — _cash_bonus_ +6. **INVESTEGATION** — _inline_table_ · D20 +7. **BLIND INVESTMENT** — _inline_table_ · D6 +8. **ROUGE TRADER** — _inline_table_ · D20 +9. **10K** — _cash_bonus_ +10. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table + +### Gap Year Path (17 tiles) + +0. **PAY DAY** — _payday_ +1. **SHENANIGANS** — _roll_table_ref_ · ⤷ roll table +2. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +3. **TREASURE HUNT (NEED TO MAKE TREASURE MAP)** — _roll_table_ref_ · ⤷ roll table +4. **LOST IN TRANSLATION** — _event_ +5. **MEXICO** — _roll_table_ref_ · ⤷ roll table +6. **AIRPORT SECURITY** — _inline_table_ · D20 +7. **AUSTRALIA** — _roll_table_ref_ · ⤷ roll table +8. **PAY DAY** — _payday_ +9. **JAPAN** — _roll_table_ref_ · ⤷ roll table +10. **ACCENT ROULETTE** — _event_ +11. **IRELAND** — _roll_table_ref_ · ⤷ roll table +12. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +13. **GERMANY** — _roll_table_ref_ · ⤷ roll table +14. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +15. **ITALY** — _roll_table_ref_ · ⤷ roll table +16. **STOP** — _stop_ · D8 + +### Education Path (12 tiles) + +0. **PAY DAY** — _payday_ +1. **SCHOLARSHIP** — _inline_table_ · D20 +2. **4 YEAR DAGREE** — _event_ +3. **COMMUNITY COLLAGE** — _event_ +4. **APPRENTICESHIP** — _inline_table_ · D20 +5. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +6. **STUDY ABROD** — _inline_table_ · D20 +7. **POP QUIZ** — _event_ +8. **EXTRACURRICULAR** — _roll_table_ref_ · D20 · ⤷ roll table +9. **ONLINE COURSE** — _inline_table_ · D20 +10. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +11. **GRADUATION GIFT** — _inline_table_ · D20 + +### Relationship/Family (Top) (20 tiles) + +0. **PAY DAY** — _payday_ +1. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +2. **ADOPT A PET** — _roll_table_ref_ · D100 · ⤷ roll table +3. **UNCLES CONDO** — _inline_table_ · D20 +4. **NEW CITY** — _roll_table_ref_ · D100 · ⤷ roll table +5. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +6. **HAVE A BABY** — _inline_table_ · D2 +7. **DINNER PARTY** — _inline_table_ · D20 +8. **MARRIGE** — _choice_ +9. **WHITE ELEPHANT** — _inline_table_ · D6 +10. **FRIENDS WEDDING** — _inline_table_ · D20 +11. **NEW JOB** — _roll_table_ref_ · ⤷ roll table +12. **PODCAST** — _inline_table_ · D20 +13. **HOBBY** — _roll_table_ref_ · D100 · ⤷ roll table +14. **PERFECT IMPRESSION** — _inline_table_ · D20 +15. **BUY A HOUSE** — _roll_table_ref_ · D100 · ⤷ roll table +16. **FAMILY REUNION** — _inline_table_ · D20 +17. **HAVE A BABY** — _inline_table_ · D2 +18. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +19. **AGING PARENTS** — _inline_table_ · D20 + +### Relationship/Family (Bottom) (26 tiles) + +0. **PAY DAY** — _payday_ +1. **UNCLES CONDO** — _inline_table_ · D20 +2. **ADOPT A PET** — _roll_table_ref_ · D100 · ⤷ roll table +3. **RISKY MOVE** — _inline_table_ · D20 +4. **NEW CITY** — _roll_table_ref_ · D100 · ⤷ roll table +5. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +6. **HAVE A BABY** — _inline_table_ · D2 +7. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +8. **SIBLINGS WEDDING** — _inline_table_ · D20 +9. **NEIGHBORS PET** — _inline_table_ · D20 +10. **SIDE HUSTLE** — _roll_table_ref_ · D100 · ⤷ roll table +11. **BUY A HOUSE** — _roll_table_ref_ · D100 · ⤷ roll table +12. **HOBBY** — _roll_table_ref_ · D100 · ⤷ roll table +13. **HAVE A BABY** — _inline_table_ · D2 +14. **PODCAST** — _inline_table_ · D20 +15. **MARRIGE** — _choice_ +16. **PAY DAY** — _payday_ +17. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +18. **FAMILY VACATION** — _inline_table_ · D20 +19. **ADOPT A PET** — _roll_table_ref_ · D100 · ⤷ roll table +20. **FAMILY REUNION** — _inline_table_ · D20 +21. **NEW JOB** — _roll_table_ref_ · ⤷ roll table +22. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +23. **HOUSE MAINTENANCE** — _inline_table_ · D20 +24. **HAVE A BABY** — _inline_table_ · D2 +25. **AGING PARENTS** — _inline_table_ · D20 + +### Retirement Path (Top) (11 tiles) + +0. **PAY DAY** — _payday_ +1. **INVESTMENT PAID OFF** — _inline_table_ · D20 +2. **START A BAND** — _inline_table_ · D20 +3. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +4. **JURY DUTY** — _inline_table_ · D20 +5. **HOBBY** — _roll_table_ref_ · D100 · ⤷ roll table +6. **THE RACES** — _inline_table_ · D10 +7. **NEW JOB** — _roll_table_ref_ · ⤷ roll table +8. **BUCKET LIST TRIP** — _inline_table_ · D20 +9. **HOME RENOVATIONS** — _inline_table_ · D20 +10. **HOSTED THANKSGIVING** — _inline_table_ · D20 + +### Retirement Path (Middle) (22 tiles) + +0. **½ LIFE CRISIS** — _inline_table_ · D20 +1. **HORRIBLE HANGOVER** — _inline_table_ · D20 +2. **40TH BIRTHDAY** — _inline_table_ · D20 +3. **MYSTERY TATTOO** — _roll_table_ref_ · D100 · ⤷ roll table +4. **UNEXPECTED JOY** — _inline_table_ · D20 +5. **PAY DAY** — _payday_ +6. **HOBBY** — _roll_table_ref_ · D100 · ⤷ roll table +7. **HOST CHRISTMAS** — _inline_table_ · D20 +8. **BUCKET LIST** — _inline_table_ · D20 +9. **RETIREMENT PARTY** — _inline_table_ · D20 +10. **SELL HOUSE** — _roll_table_ref_ · ⤷ roll table +11. **DID YOU HEAR?** — _inline_table_ · D20 +12. **LOTTERY** — _inline_table_ · D20 +13. **FANTASY FOOTBALL** — _inline_table_ · D20 +14. **HIGH SCHOOL REUNION** — _inline_table_ · D20 +15. **POKER NIGHT** — _inline_table_ · D20 +16. **PICKEL BALL** — _inline_table_ · D20 +17. **BOWLING NIGHT** — _inline_table_ · D20 +18. **INVESTMENT PAID OFF** — _inline_table_ · D20 +19. **DICE SPACE** — _dice_space_ · D100 · ⤷ roll table +20. **PAY DAY** — _payday_ +21. **RETIREMENT PARTY** — _inline_table_ · D20 + +### Retirement Path (Bottom) (20 tiles) + +0. **PAY DAY** — _payday_ +1. **HOBBY** — _roll_table_ref_ · D100 · ⤷ roll table +2. **FANTASY FOOTBALL** — _inline_table_ · D20 +3. **HOSTED THANKSGIVING** — _inline_table_ · D20 +4. **HIGH SCHOOL REUNION** — _inline_table_ · D20 +5. **SPEEDING TICKET** — _inline_table_ · D20 +6. **BOWLING NIGHT** — _inline_table_ · D20 +7. **JURY DUTY** — _inline_table_ · D20 +8. **PICKEL BALL** — _inline_table_ · D20 +9. **THE RACES** — _inline_table_ · D10 +10. **NEW JOB** — _roll_table_ref_ · ⤷ roll table +11. **POKER NIGHT** — _inline_table_ · D20 +12. **HOME RENOVATIONS** — _inline_table_ · D20 +13. **BUCKET LIST TRIP** — _inline_table_ · D20 +14. **JOINED FACEBOOK** — _inline_table_ · D20 +15. **GOLF TRIP** — _inline_table_ · D20 +16. **DENTAL WORK** — _inline_table_ · D20 +17. **ACTION SPACE** — _action_space_ · D100 · ⤷ roll table +18. **START A BAND** — _inline_table_ · D20 +19. **INVESTMENT PAID OFF** — _inline_table_ · D20 + +## Roll tables needed (all PLACEHOLDER) + +Sorted by how many tiles use them. Each has banded stand-in entries so the game is playable now. + +| Table | Die | Used by # tiles | +|---|---|---| +| DICE SPACE TABLE | D100 | 18 | +| ACTION SPACE TABLE | D100 | 15 | +| your current property | D100 | 8 | +| property table | D100 | 7 | +| JOBS TABLE | D100 | 6 | +| hobby | D100 | 5 | +| D100 BUSINESS TABLE | D100 | 4 | +| Profited Or lost | D100 | 4 | +| sell your | | | business | D100 | 4 | +| Pet Table | D100 | 3 | +| Bring the data | D100 | 2 | +| Charm the boss | D100 | 2 | +| item being auctioned | D100 | 2 | +| new city | D100 | 2 | +| shenanigan | D20 | 2 | +| Throw a someone under the bus | D100 | 2 | +| Accept a local recommendation | D100 | 1 | +| Accept a local recommendation | D100 | 1 | +| Accept a local recommendation | D100 | 1 | +| Accept a local recommendation | D100 | 1 | +| Accept a local recommendation | D100 | 1 | +| Accept a local recommendation | D100 | 1 | +| applicant\'s | D100 | 1 | +| company perk | D100 | 1 | +| Explore the city | D100 | 1 | +| Explore the city | D100 | 1 | +| Explore the city | D100 | 1 | +| Explore the city | D100 | 1 | +| Explore the city | D100 | 1 | +| Explore the city | D100 | 1 | +| gift exchange! | D100 | 1 | +| Go into nature | D100 | 1 | +| Go into nature | D100 | 1 | +| Go into nature | D100 | 1 | +| Go into nature | D100 | 1 | +| Go into nature | D100 | 1 | +| Go into nature | D100 | 1 | +| Karaoke bar | D100 | 1 | +| Mystery Tattoo Table | D100 | 1 | +| Play it safe | D100 | 1 | +| Roll D20. | D100 | 1 | +| Roll D20. | D100 | 1 | +| Side Hustle Table | D100 | 1 | +| Sporting event | D100 | 1 | +| Take the risk | D100 | 1 | +| treasure | D100 | 1 | +| trivia question | D100 | 1 | +| Upscale steakhouse | D100 | 1 | + +## Open questions for you / your sister + +- **Win condition** isn't stated in the doc — how does the game end and who wins? (Most Wealth? A blend of cash + Love + Wealth at retirement?) +- **Age** — the D8 at each STOP adds years; is there a maximum age that ends the game? +- **Stat meaning** — is *Wealth* a separate point score from *cash ($)*? Treated that way here. +- **Country sub-tables** (Explore city / Nature / Local rec) are **separate per country** (Mexico, Australia, Japan, Ireland, Germany, Italy) — 18 small tables in total. +- Several tables are all-players mini-games (trivia, White Elephant, races) — these need special handling in an async game; worth flagging for Phase 3. + +## Additional gaps found while integrating this into the game engine + +- **`inline_table` tiles have no table content anywhere.** 85 of the 211 tiles (40% of the board) are type `inline_table` — they carry a die size (e.g. `COMPANY RACE DAY`, D10) but reference zero external tables, and none of the 48 tables in roll-tables.json are inline (all 48 have a `source_doc_id`). Whatever content was inline in the original design doc next to these tiles wasn't captured during parsing. Currently these resolve against a generic synthesized placeholder table (same banded shape as the real 48, one per die size, obviously fake numbers) — real content for all 85 is still needed. +- **`payday`/`cash_bonus` amounts are undefined.** PAY DAY (16 tiles), 100K, 10K, and 401k have no amount specified anywhere in tile-inventory.json or roll-tables.json. Currently using invented placeholder amounts ($2,000 payday; $100,000/$10,000 for the named bonuses; 401k falls into the synthesized-table bucket above) — these are 100% guesses, not derived from anything in the doc. +- **Multi-table `roll_table_ref` tiles have no documented combination rule.** 22 tiles reference 2–3 tables at once (e.g. `PERFORMANCE REVIEW` references 3), and nothing in the parsed content says how they combine. Currently implemented as "roll and apply every referenced table's effect, summed" — a reasonable guess, but unconfirmed against the actual design doc. +- The tile-type vocabulary actually has **9 types**, not 7 — `inline_table` and `cash_bonus` exist alongside payday/action_space/dice_space/roll_table_ref/choice/event/stop. \ No newline at end of file diff --git a/shared/roll-tables.json b/shared/roll-tables.json new file mode 100644 index 0000000..21c304a --- /dev/null +++ b/shared/roll-tables.json @@ -0,0 +1,3548 @@ +{ + "note": "PLACEHOLDER roll tables \u2014 replace entries with the real Google-Doc content. Banded ranges are stand-ins so the game is playable now.", + "tables": [ + { + "id": "dice_space_table", + "display_name": "DICE SPACE TABLE", + "die": "D100", + "used_count": 18, + "source_doc_id": "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "DICE SPACE TABLE: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "DICE SPACE TABLE: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "DICE SPACE TABLE: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "DICE SPACE TABLE: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "DICE SPACE TABLE: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "DICE SPACE TABLE: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "DICE SPACE TABLE: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "action_space_table", + "display_name": "ACTION SPACE TABLE", + "die": "D100", + "used_count": 15, + "source_doc_id": "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "ACTION SPACE TABLE: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "ACTION SPACE TABLE: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "ACTION SPACE TABLE: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "ACTION SPACE TABLE: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "ACTION SPACE TABLE: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "ACTION SPACE TABLE: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "ACTION SPACE TABLE: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "your_current_property", + "display_name": "your current property", + "die": "D100", + "used_count": 8, + "source_doc_id": "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "your current property: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "your current property: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "your current property: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "your current property: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "your current property: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "your current property: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "your current property: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "property_table", + "display_name": "property table", + "die": "D100", + "used_count": 7, + "source_doc_id": "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "property table: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "property table: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "property table: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "property table: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "property table: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "property table: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "property table: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "jobs_table", + "display_name": "JOBS TABLE", + "die": "D100", + "used_count": 6, + "source_doc_id": "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "JOBS TABLE: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "JOBS TABLE: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "JOBS TABLE: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "JOBS TABLE: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "JOBS TABLE: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "JOBS TABLE: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "JOBS TABLE: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "hobby", + "display_name": "hobby", + "die": "D100", + "used_count": 5, + "source_doc_id": "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "hobby: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "hobby: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "hobby: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "hobby: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "hobby: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "hobby: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "hobby: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "d100_business_table", + "display_name": "D100 BUSINESS TABLE", + "die": "D100", + "used_count": 4, + "source_doc_id": "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "D100 BUSINESS TABLE: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "D100 BUSINESS TABLE: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "D100 BUSINESS TABLE: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "D100 BUSINESS TABLE: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "D100 BUSINESS TABLE: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "D100 BUSINESS TABLE: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "D100 BUSINESS TABLE: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "profited_or_lost", + "display_name": "Profited Or lost", + "die": "D100", + "used_count": 4, + "source_doc_id": "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Profited Or lost: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Profited Or lost: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Profited Or lost: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Profited Or lost: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Profited Or lost: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Profited Or lost: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Profited Or lost: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "sell_your_business", + "display_name": "sell your | | | business", + "die": "D100", + "used_count": 4, + "source_doc_id": "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "sell your | | | business: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "sell your | | | business: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "sell your | | | business: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "sell your | | | business: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "sell your | | | business: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "sell your | | | business: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "sell your | | | business: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "pet_table", + "display_name": "Pet Table", + "die": "D100", + "used_count": 3, + "source_doc_id": "1N5haX_RWch0LciZM-SvrHoxuXjOyLglzb5FlW9wmJFg", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Pet Table: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Pet Table: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Pet Table: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Pet Table: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Pet Table: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Pet Table: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Pet Table: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "bring_the_data", + "display_name": "Bring the data", + "die": "D100", + "used_count": 2, + "source_doc_id": "1wJdD1UU-kFY1seQyMuIG67akw2ZbkfxPScPhblLfu5E", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Bring the data: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Bring the data: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Bring the data: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Bring the data: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Bring the data: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Bring the data: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Bring the data: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "charm_the_boss", + "display_name": "Charm the boss", + "die": "D100", + "used_count": 2, + "source_doc_id": "1xArtFHl1TQb1a2dkuOVUNhZnIHHCcSv-pJEYeG-aj1o", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Charm the boss: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Charm the boss: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Charm the boss: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Charm the boss: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Charm the boss: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Charm the boss: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Charm the boss: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "item_being_auctioned", + "display_name": "item being auctioned", + "die": "D100", + "used_count": 2, + "source_doc_id": "1pDCV2-pTZ9wfsOwQYIz3pyPrFZdZTjMLUYhUxmVMeJg", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "item being auctioned: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "item being auctioned: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "item being auctioned: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "item being auctioned: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "item being auctioned: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "item being auctioned: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "item being auctioned: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "new_city", + "display_name": "new city", + "die": "D100", + "used_count": 2, + "source_doc_id": "1xlqonNrGft-q5KLRCSdcIlYhO39KL3N6ufswQTYZz0s", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "new city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "new city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "new city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "new city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "new city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "new city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "new city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "shenanigan", + "display_name": "shenanigan", + "die": "D20", + "used_count": 2, + "source_doc_id": "1k4oS8O5zTVwK_GKDw6FtswX9iuUU88vZyRVhjFVXvPo", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-3", + "result": "shenanigan: disaster", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "4-7", + "result": "shenanigan: setback", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "8-12", + "result": "shenanigan: fine", + "effect": { + "cash": 1000, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "13-16", + "result": "shenanigan: good", + "effect": { + "cash": 5000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "17-19", + "result": "shenanigan: great", + "effect": { + "cash": 10000, + "wealth": 1, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "20", + "result": "shenanigan: legendary", + "effect": { + "cash": 20000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "throw_a_someone_under_the_bus", + "display_name": "Throw a someone under the bus", + "die": "D100", + "used_count": 2, + "source_doc_id": "1wTy7p5bf5LYi2s30q3yQkGigo7yVU_dHgdD-mOSiyFA", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Throw a someone under the bus: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Throw a someone under the bus: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Throw a someone under the bus: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Throw a someone under the bus: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Throw a someone under the bus: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Throw a someone under the bus: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Throw a someone under the bus: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1iQFHpGfQ1pXxHjGCH6Mc_UblptLYwjScwLTdMMSlR04", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1RK13kUyf-Nqe-GOlOHsGoY7D7tkB7WQrkmsrsid1gd4", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1zL5OOVVxMJ2Yla4AAnUTALqwRzTszes7laFoGC9muMY", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1ebVu9Y-dkMtF5MRtycaN3iIcYGU5B5I4VplWredL2Ho", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "11KmuR0Reg41PNswUW_DsJfPNYPDNprDnKjizpQ9cgT8", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1fyNelvTmec14A_4k26okctKVZKpMJEYl2YTc2tW-ESI", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "applicant_s", + "display_name": "applicant\\'s", + "die": "D100", + "used_count": 1, + "source_doc_id": "155pkcNdEV0nlYyEysv0I2hKKTBWoujJoifQRme9gkJY", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "applicant\\'s: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "applicant\\'s: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "applicant\\'s: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "applicant\\'s: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "applicant\\'s: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "applicant\\'s: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "applicant\\'s: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "company_perk", + "display_name": "company perk", + "die": "D100", + "used_count": 1, + "source_doc_id": "1_KP6ITW-ItqyAvMJ0gNLiIQbh9Wan3vA8C10GFwD1uY", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "company perk: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "company perk: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "company perk: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "company perk: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "company perk: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "company perk: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "company perk: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "16fwZcsCoGM3ZlxgAb8xUh1mXXaTtJnwMrkUPldMPvtA", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1AH19IHgGF5qFaVZo8PNM1mP1VL7Cjjm8JRrt39B4RLM", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1ij47Svr7ciFJLRmK5MoDE7AoLV4FusrwT8gIXkgs_NU", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1WRsjGGeZJPTGsAtYotr7d-Kn5KltQsPDas9MN8GYCvY", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1HdiUWTryv9olHpuWYxnaGUFoF6I3C81BRP8ZJ9Fvn9E", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1yBfmsTUfBcJ-4TZO35IK0Dovq3zKPwunnkav-m4Jwjw", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "gift_exchange", + "display_name": "gift exchange!", + "die": "D100", + "used_count": 1, + "source_doc_id": "1ZrAb_1irNHeVHX7Ey4YD3xcFXtTKZRtLoKtSoV60ucA", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "gift exchange!: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "gift exchange!: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "gift exchange!: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "gift exchange!: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "gift exchange!: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "gift exchange!: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "gift exchange!: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "1NMdVTdCjG1ozY-OXzHe1y4eVSVA7aAuC6jChnO2LF84", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "1WxzgBoPJOUFFLO2p7KMUZXNkyCnlHq1ZikookfWGK4M", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "15cZElCVDxxw850pK7prCMo2oSR5KpeHuGtNHryfOGj8", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "1sT_TTM76ksiqcIb_EOaBzDcizBIglKLsoGxVABM-aiI", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "18b3if2Xw1qZmSLwDR3NksJLMgfKRosAp6JoeG7gWY_o", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "1z4DOhLh_P8ndmKduNX7ltdJKQ5ZJ7HwS1N12uTfONtA", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "karaoke_bar", + "display_name": "Karaoke bar", + "die": "D100", + "used_count": 1, + "source_doc_id": "134dI9sS28EI_k-orDGaAq8uErltw7HuQ_oHB1alccFI", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Karaoke bar: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Karaoke bar: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Karaoke bar: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Karaoke bar: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Karaoke bar: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Karaoke bar: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Karaoke bar: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "mystery_tattoo_table", + "display_name": "Mystery Tattoo Table", + "die": "D100", + "used_count": 1, + "source_doc_id": "1wlDHXRDCT0NBPtphdrtmi20uSANZXB-QP03FAOWQyp0", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Mystery Tattoo Table: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Mystery Tattoo Table: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Mystery Tattoo Table: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Mystery Tattoo Table: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Mystery Tattoo Table: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Mystery Tattoo Table: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Mystery Tattoo Table: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "play_it_safe", + "display_name": "Play it safe", + "die": "D100", + "used_count": 1, + "source_doc_id": "1ATF9PAm4uey5wfwtCijuqbh48iLajU9SUN-WW5myqMI", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Play it safe: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Play it safe: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Play it safe: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Play it safe: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Play it safe: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Play it safe: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Play it safe: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "roll_d20", + "display_name": "Roll D20.", + "die": "D100", + "used_count": 1, + "source_doc_id": "1AV5aPp-DNByHlcoASduiHJXXk0yhqClqcg3y7-QE3XM", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Roll D20.: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Roll D20.: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Roll D20.: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Roll D20.: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Roll D20.: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Roll D20.: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Roll D20.: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "roll_d20", + "display_name": "Roll D20.", + "die": "D100", + "used_count": 1, + "source_doc_id": "1oqSe2YQS8ojIxRCmjWz-A7mwLRS5LMuw11oG-jLIeRk", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Roll D20.: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Roll D20.: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Roll D20.: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Roll D20.: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Roll D20.: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Roll D20.: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Roll D20.: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "side_hustle_table", + "display_name": "Side Hustle Table", + "die": "D100", + "used_count": 1, + "source_doc_id": "1YPGyCYevyZFCZsKE3didumCX9G16xmeQxpQsEJn2hrM", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Side Hustle Table: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Side Hustle Table: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Side Hustle Table: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Side Hustle Table: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Side Hustle Table: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Side Hustle Table: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Side Hustle Table: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "sporting_event", + "display_name": "Sporting event", + "die": "D100", + "used_count": 1, + "source_doc_id": "1LSKQ2OpeJtXk72S8cND9G6SZYbFB9qBVSlHBi6fnzNY", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Sporting event: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Sporting event: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Sporting event: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Sporting event: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Sporting event: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Sporting event: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Sporting event: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "take_the_risk", + "display_name": "Take the risk", + "die": "D100", + "used_count": 1, + "source_doc_id": "1LH7iWYqe2gCgZIA5DNoTDzyaSinmzA4nnhwzUthXTeM", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Take the risk: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Take the risk: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Take the risk: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Take the risk: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Take the risk: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Take the risk: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Take the risk: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "treasure", + "display_name": "treasure", + "die": "D100", + "used_count": 1, + "source_doc_id": "1CKgD3-vup578E9Vn1GQCN8DHlDUG4qjxX26McMnuz1s", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "treasure: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "treasure: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "treasure: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "treasure: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "treasure: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "treasure: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "treasure: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "trivia_question", + "display_name": "trivia question", + "die": "D100", + "used_count": 1, + "source_doc_id": "1xC_k_bC56zTQIgJFXbmkI_vDFw8N3iHx83KEDuCFPzk", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "trivia question: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "trivia question: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "trivia question: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "trivia question: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "trivia question: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "trivia question: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "trivia question: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "upscale_steakhouse", + "display_name": "Upscale steakhouse", + "die": "D100", + "used_count": 1, + "source_doc_id": "1jBSr7kfaKhGalLoC0zn6r6o45FP1vHPcG-kiC_EvDPQ", + "status": "PLACEHOLDER \u2014 needs real content", + "entries": [ + { + "range": "1-10", + "result": "Upscale steakhouse: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Upscale steakhouse: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Upscale steakhouse: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Upscale steakhouse: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Upscale steakhouse: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Upscale steakhouse: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Upscale steakhouse: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + } + ] +} \ No newline at end of file diff --git a/shared/rollTables.js b/shared/rollTables.js new file mode 100644 index 0000000..d4ee481 --- /dev/null +++ b/shared/rollTables.js @@ -0,0 +1,3557 @@ +/** + * Isomorphic wrapper around shared/roll-tables.json (kept as-is alongside + * this file as the raw source reference) — see shared/tileInventory.js for + * why this is a plain export default rather than a JSON module import. + * + * 48 roll tables referenced by tile-inventory.js, all PLACEHOLDER banded + * entries per the design doc's own note — real content replaces these later. + */ + +export default { + "note": "PLACEHOLDER roll tables — replace entries with the real Google-Doc content. Banded ranges are stand-ins so the game is playable now.", + "tables": [ + { + "id": "dice_space_table", + "display_name": "DICE SPACE TABLE", + "die": "D100", + "used_count": 18, + "source_doc_id": "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "DICE SPACE TABLE: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "DICE SPACE TABLE: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "DICE SPACE TABLE: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "DICE SPACE TABLE: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "DICE SPACE TABLE: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "DICE SPACE TABLE: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "DICE SPACE TABLE: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "action_space_table", + "display_name": "ACTION SPACE TABLE", + "die": "D100", + "used_count": 15, + "source_doc_id": "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "ACTION SPACE TABLE: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "ACTION SPACE TABLE: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "ACTION SPACE TABLE: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "ACTION SPACE TABLE: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "ACTION SPACE TABLE: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "ACTION SPACE TABLE: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "ACTION SPACE TABLE: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "your_current_property", + "display_name": "your current property", + "die": "D100", + "used_count": 8, + "source_doc_id": "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "your current property: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "your current property: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "your current property: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "your current property: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "your current property: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "your current property: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "your current property: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "property_table", + "display_name": "property table", + "die": "D100", + "used_count": 7, + "source_doc_id": "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "property table: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "property table: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "property table: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "property table: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "property table: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "property table: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "property table: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "jobs_table", + "display_name": "JOBS TABLE", + "die": "D100", + "used_count": 6, + "source_doc_id": "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "JOBS TABLE: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "JOBS TABLE: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "JOBS TABLE: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "JOBS TABLE: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "JOBS TABLE: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "JOBS TABLE: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "JOBS TABLE: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "hobby", + "display_name": "hobby", + "die": "D100", + "used_count": 5, + "source_doc_id": "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "hobby: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "hobby: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "hobby: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "hobby: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "hobby: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "hobby: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "hobby: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "d100_business_table", + "display_name": "D100 BUSINESS TABLE", + "die": "D100", + "used_count": 4, + "source_doc_id": "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "D100 BUSINESS TABLE: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "D100 BUSINESS TABLE: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "D100 BUSINESS TABLE: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "D100 BUSINESS TABLE: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "D100 BUSINESS TABLE: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "D100 BUSINESS TABLE: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "D100 BUSINESS TABLE: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "profited_or_lost", + "display_name": "Profited Or lost", + "die": "D100", + "used_count": 4, + "source_doc_id": "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Profited Or lost: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Profited Or lost: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Profited Or lost: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Profited Or lost: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Profited Or lost: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Profited Or lost: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Profited Or lost: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "sell_your_business", + "display_name": "sell your | | | business", + "die": "D100", + "used_count": 4, + "source_doc_id": "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "sell your | | | business: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "sell your | | | business: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "sell your | | | business: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "sell your | | | business: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "sell your | | | business: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "sell your | | | business: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "sell your | | | business: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "pet_table", + "display_name": "Pet Table", + "die": "D100", + "used_count": 3, + "source_doc_id": "1N5haX_RWch0LciZM-SvrHoxuXjOyLglzb5FlW9wmJFg", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Pet Table: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Pet Table: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Pet Table: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Pet Table: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Pet Table: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Pet Table: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Pet Table: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "bring_the_data", + "display_name": "Bring the data", + "die": "D100", + "used_count": 2, + "source_doc_id": "1wJdD1UU-kFY1seQyMuIG67akw2ZbkfxPScPhblLfu5E", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Bring the data: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Bring the data: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Bring the data: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Bring the data: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Bring the data: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Bring the data: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Bring the data: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "charm_the_boss", + "display_name": "Charm the boss", + "die": "D100", + "used_count": 2, + "source_doc_id": "1xArtFHl1TQb1a2dkuOVUNhZnIHHCcSv-pJEYeG-aj1o", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Charm the boss: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Charm the boss: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Charm the boss: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Charm the boss: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Charm the boss: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Charm the boss: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Charm the boss: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "item_being_auctioned", + "display_name": "item being auctioned", + "die": "D100", + "used_count": 2, + "source_doc_id": "1pDCV2-pTZ9wfsOwQYIz3pyPrFZdZTjMLUYhUxmVMeJg", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "item being auctioned: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "item being auctioned: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "item being auctioned: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "item being auctioned: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "item being auctioned: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "item being auctioned: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "item being auctioned: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "new_city", + "display_name": "new city", + "die": "D100", + "used_count": 2, + "source_doc_id": "1xlqonNrGft-q5KLRCSdcIlYhO39KL3N6ufswQTYZz0s", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "new city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "new city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "new city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "new city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "new city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "new city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "new city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "shenanigan", + "display_name": "shenanigan", + "die": "D20", + "used_count": 2, + "source_doc_id": "1k4oS8O5zTVwK_GKDw6FtswX9iuUU88vZyRVhjFVXvPo", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-3", + "result": "shenanigan: disaster", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "4-7", + "result": "shenanigan: setback", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "8-12", + "result": "shenanigan: fine", + "effect": { + "cash": 1000, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "13-16", + "result": "shenanigan: good", + "effect": { + "cash": 5000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "17-19", + "result": "shenanigan: great", + "effect": { + "cash": 10000, + "wealth": 1, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "20", + "result": "shenanigan: legendary", + "effect": { + "cash": 20000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "throw_a_someone_under_the_bus", + "display_name": "Throw a someone under the bus", + "die": "D100", + "used_count": 2, + "source_doc_id": "1wTy7p5bf5LYi2s30q3yQkGigo7yVU_dHgdD-mOSiyFA", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Throw a someone under the bus: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Throw a someone under the bus: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Throw a someone under the bus: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Throw a someone under the bus: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Throw a someone under the bus: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Throw a someone under the bus: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Throw a someone under the bus: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1iQFHpGfQ1pXxHjGCH6Mc_UblptLYwjScwLTdMMSlR04", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1RK13kUyf-Nqe-GOlOHsGoY7D7tkB7WQrkmsrsid1gd4", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1zL5OOVVxMJ2Yla4AAnUTALqwRzTszes7laFoGC9muMY", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1ebVu9Y-dkMtF5MRtycaN3iIcYGU5B5I4VplWredL2Ho", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "11KmuR0Reg41PNswUW_DsJfPNYPDNprDnKjizpQ9cgT8", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "accept_a_local_recommendation", + "display_name": "Accept a local recommendation", + "die": "D100", + "used_count": 1, + "source_doc_id": "1fyNelvTmec14A_4k26okctKVZKpMJEYl2YTc2tW-ESI", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Accept a local recommendation: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Accept a local recommendation: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Accept a local recommendation: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Accept a local recommendation: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Accept a local recommendation: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Accept a local recommendation: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Accept a local recommendation: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "applicant_s", + "display_name": "applicant\\'s", + "die": "D100", + "used_count": 1, + "source_doc_id": "155pkcNdEV0nlYyEysv0I2hKKTBWoujJoifQRme9gkJY", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "applicant\\'s: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "applicant\\'s: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "applicant\\'s: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "applicant\\'s: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "applicant\\'s: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "applicant\\'s: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "applicant\\'s: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "company_perk", + "display_name": "company perk", + "die": "D100", + "used_count": 1, + "source_doc_id": "1_KP6ITW-ItqyAvMJ0gNLiIQbh9Wan3vA8C10GFwD1uY", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "company perk: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "company perk: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "company perk: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "company perk: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "company perk: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "company perk: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "company perk: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "16fwZcsCoGM3ZlxgAb8xUh1mXXaTtJnwMrkUPldMPvtA", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1AH19IHgGF5qFaVZo8PNM1mP1VL7Cjjm8JRrt39B4RLM", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1ij47Svr7ciFJLRmK5MoDE7AoLV4FusrwT8gIXkgs_NU", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1WRsjGGeZJPTGsAtYotr7d-Kn5KltQsPDas9MN8GYCvY", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1HdiUWTryv9olHpuWYxnaGUFoF6I3C81BRP8ZJ9Fvn9E", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "explore_the_city", + "display_name": "Explore the city", + "die": "D100", + "used_count": 1, + "source_doc_id": "1yBfmsTUfBcJ-4TZO35IK0Dovq3zKPwunnkav-m4Jwjw", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Explore the city: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Explore the city: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Explore the city: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Explore the city: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Explore the city: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Explore the city: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Explore the city: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "gift_exchange", + "display_name": "gift exchange!", + "die": "D100", + "used_count": 1, + "source_doc_id": "1ZrAb_1irNHeVHX7Ey4YD3xcFXtTKZRtLoKtSoV60ucA", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "gift exchange!: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "gift exchange!: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "gift exchange!: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "gift exchange!: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "gift exchange!: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "gift exchange!: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "gift exchange!: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "1NMdVTdCjG1ozY-OXzHe1y4eVSVA7aAuC6jChnO2LF84", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "1WxzgBoPJOUFFLO2p7KMUZXNkyCnlHq1ZikookfWGK4M", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "15cZElCVDxxw850pK7prCMo2oSR5KpeHuGtNHryfOGj8", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "1sT_TTM76ksiqcIb_EOaBzDcizBIglKLsoGxVABM-aiI", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "18b3if2Xw1qZmSLwDR3NksJLMgfKRosAp6JoeG7gWY_o", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "go_into_nature", + "display_name": "Go into nature", + "die": "D100", + "used_count": 1, + "source_doc_id": "1z4DOhLh_P8ndmKduNX7ltdJKQ5ZJ7HwS1N12uTfONtA", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Go into nature: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Go into nature: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Go into nature: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Go into nature: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Go into nature: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Go into nature: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Go into nature: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "karaoke_bar", + "display_name": "Karaoke bar", + "die": "D100", + "used_count": 1, + "source_doc_id": "134dI9sS28EI_k-orDGaAq8uErltw7HuQ_oHB1alccFI", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Karaoke bar: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Karaoke bar: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Karaoke bar: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Karaoke bar: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Karaoke bar: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Karaoke bar: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Karaoke bar: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "mystery_tattoo_table", + "display_name": "Mystery Tattoo Table", + "die": "D100", + "used_count": 1, + "source_doc_id": "1wlDHXRDCT0NBPtphdrtmi20uSANZXB-QP03FAOWQyp0", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Mystery Tattoo Table: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Mystery Tattoo Table: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Mystery Tattoo Table: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Mystery Tattoo Table: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Mystery Tattoo Table: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Mystery Tattoo Table: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Mystery Tattoo Table: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "play_it_safe", + "display_name": "Play it safe", + "die": "D100", + "used_count": 1, + "source_doc_id": "1ATF9PAm4uey5wfwtCijuqbh48iLajU9SUN-WW5myqMI", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Play it safe: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Play it safe: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Play it safe: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Play it safe: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Play it safe: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Play it safe: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Play it safe: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "roll_d20", + "display_name": "Roll D20.", + "die": "D100", + "used_count": 1, + "source_doc_id": "1AV5aPp-DNByHlcoASduiHJXXk0yhqClqcg3y7-QE3XM", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Roll D20.: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Roll D20.: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Roll D20.: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Roll D20.: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Roll D20.: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Roll D20.: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Roll D20.: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "roll_d20", + "display_name": "Roll D20.", + "die": "D100", + "used_count": 1, + "source_doc_id": "1oqSe2YQS8ojIxRCmjWz-A7mwLRS5LMuw11oG-jLIeRk", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Roll D20.: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Roll D20.: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Roll D20.: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Roll D20.: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Roll D20.: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Roll D20.: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Roll D20.: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "side_hustle_table", + "display_name": "Side Hustle Table", + "die": "D100", + "used_count": 1, + "source_doc_id": "1YPGyCYevyZFCZsKE3didumCX9G16xmeQxpQsEJn2hrM", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Side Hustle Table: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Side Hustle Table: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Side Hustle Table: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Side Hustle Table: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Side Hustle Table: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Side Hustle Table: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Side Hustle Table: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "sporting_event", + "display_name": "Sporting event", + "die": "D100", + "used_count": 1, + "source_doc_id": "1LSKQ2OpeJtXk72S8cND9G6SZYbFB9qBVSlHBi6fnzNY", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Sporting event: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Sporting event: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Sporting event: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Sporting event: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Sporting event: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Sporting event: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Sporting event: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "take_the_risk", + "display_name": "Take the risk", + "die": "D100", + "used_count": 1, + "source_doc_id": "1LH7iWYqe2gCgZIA5DNoTDzyaSinmzA4nnhwzUthXTeM", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Take the risk: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Take the risk: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Take the risk: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Take the risk: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Take the risk: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Take the risk: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Take the risk: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "treasure", + "display_name": "treasure", + "die": "D100", + "used_count": 1, + "source_doc_id": "1CKgD3-vup578E9Vn1GQCN8DHlDUG4qjxX26McMnuz1s", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "treasure: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "treasure: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "treasure: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "treasure: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "treasure: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "treasure: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "treasure: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "trivia_question", + "display_name": "trivia question", + "die": "D100", + "used_count": 1, + "source_doc_id": "1xC_k_bC56zTQIgJFXbmkI_vDFw8N3iHx83KEDuCFPzk", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "trivia question: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "trivia question: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "trivia question: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "trivia question: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "trivia question: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "trivia question: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "trivia question: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + }, + { + "id": "upscale_steakhouse", + "display_name": "Upscale steakhouse", + "die": "D100", + "used_count": 1, + "source_doc_id": "1jBSr7kfaKhGalLoC0zn6r6o45FP1vHPcG-kiC_EvDPQ", + "status": "PLACEHOLDER — needs real content", + "entries": [ + { + "range": "1-10", + "result": "Upscale steakhouse: worst outcome", + "effect": { + "cash": -10000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "11-30", + "result": "Upscale steakhouse: bad outcome", + "effect": { + "cash": -5000 + }, + "note": "PLACEHOLDER" + }, + { + "range": "31-55", + "result": "Upscale steakhouse: mediocre outcome", + "effect": { + "cash": -1000, + "education": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "56-75", + "result": "Upscale steakhouse: decent outcome", + "effect": { + "cash": 3000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "76-90", + "result": "Upscale steakhouse: good outcome", + "effect": { + "cash": 8000, + "wealth": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "91-99", + "result": "Upscale steakhouse: great outcome", + "effect": { + "cash": 15000, + "wealth": 2, + "love": 1 + }, + "note": "PLACEHOLDER" + }, + { + "range": "100", + "result": "Upscale steakhouse: jackpot", + "effect": { + "cash": 30000, + "wealth": 2, + "love": 2 + }, + "note": "PLACEHOLDER" + } + ] + } + ] +}; diff --git a/shared/tile-inventory.json b/shared/tile-inventory.json new file mode 100644 index 0000000..549765d --- /dev/null +++ b/shared/tile-inventory.json @@ -0,0 +1,2393 @@ +{ + "stats_model": [ + "cash", + "love", + "education", + "wealth", + "age" + ], + "segments": [ + { + "id": "starting_strip", + "label": "Starting Strip", + "tile_count": 7, + "tiles": [ + { + "name": "Graduation party", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "Action space", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "First Paycheck", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "Dice roll", + "type": "dice_space", + "die": null, + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "Underground poker", + "type": "choice", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "New job", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "STOP", + "type": "stop", + "die": "D8", + "external_tables": [], + "stats_touched": [ + "age" + ], + "note": "Roll D8 to age, then choose next path (fork)" + } + ] + }, + { + "id": "career", + "label": "Career Path", + "tile_count": 22, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "RECRUITER CALLS", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [] + }, + { + "name": "PERFORMANCE REVIEW", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1wJdD1UU-kFY1seQyMuIG67akw2ZbkfxPScPhblLfu5E", + "1wTy7p5bf5LYi2s30q3yQkGigo7yVU_dHgdD-mOSiyFA", + "1xArtFHl1TQb1a2dkuOVUNhZnIHHCcSv-pJEYeG-aj1o" + ], + "stats_touched": [] + }, + { + "name": "NEW HIRE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "155pkcNdEV0nlYyEysv0I2hKKTBWoujJoifQRme9gkJY" + ], + "stats_touched": [] + }, + { + "name": "START A BUSINESS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A" + ], + "stats_touched": [] + }, + { + "name": "OFFICE BAR TRIVIA", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1xC_k_bC56zTQIgJFXbmkI_vDFw8N3iHx83KEDuCFPzk" + ], + "stats_touched": [ + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "COMPANY PERKS", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1_KP6ITW-ItqyAvMJ0gNLiIQbh9Wan3vA8C10GFwD1uY" + ], + "stats_touched": [] + }, + { + "name": "THE NEWS", + "type": "event", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "COMPANY RACE DAY", + "type": "inline_table", + "die": "D10", + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "OPPORTUNITY KNOCKS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1ATF9PAm4uey5wfwtCijuqbh48iLajU9SUN-WW5myqMI", + "1LH7iWYqe2gCgZIA5DNoTDzyaSinmzA4nnhwzUthXTeM" + ], + "stats_touched": [] + }, + { + "name": "CLIENT DINNER", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "134dI9sS28EI_k-orDGaAq8uErltw7HuQ_oHB1alccFI", + "1LSKQ2OpeJtXk72S8cND9G6SZYbFB9qBVSlHBi6fnzNY", + "1jBSr7kfaKhGalLoC0zn6r6o45FP1vHPcG-kiC_EvDPQ" + ], + "stats_touched": [] + }, + { + "name": "SHENANIGANS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1k4oS8O5zTVwK_GKDw6FtswX9iuUU88vZyRVhjFVXvPo" + ], + "stats_touched": [] + }, + { + "name": "OFFICE CHRISTMAS PARTY", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1ZrAb_1irNHeVHX7Ey4YD3xcFXtTKZRtLoKtSoV60ucA" + ], + "stats_touched": [] + }, + { + "name": "MENTORSHIP", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "BIG CAREER MOMENT", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "PERFORMANCE REVIEW", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1wJdD1UU-kFY1seQyMuIG67akw2ZbkfxPScPhblLfu5E", + "1wTy7p5bf5LYi2s30q3yQkGigo7yVU_dHgdD-mOSiyFA", + "1xArtFHl1TQb1a2dkuOVUNhZnIHHCcSv-pJEYeG-aj1o" + ], + "stats_touched": [] + }, + { + "name": "START A BUSINESS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A" + ], + "stats_touched": [] + }, + { + "name": "STOP", + "type": "stop", + "die": "D8", + "external_tables": [], + "stats_touched": [ + "age" + ], + "note": "Roll D8 to age, then choose next path (fork)" + } + ] + }, + { + "id": "investment", + "label": "Investment Path", + "tile_count": 20, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "SIDE INVESTMENT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "ESTATE AUCTION", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1pDCV2-pTZ9wfsOwQYIz3pyPrFZdZTjMLUYhUxmVMeJg" + ], + "stats_touched": [ + "cash" + ] + }, + { + "name": "MARKET CRASH", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FORCED PARTNERSHIP", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "401k", + "type": "cash_bonus", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "SEMINAR", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ANGEL INVESTOR", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "BLIND INVESTMENT", + "type": "inline_table", + "die": "D6", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "BANKRUPTCY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "MARKET MAYHEM", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "FINANCIAL ADVISOR", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + } + ] + }, + { + "id": "investment_bottom", + "label": "Investment Path (Bottom)", + "tile_count": 23, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "SIDE INVESTMENT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "START A BUSINESS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A" + ], + "stats_touched": [] + }, + { + "name": "MARKET CRASH", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ESTATE AUCTION", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1pDCV2-pTZ9wfsOwQYIz3pyPrFZdZTjMLUYhUxmVMeJg" + ], + "stats_touched": [ + "cash" + ] + }, + { + "name": "401k", + "type": "cash_bonus", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "ANGEL INVESTOR", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FORCED PARTNERSHIP", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "BANKRUPTCY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "BLIND INVESTMENT", + "type": "inline_table", + "die": "D6", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "BET AGAINST ANOTHER PLAYER", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "MARKET MAYHEM", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "FORCE SALE", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "START A BUSINESS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A" + ], + "stats_touched": [] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + } + ] + }, + { + "id": "high_risk", + "label": "High Risk Path", + "tile_count": 11, + "tiles": [ + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "BET AGAINST ANOTHER PLAYER", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "LEVERAGED BUYOUT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "100K", + "type": "cash_bonus", + "die": null, + "external_tables": [], + "stats_touched": [] + }, + { + "name": "INVESTEGATION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "BLIND INVESTMENT", + "type": "inline_table", + "die": "D6", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "cash" + ] + }, + { + "name": "ROUGE TRADER", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "10K", + "type": "cash_bonus", + "die": null, + "external_tables": [], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + } + ] + }, + { + "id": "gap_year", + "label": "Gap Year Path", + "tile_count": 17, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "SHENANIGANS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1k4oS8O5zTVwK_GKDw6FtswX9iuUU88vZyRVhjFVXvPo" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "TREASURE HUNT (NEED TO MAKE TREASURE MAP)", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1CKgD3-vup578E9Vn1GQCN8DHlDUG4qjxX26McMnuz1s" + ], + "stats_touched": [] + }, + { + "name": "LOST IN TRANSLATION", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "MEXICO", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "16fwZcsCoGM3ZlxgAb8xUh1mXXaTtJnwMrkUPldMPvtA", + "1NMdVTdCjG1ozY-OXzHe1y4eVSVA7aAuC6jChnO2LF84", + "1iQFHpGfQ1pXxHjGCH6Mc_UblptLYwjScwLTdMMSlR04" + ], + "stats_touched": [] + }, + { + "name": "AIRPORT SECURITY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "AUSTRALIA", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1AH19IHgGF5qFaVZo8PNM1mP1VL7Cjjm8JRrt39B4RLM", + "1RK13kUyf-Nqe-GOlOHsGoY7D7tkB7WQrkmsrsid1gd4", + "1WxzgBoPJOUFFLO2p7KMUZXNkyCnlHq1ZikookfWGK4M" + ], + "stats_touched": [] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "JAPAN", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "15cZElCVDxxw850pK7prCMo2oSR5KpeHuGtNHryfOGj8", + "1ij47Svr7ciFJLRmK5MoDE7AoLV4FusrwT8gIXkgs_NU", + "1zL5OOVVxMJ2Yla4AAnUTALqwRzTszes7laFoGC9muMY" + ], + "stats_touched": [] + }, + { + "name": "ACCENT ROULETTE", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [] + }, + { + "name": "IRELAND", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1WRsjGGeZJPTGsAtYotr7d-Kn5KltQsPDas9MN8GYCvY", + "1ebVu9Y-dkMtF5MRtycaN3iIcYGU5B5I4VplWredL2Ho", + "1sT_TTM76ksiqcIb_EOaBzDcizBIglKLsoGxVABM-aiI" + ], + "stats_touched": [] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "GERMANY", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "11KmuR0Reg41PNswUW_DsJfPNYPDNprDnKjizpQ9cgT8", + "18b3if2Xw1qZmSLwDR3NksJLMgfKRosAp6JoeG7gWY_o", + "1HdiUWTryv9olHpuWYxnaGUFoF6I3C81BRP8ZJ9Fvn9E" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "ITALY", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1fyNelvTmec14A_4k26okctKVZKpMJEYl2YTc2tW-ESI", + "1yBfmsTUfBcJ-4TZO35IK0Dovq3zKPwunnkav-m4Jwjw", + "1z4DOhLh_P8ndmKduNX7ltdJKQ5ZJ7HwS1N12uTfONtA" + ], + "stats_touched": [] + }, + { + "name": "STOP", + "type": "stop", + "die": "D8", + "external_tables": [], + "stats_touched": [ + "age" + ], + "note": "Roll D8 to age, then choose next path (fork)" + } + ] + }, + { + "id": "education", + "label": "Education Path", + "tile_count": 12, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "SCHOLARSHIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "4 YEAR DAGREE", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "COMMUNITY COLLAGE", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "APPRENTICESHIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "STUDY ABROD", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "POP QUIZ", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "EXTRACURRICULAR", + "type": "roll_table_ref", + "die": "D20", + "external_tables": [ + "1AV5aPp-DNByHlcoASduiHJXXk0yhqClqcg3y7-QE3XM", + "1oqSe2YQS8ojIxRCmjWz-A7mwLRS5LMuw11oG-jLIeRk" + ], + "stats_touched": [] + }, + { + "name": "ONLINE COURSE", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "GRADUATION GIFT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "cash" + ] + } + ] + }, + { + "id": "relationship_top", + "label": "Relationship/Family (Top)", + "tile_count": 20, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "ADOPT A PET", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1N5haX_RWch0LciZM-SvrHoxuXjOyLglzb5FlW9wmJFg" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "UNCLES CONDO", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEW CITY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1xlqonNrGft-q5KLRCSdcIlYhO39KL3N6ufswQTYZz0s" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "DINNER PARTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "age", + "cash" + ] + }, + { + "name": "MARRIGE", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "WHITE ELEPHANT", + "type": "inline_table", + "die": "D6", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FRIENDS WEDDING", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "PODCAST", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "PERFECT IMPRESSION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "FAMILY REUNION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "AGING PARENTS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "age", + "cash" + ] + } + ] + }, + { + "id": "relationship_bottom", + "label": "Relationship/Family (Bottom)", + "tile_count": 26, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "UNCLES CONDO", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ADOPT A PET", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1N5haX_RWch0LciZM-SvrHoxuXjOyLglzb5FlW9wmJFg" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "RISKY MOVE", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEW CITY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1xlqonNrGft-q5KLRCSdcIlYhO39KL3N6ufswQTYZz0s" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "SIBLINGS WEDDING", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEIGHBORS PET", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "SIDE HUSTLE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1YPGyCYevyZFCZsKE3didumCX9G16xmeQxpQsEJn2hrM" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "PODCAST", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "MARRIGE", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "FAMILY VACATION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ADOPT A PET", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1N5haX_RWch0LciZM-SvrHoxuXjOyLglzb5FlW9wmJFg" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FAMILY REUNION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "HOUSE MAINTENANCE", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "AGING PARENTS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "age", + "cash" + ] + } + ] + }, + { + "id": "retirement_top", + "label": "Retirement Path (Top)", + "tile_count": 11, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "INVESTMENT PAID OFF", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "START A BAND", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "JURY DUTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "THE RACES", + "type": "inline_table", + "die": "D10", + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "BUCKET LIST TRIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOME RENOVATIONS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOSTED THANKSGIVING", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + } + ] + }, + { + "id": "retirement_middle", + "label": "Retirement Path (Middle)", + "tile_count": 22, + "tiles": [ + { + "name": "\u00bd LIFE CRISIS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HORRIBLE HANGOVER", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "40TH BIRTHDAY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "MYSTERY TATTOO", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1wlDHXRDCT0NBPtphdrtmi20uSANZXB-QP03FAOWQyp0" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "UNEXPECTED JOY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOST CHRISTMAS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUCKET LIST", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "RETIREMENT PARTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "SELL HOUSE", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0" + ], + "stats_touched": [] + }, + { + "name": "DID YOU HEAR?", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "LOTTERY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "FANTASY FOOTBALL", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HIGH SCHOOL REUNION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "POKER NIGHT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "PICKEL BALL", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BOWLING NIGHT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "INVESTMENT PAID OFF", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "RETIREMENT PARTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + } + ] + }, + { + "id": "retirement_bottom", + "label": "Retirement Path (Bottom)", + "tile_count": 20, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FANTASY FOOTBALL", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOSTED THANKSGIVING", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "HIGH SCHOOL REUNION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "SPEEDING TICKET", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BOWLING NIGHT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "JURY DUTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "PICKEL BALL", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "THE RACES", + "type": "inline_table", + "die": "D10", + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "POKER NIGHT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "HOME RENOVATIONS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUCKET LIST TRIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "JOINED FACEBOOK", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "GOLF TRIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "DENTAL WORK", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "START A BAND", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "INVESTMENT PAID OFF", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/shared/tileInventory.js b/shared/tileInventory.js new file mode 100644 index 0000000..0f95104 --- /dev/null +++ b/shared/tileInventory.js @@ -0,0 +1,2405 @@ +/** + * Isomorphic wrapper around shared/tile-inventory.json (kept as-is alongside + * this file as the raw source reference). Plain `export default` rather than a JSON + * module import — sidesteps import-attribute syntax support gaps between + * node:20-alpine (the Dockerfile's base image) and browsers, and works + * exactly like every other shared/ file: importable by the server and + * fetchable by the browser with zero bundler. + * + * 211 tiles across 12 segments, parsed from the design doc. stats_model is + * the five per-player stats the whole game tracks. + */ + +export default { + "stats_model": [ + "cash", + "love", + "education", + "wealth", + "age" + ], + "segments": [ + { + "id": "starting_strip", + "label": "Starting Strip", + "tile_count": 7, + "tiles": [ + { + "name": "Graduation party", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "Action space", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "First Paycheck", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "Dice roll", + "type": "dice_space", + "die": null, + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "Underground poker", + "type": "choice", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "New job", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "STOP", + "type": "stop", + "die": "D8", + "external_tables": [], + "stats_touched": [ + "age" + ], + "note": "Roll D8 to age, then choose next path (fork)" + } + ] + }, + { + "id": "career", + "label": "Career Path", + "tile_count": 22, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "RECRUITER CALLS", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [] + }, + { + "name": "PERFORMANCE REVIEW", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1wJdD1UU-kFY1seQyMuIG67akw2ZbkfxPScPhblLfu5E", + "1wTy7p5bf5LYi2s30q3yQkGigo7yVU_dHgdD-mOSiyFA", + "1xArtFHl1TQb1a2dkuOVUNhZnIHHCcSv-pJEYeG-aj1o" + ], + "stats_touched": [] + }, + { + "name": "NEW HIRE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "155pkcNdEV0nlYyEysv0I2hKKTBWoujJoifQRme9gkJY" + ], + "stats_touched": [] + }, + { + "name": "START A BUSINESS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A" + ], + "stats_touched": [] + }, + { + "name": "OFFICE BAR TRIVIA", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1xC_k_bC56zTQIgJFXbmkI_vDFw8N3iHx83KEDuCFPzk" + ], + "stats_touched": [ + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "COMPANY PERKS", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1_KP6ITW-ItqyAvMJ0gNLiIQbh9Wan3vA8C10GFwD1uY" + ], + "stats_touched": [] + }, + { + "name": "THE NEWS", + "type": "event", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "COMPANY RACE DAY", + "type": "inline_table", + "die": "D10", + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "OPPORTUNITY KNOCKS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1ATF9PAm4uey5wfwtCijuqbh48iLajU9SUN-WW5myqMI", + "1LH7iWYqe2gCgZIA5DNoTDzyaSinmzA4nnhwzUthXTeM" + ], + "stats_touched": [] + }, + { + "name": "CLIENT DINNER", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "134dI9sS28EI_k-orDGaAq8uErltw7HuQ_oHB1alccFI", + "1LSKQ2OpeJtXk72S8cND9G6SZYbFB9qBVSlHBi6fnzNY", + "1jBSr7kfaKhGalLoC0zn6r6o45FP1vHPcG-kiC_EvDPQ" + ], + "stats_touched": [] + }, + { + "name": "SHENANIGANS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1k4oS8O5zTVwK_GKDw6FtswX9iuUU88vZyRVhjFVXvPo" + ], + "stats_touched": [] + }, + { + "name": "OFFICE CHRISTMAS PARTY", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1ZrAb_1irNHeVHX7Ey4YD3xcFXtTKZRtLoKtSoV60ucA" + ], + "stats_touched": [] + }, + { + "name": "MENTORSHIP", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "BIG CAREER MOMENT", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "PERFORMANCE REVIEW", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1wJdD1UU-kFY1seQyMuIG67akw2ZbkfxPScPhblLfu5E", + "1wTy7p5bf5LYi2s30q3yQkGigo7yVU_dHgdD-mOSiyFA", + "1xArtFHl1TQb1a2dkuOVUNhZnIHHCcSv-pJEYeG-aj1o" + ], + "stats_touched": [] + }, + { + "name": "START A BUSINESS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A" + ], + "stats_touched": [] + }, + { + "name": "STOP", + "type": "stop", + "die": "D8", + "external_tables": [], + "stats_touched": [ + "age" + ], + "note": "Roll D8 to age, then choose next path (fork)" + } + ] + }, + { + "id": "investment", + "label": "Investment Path", + "tile_count": 20, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "SIDE INVESTMENT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "ESTATE AUCTION", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1pDCV2-pTZ9wfsOwQYIz3pyPrFZdZTjMLUYhUxmVMeJg" + ], + "stats_touched": [ + "cash" + ] + }, + { + "name": "MARKET CRASH", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FORCED PARTNERSHIP", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "401k", + "type": "cash_bonus", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "SEMINAR", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ANGEL INVESTOR", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "BLIND INVESTMENT", + "type": "inline_table", + "die": "D6", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "BANKRUPTCY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "MARKET MAYHEM", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "FINANCIAL ADVISOR", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + } + ] + }, + { + "id": "investment_bottom", + "label": "Investment Path (Bottom)", + "tile_count": 23, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "SIDE INVESTMENT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "START A BUSINESS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A" + ], + "stats_touched": [] + }, + { + "name": "MARKET CRASH", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ESTATE AUCTION", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1pDCV2-pTZ9wfsOwQYIz3pyPrFZdZTjMLUYhUxmVMeJg" + ], + "stats_touched": [ + "cash" + ] + }, + { + "name": "401k", + "type": "cash_bonus", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "ANGEL INVESTOR", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FORCED PARTNERSHIP", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "BANKRUPTCY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "BLIND INVESTMENT", + "type": "inline_table", + "die": "D6", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "BET AGAINST ANOTHER PLAYER", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "MARKET MAYHEM", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "FORCE SALE", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "START A BUSINESS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1DbrGx9az4HHVEEuwJS1hvIpZT172OTV-fufE2Z9tQCY", + "1NJbJ3hJNY_u6I7Giqab5YzJl2RIvI1-PW_s2t3xkpEs", + "1ugAMngYh8uSNxeDL0PGDCP1f70TTDERfJ2069r0Og1A" + ], + "stats_touched": [] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + } + ] + }, + { + "id": "high_risk", + "label": "High Risk Path", + "tile_count": 11, + "tiles": [ + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "BET AGAINST ANOTHER PLAYER", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "LEVERAGED BUYOUT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "100K", + "type": "cash_bonus", + "die": null, + "external_tables": [], + "stats_touched": [] + }, + { + "name": "INVESTEGATION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "BLIND INVESTMENT", + "type": "inline_table", + "die": "D6", + "external_tables": [], + "stats_touched": [ + "education", + "wealth", + "cash" + ] + }, + { + "name": "ROUGE TRADER", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "10K", + "type": "cash_bonus", + "die": null, + "external_tables": [], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + } + ] + }, + { + "id": "gap_year", + "label": "Gap Year Path", + "tile_count": 17, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "SHENANIGANS", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1k4oS8O5zTVwK_GKDw6FtswX9iuUU88vZyRVhjFVXvPo" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "TREASURE HUNT (NEED TO MAKE TREASURE MAP)", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1CKgD3-vup578E9Vn1GQCN8DHlDUG4qjxX26McMnuz1s" + ], + "stats_touched": [] + }, + { + "name": "LOST IN TRANSLATION", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "MEXICO", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "16fwZcsCoGM3ZlxgAb8xUh1mXXaTtJnwMrkUPldMPvtA", + "1NMdVTdCjG1ozY-OXzHe1y4eVSVA7aAuC6jChnO2LF84", + "1iQFHpGfQ1pXxHjGCH6Mc_UblptLYwjScwLTdMMSlR04" + ], + "stats_touched": [] + }, + { + "name": "AIRPORT SECURITY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "AUSTRALIA", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1AH19IHgGF5qFaVZo8PNM1mP1VL7Cjjm8JRrt39B4RLM", + "1RK13kUyf-Nqe-GOlOHsGoY7D7tkB7WQrkmsrsid1gd4", + "1WxzgBoPJOUFFLO2p7KMUZXNkyCnlHq1ZikookfWGK4M" + ], + "stats_touched": [] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "JAPAN", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "15cZElCVDxxw850pK7prCMo2oSR5KpeHuGtNHryfOGj8", + "1ij47Svr7ciFJLRmK5MoDE7AoLV4FusrwT8gIXkgs_NU", + "1zL5OOVVxMJ2Yla4AAnUTALqwRzTszes7laFoGC9muMY" + ], + "stats_touched": [] + }, + { + "name": "ACCENT ROULETTE", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [] + }, + { + "name": "IRELAND", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1WRsjGGeZJPTGsAtYotr7d-Kn5KltQsPDas9MN8GYCvY", + "1ebVu9Y-dkMtF5MRtycaN3iIcYGU5B5I4VplWredL2Ho", + "1sT_TTM76ksiqcIb_EOaBzDcizBIglKLsoGxVABM-aiI" + ], + "stats_touched": [] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "GERMANY", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "11KmuR0Reg41PNswUW_DsJfPNYPDNprDnKjizpQ9cgT8", + "18b3if2Xw1qZmSLwDR3NksJLMgfKRosAp6JoeG7gWY_o", + "1HdiUWTryv9olHpuWYxnaGUFoF6I3C81BRP8ZJ9Fvn9E" + ], + "stats_touched": [] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "ITALY", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1fyNelvTmec14A_4k26okctKVZKpMJEYl2YTc2tW-ESI", + "1yBfmsTUfBcJ-4TZO35IK0Dovq3zKPwunnkav-m4Jwjw", + "1z4DOhLh_P8ndmKduNX7ltdJKQ5ZJ7HwS1N12uTfONtA" + ], + "stats_touched": [] + }, + { + "name": "STOP", + "type": "stop", + "die": "D8", + "external_tables": [], + "stats_touched": [ + "age" + ], + "note": "Roll D8 to age, then choose next path (fork)" + } + ] + }, + { + "id": "education", + "label": "Education Path", + "tile_count": 12, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "SCHOLARSHIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "4 YEAR DAGREE", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "COMMUNITY COLLAGE", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "APPRENTICESHIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "STUDY ABROD", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "POP QUIZ", + "type": "event", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "EXTRACURRICULAR", + "type": "roll_table_ref", + "die": "D20", + "external_tables": [ + "1AV5aPp-DNByHlcoASduiHJXXk0yhqClqcg3y7-QE3XM", + "1oqSe2YQS8ojIxRCmjWz-A7mwLRS5LMuw11oG-jLIeRk" + ], + "stats_touched": [] + }, + { + "name": "ONLINE COURSE", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "GRADUATION GIFT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "wealth", + "cash" + ] + } + ] + }, + { + "id": "relationship_top", + "label": "Relationship/Family (Top)", + "tile_count": 20, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "ADOPT A PET", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1N5haX_RWch0LciZM-SvrHoxuXjOyLglzb5FlW9wmJFg" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "UNCLES CONDO", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEW CITY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1xlqonNrGft-q5KLRCSdcIlYhO39KL3N6ufswQTYZz0s" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "DINNER PARTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "age", + "cash" + ] + }, + { + "name": "MARRIGE", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "WHITE ELEPHANT", + "type": "inline_table", + "die": "D6", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FRIENDS WEDDING", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "PODCAST", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "PERFECT IMPRESSION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "FAMILY REUNION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "AGING PARENTS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "age", + "cash" + ] + } + ] + }, + { + "id": "relationship_bottom", + "label": "Relationship/Family (Bottom)", + "tile_count": 26, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "UNCLES CONDO", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ADOPT A PET", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1N5haX_RWch0LciZM-SvrHoxuXjOyLglzb5FlW9wmJFg" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "RISKY MOVE", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEW CITY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1xlqonNrGft-q5KLRCSdcIlYhO39KL3N6ufswQTYZz0s" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "SIBLINGS WEDDING", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "NEIGHBORS PET", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "SIDE HUSTLE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1YPGyCYevyZFCZsKE3didumCX9G16xmeQxpQsEJn2hrM" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "BUY A HOUSE", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0", + "1RzYjslECXp_qmg58IarH8NRmFfXjiRcMCyfCSwtHY28" + ], + "stats_touched": [] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "PODCAST", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "MARRIGE", + "type": "choice", + "die": null, + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "FAMILY VACATION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ADOPT A PET", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1N5haX_RWch0LciZM-SvrHoxuXjOyLglzb5FlW9wmJFg" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FAMILY REUNION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "HOUSE MAINTENANCE", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HAVE A BABY", + "type": "inline_table", + "die": "D2", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "AGING PARENTS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "age", + "cash" + ] + } + ] + }, + { + "id": "retirement_top", + "label": "Retirement Path (Top)", + "tile_count": 11, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "INVESTMENT PAID OFF", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "START A BAND", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "JURY DUTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "THE RACES", + "type": "inline_table", + "die": "D10", + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "BUCKET LIST TRIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOME RENOVATIONS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOSTED THANKSGIVING", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + } + ] + }, + { + "id": "retirement_middle", + "label": "Retirement Path (Middle)", + "tile_count": 22, + "tiles": [ + { + "name": "½ LIFE CRISIS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HORRIBLE HANGOVER", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "40TH BIRTHDAY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "MYSTERY TATTOO", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1wlDHXRDCT0NBPtphdrtmi20uSANZXB-QP03FAOWQyp0" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "UNEXPECTED JOY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOST CHRISTMAS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUCKET LIST", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "cash" + ] + }, + { + "name": "RETIREMENT PARTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "SELL HOUSE", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "12QfLobLqSnCOV19zizZLcxcyeGs2bjEC3_thkdowsN0" + ], + "stats_touched": [] + }, + { + "name": "DID YOU HEAR?", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "LOTTERY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "FANTASY FOOTBALL", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HIGH SCHOOL REUNION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "POKER NIGHT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "PICKEL BALL", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BOWLING NIGHT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "INVESTMENT PAID OFF", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "DICE SPACE", + "type": "dice_space", + "die": "D100", + "external_tables": [ + "1jzg98P0YGEKBAnmJ2NXUZ95KKpZOwcHYzKn61-nSqb8" + ], + "stats_touched": [] + }, + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "RETIREMENT PARTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + } + ] + }, + { + "id": "retirement_bottom", + "label": "Retirement Path (Bottom)", + "tile_count": 20, + "tiles": [ + { + "name": "PAY DAY", + "type": "payday", + "die": null, + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "HOBBY", + "type": "roll_table_ref", + "die": "D100", + "external_tables": [ + "1cgCaksYlgD3f6XvEJIB8fKbqJq66ulm0BJGQQQNMXRY" + ], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "FANTASY FOOTBALL", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "HOSTED THANKSGIVING", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "HIGH SCHOOL REUNION", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "SPEEDING TICKET", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BOWLING NIGHT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "JURY DUTY", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "PICKEL BALL", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "THE RACES", + "type": "inline_table", + "die": "D10", + "external_tables": [], + "stats_touched": [ + "cash" + ] + }, + { + "name": "NEW JOB", + "type": "roll_table_ref", + "die": null, + "external_tables": [ + "1Ug4ouNQIrWzTxOrEuBTgtPO6ypXpjsjdieBLkarI6UU" + ], + "stats_touched": [] + }, + { + "name": "POKER NIGHT", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "HOME RENOVATIONS", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "BUCKET LIST TRIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "JOINED FACEBOOK", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "GOLF TRIP", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "DENTAL WORK", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "age", + "cash" + ] + }, + { + "name": "ACTION SPACE", + "type": "action_space", + "die": "D100", + "external_tables": [ + "1TzQVhq71-zokLT_MqweT_I5uC4AXkPflODOjtOp-gUg" + ], + "stats_touched": [] + }, + { + "name": "START A BAND", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + }, + { + "name": "INVESTMENT PAID OFF", + "type": "inline_table", + "die": "D20", + "external_tables": [], + "stats_touched": [ + "love", + "education", + "wealth", + "cash" + ] + } + ] + } + ] +};