diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b958606 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +.history \ No newline at end of file diff --git a/Release/com.f00d4tehg0dz.cookieclicker.streamDeckPlugin b/Release/com.f00d4tehg0dz.cookieclicker.streamDeckPlugin index 21db420..61e02ff 100644 Binary files a/Release/com.f00d4tehg0dz.cookieclicker.streamDeckPlugin and b/Release/com.f00d4tehg0dz.cookieclicker.streamDeckPlugin differ diff --git a/com.f00d4tehg0dz.cookieclicker.sdPlugin/js/app.js b/com.f00d4tehg0dz.cookieclicker.sdPlugin/js/app.js index b448569..79418b8 100644 --- a/com.f00d4tehg0dz.cookieclicker.sdPlugin/js/app.js +++ b/com.f00d4tehg0dz.cookieclicker.sdPlugin/js/app.js @@ -138,6 +138,15 @@ if ($SD) { }))); } + // 5x + if (num >= 250) { + num += 5; + updateTitleFn(JSON.parse(JSON.stringify({ + "number": num, + "title": "Mine", + }))); + } + // 10x if (num >= 500) { num += 10; @@ -147,6 +156,15 @@ if ($SD) { }))); } + // 20x + if (num >= 750) { + num += 20; + updateTitleFn(JSON.parse(JSON.stringify({ + "number": num, + "title": "Bank", + }))); + } + // 30x if (num >= 1000) { num += 30; @@ -156,12 +174,39 @@ if ($SD) { }))); } + // 40x + if (num >= 1400) { + num += 40; + updateTitleFn(JSON.parse(JSON.stringify({ + "number": num, + "title": "Plant", + }))); + } + + // 50x + if (num >= 2500) { + num += 50; + updateTitleFn(JSON.parse(JSON.stringify({ + "number": num, + "title": "Shipment", + }))); + } + + // 100x + if (num >= 10000) { + num += 100; + updateTitleFn(JSON.parse(JSON.stringify({ + "number": num, + "title": "Fractal", + }))); + } + // 1000x if (num >= 100000) { num += 1000; updateTitleFn(JSON.parse(JSON.stringify({ "number": num, - "title": "S. Plant", + "title": "Portal", }))); }