Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions milestones-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,20 @@ const MILESTONES = [
darkColor: "#33691e",
reference: "https://www.ipcc.ch/report/ar6/syr/",
},
{
id: "human_extinction",
name: "Human Extinction Horizon",
icon: "💀",
tokens: 77000000000000000,
shortDesc: "77 Quadrillion Tokens",
description: "Climate tipping points cascade simultaneously — the window for human survival closes",
consequence: "By 77 quadrillion tokens, multiple simultaneous tipping points have been crossed: the West Antarctic Ice Sheet enters irreversible collapse, the Amazon transitions to savanna, and Arctic summer sea ice disappears permanently. These feedbacks amplify each other. Global temperature is locked in at +3°C — a level incompatible with large-scale organised human society. Food systems fail. Mass displacement begins. Modern civilisation loses its ability to function.",
followingEvent: "🌡️ The last generation to know a stable climate is alive today. Their children inherit a planet in permanent crisis.",
color: "#1a0000",
darkColor: "#0d0000",
reference: "https://www.science.org/doi/10.1126/science.abn7950",
extinctionMarker: true,
},
{
id: "grid_breaking_point",
name: "Grid Infrastructure Breaking Point",
Expand Down
20 changes: 20 additions & 0 deletions milestones.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,26 @@ milestones:
darkColor: '#33691e'
reference: 'https://www.ipcc.ch/report/ar6/syr/'

- id: human_extinction
name: Human Extinction Horizon
icon: "\U0001F480"
tokens: 77000000000000000
shortDesc: 77 Quadrillion Tokens
extinctionMarker: true
description: "Climate tipping points cascade simultaneously — the window for human survival closes"
consequence: >-
By 77 quadrillion tokens, multiple simultaneous tipping points have
been crossed: the West Antarctic Ice Sheet enters irreversible collapse,
the Amazon transitions to savanna, and Arctic summer sea ice disappears
permanently. These feedbacks amplify each other. Global temperature is
locked in at +3°C — a level incompatible with large-scale organised
human society. Food systems fail. Mass displacement begins. Modern
civilisation loses its ability to function.
followingEvent: "\U0001F321️ The last generation to know a stable climate is alive today. Their children inherit a planet in permanent crisis."
color: '#1a0000'
darkColor: '#0d0000'
reference: 'https://www.science.org/doi/10.1126/science.abn7950'

- id: grid_breaking_point
name: Grid Infrastructure Breaking Point
icon: "\U0001F50B"
Expand Down
4 changes: 3 additions & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,9 @@
}

// ---- Life Blocks ----------------------------------------
const LB_LAST_MILESTONE = MILESTONES[MILESTONES.length - 1];
// Use the milestone tagged extinctionMarker:true as the life-blocks countdown target.
// Falls back to the last milestone only if no marker is found (defensive guard).
const LB_LAST_MILESTONE = MILESTONES.find(m => m.extinctionMarker) || MILESTONES[MILESTONES.length - 1];

// Drill-down state
const lb = {
Expand Down
3 changes: 3 additions & 0 deletions scripts/build-milestones.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ function renderMilestone(m) {
if (m.reference) {
lines.push(` reference: ${jsString(m.reference)},`);
}
if (m.extinctionMarker) {
lines.push(` extinctionMarker: true,`);
}
lines.push(' }');
return lines.join('\n');
}
Expand Down
Loading