From 3c94e83b587ccef5c78b47730c28d5e3260f6363 Mon Sep 17 00:00:00 2001 From: Emik Date: Fri, 20 Feb 2026 05:05:47 +0100 Subject: [PATCH] Nerf tokens by making them more expensive --- manifest.json | 2 +- src/token.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 75a7948..5bc9ce9 100644 --- a/manifest.json +++ b/manifest.json @@ -17,5 +17,5 @@ "conflicts": [ "Jen" ], - "version": "1.5.27" + "version": "1.5.28" } \ No newline at end of file diff --git a/src/token.lua b/src/token.lua index 7e84f3d..53c9cef 100644 --- a/src/token.lua +++ b/src/token.lua @@ -104,7 +104,7 @@ for _, v in pairs({ return {vars = {}} end, pos = {x = v[3], y = v[4]}, - cost = v[5], + cost = v[5] * math.floor(math.log(v[5]) + 1) + 1, can_stack = true, can_divide = true, can_use = Jane.can_use,