From 24f381a9d4fb307fec98f55c6a28e85796a8b130 Mon Sep 17 00:00:00 2001 From: Helix Date: Sun, 13 Jun 2021 16:02:16 +0200 Subject: [PATCH] add sample data and d3.js boilerplate --- data/cryo-pump.json | 13 ++++++ data/cryogenic-chamber.json | 13 ++++++ data/hot-ice.json | 13 ++++++ data/living-glass.json | 13 ++++++ data/thermic-condensate.json | 13 ++++++ index.html | 79 ++++++++++++++++++++++++++++++++++++ 6 files changed, 144 insertions(+) create mode 100644 data/cryo-pump.json create mode 100644 data/cryogenic-chamber.json create mode 100644 data/hot-ice.json create mode 100644 data/living-glass.json create mode 100644 data/thermic-condensate.json create mode 100644 index.html diff --git a/data/cryo-pump.json b/data/cryo-pump.json new file mode 100644 index 0000000..3490c43 --- /dev/null +++ b/data/cryo-pump.json @@ -0,0 +1,13 @@ +{ + "itemName": "Cryo-Pump", + "components": [ + { + "id": "hot-ice", + "amount": 1 + }, + { + "id": "thermic-condensate", + "amount": 1 + } + ] +} \ No newline at end of file diff --git a/data/cryogenic-chamber.json b/data/cryogenic-chamber.json new file mode 100644 index 0000000..21ca6c7 --- /dev/null +++ b/data/cryogenic-chamber.json @@ -0,0 +1,13 @@ +{ + "itemName": "Cryogenic Chamber", + "components": [ + { + "id": "living-glass", + "amount": 1 + }, + { + "id": "cryo-pump", + "amount": 1 + } + ] +} \ No newline at end of file diff --git a/data/hot-ice.json b/data/hot-ice.json new file mode 100644 index 0000000..a55efca --- /dev/null +++ b/data/hot-ice.json @@ -0,0 +1,13 @@ +{ + "itemName": "Hot Ice", + "components": [ + { + "id": "enriched-carbon", + "amount": 1 + }, + { + "id": "nitrogen-salt", + "amount": 1 + } + ] +} \ No newline at end of file diff --git a/data/living-glass.json b/data/living-glass.json new file mode 100644 index 0000000..fbce4d2 --- /dev/null +++ b/data/living-glass.json @@ -0,0 +1,13 @@ +{ + "itemName": "Living Glass", + "components": [ + { + "id": "lubricant", + "amount": 1 + }, + { + "id": "glass", + "amount": 5 + } + ] +} \ No newline at end of file diff --git a/data/thermic-condensate.json b/data/thermic-condensate.json new file mode 100644 index 0000000..1cdd7ec --- /dev/null +++ b/data/thermic-condensate.json @@ -0,0 +1,13 @@ +{ + "itemName": "Thermic Condensate", + "components": [ + { + "id": "sulphurine", + "amount": 250 + }, + { + "id": "condensed-carbon", + "amount": 50 + } + ] +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..efc8b4d --- /dev/null +++ b/index.html @@ -0,0 +1,79 @@ + + + + + + + + +

Cryogenic Chamber

+
+ + + + + \ No newline at end of file