220f70d342
shared/tile-inventory.json + shared/roll-tables.json + shared/GAME-REVIEW.md
+ shared/BRANCHING-TEMPLATE.md were parsed from the design doc in a separate
session and were already sitting untracked in this repo. This is the real,
authoritative game content — 211 tiles across 12 segments, 5 player stats
(cash/love/education/wealth/age), 48 placeholder roll tables — far more
complete than the hand-sketch-inspired board built earlier.
Adds shared/tileInventory.js and shared/rollTables.js: mechanical
`export default {...}` wrappers around the same JSON (kept as-is alongside
them as the raw source reference), so the content is importable both by the
server and by the browser fetching shared/*.js with zero bundler — the same
pattern every other file in shared/ already uses. Avoids relying on JSON
module import-attribute syntax, whose support is uncertain on node:20-alpine
(the Dockerfile's base image).
Also includes assets/colors.json and assets/tile_types.json (an apparently
separate, incomplete transcription of the hand sketch) — not wired into
anything yet, just brought into version control.
Appends integration-gap TODOs to GAME-REVIEW.md: 85 inline_table tiles have
a die size but no table content anywhere in the parsed files; payday/
cash_bonus amounts are undefined everywhere; multi-table roll_table_ref
tiles (2-3 tables at once, 22 of them) have no documented combination rule.
3558 lines
87 KiB
JavaScript
3558 lines
87 KiB
JavaScript
/**
|
|
* 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"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|