summaryrefslogtreecommitdiff
path: root/2026/games_submissions/the0x539/difficulty.js
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-08-26 23:47:59 -0400
committerLLLL Colonq <llll@colonq>2026-08-26 23:47:59 -0400
commit0d2d8cd897e94bd94e0b3ae7c6ce9aa580a44a0a (patch)
treee9039d1c3aedca515d6cb499451d4b73aca4f5fd /2026/games_submissions/the0x539/difficulty.js
parent242943e5b023ce40eb3be826c418a478d4672f78 (diff)
Add a_tension_span
Diffstat (limited to '2026/games_submissions/the0x539/difficulty.js')
-rw-r--r--2026/games_submissions/the0x539/difficulty.js100
1 files changed, 100 insertions, 0 deletions
diff --git a/2026/games_submissions/the0x539/difficulty.js b/2026/games_submissions/the0x539/difficulty.js
new file mode 100644
index 0000000..87a86b9
--- /dev/null
+++ b/2026/games_submissions/the0x539/difficulty.js
@@ -0,0 +1,100 @@
+export const scenarios = [
+ {
+ level: 0,
+ items: {
+ log: 2,
+ },
+ goal: ['chest'],
+ time: _ => 10,
+ },
+ {
+ level: 5,
+ items: {
+ plank: 7,
+ cobble: 6,
+ dust: 8,
+ ingot: 4,
+ },
+ goal: ['piston'],
+ time: d => 15 - d,
+ },
+ {
+ level: 10,
+ items: {
+ log: 2,
+ cobble: 4,
+ dust: 2,
+ ingot: 1,
+ },
+ goal: ['piston'],
+ time: d => 15 - d,
+ },
+ {
+ level: 13,
+ items: {
+ log: 8,
+ },
+ goal: ['pickaxe'],
+ time: d => 15 - d,
+ },
+ {
+ level: 18,
+ items: {
+ ingot: 8,
+ plank: 8,
+ },
+ goal: ['hopper'],
+ time: d => 20 - d,
+ },
+ {
+ level: 21,
+ items: {
+ ingot: 12,
+ log: 3,
+ },
+ goal: ['hopper'],
+ time: d => 20 - d,
+ },
+ {
+ level: 25,
+ items: {
+ ingot: 24,
+ },
+ goal: ['helmet', 'chestplate', 'leggings', 'boots'],
+ time: d => 18 - d,
+ },
+ {
+ level: 30,
+ items: {
+ ingot: 28,
+ log: 1,
+ string: 3,
+ },
+ goal: ['helmet', 'chestplate', 'leggings', 'boots', 'bow'],
+ time: d => 30 - d,
+ },
+ {
+ level: 35,
+ items: {
+ ingot: 24,
+ log: 1,
+ string: 3,
+ gold: 64,
+ dust: 17,
+ },
+ goal: ['helmet', 'chestplate', 'leggings', 'boots', 'bow'],
+ time: _ => 15,
+ },
+ {
+ level: 40,
+ items: {
+ ingot: 24,
+ log: 1,
+ string: 3,
+ gold: 63,
+ dust: 15,
+ },
+ goal: ['helmet', 'chestplate', 'leggings', 'boots', 'bow'],
+ time: _ => 15,
+ },
+];