mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2024-11-24 09:21:46 +00:00
Moved modInfo and added Mod Discord link
This commit is contained in:
parent
3cff3f1d50
commit
fc91b3696a
2 changed files with 18 additions and 45 deletions
49
index.html
49
index.html
|
@ -1,13 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<head>
|
||||
<script>
|
||||
const modInfo = {
|
||||
name: "The Modding Tree",
|
||||
id: "modbase",
|
||||
pointsName: "points",
|
||||
offlineLimit: 1 // In hours
|
||||
}
|
||||
</script>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.12"></script>
|
||||
|
@ -53,39 +46,6 @@
|
|||
<li>Created a tutorial for getting started with TMT and Github.</li>
|
||||
<li>Branches can be defined without a color id. But they can also use hex values for color ids!</li>
|
||||
<li>Page title is now automatically taken from mod name.</li>
|
||||
|
||||
</ul>
|
||||
<h3>v1.3.4</h3>
|
||||
<ul>
|
||||
<li>Added "midsection" feature to add things to a tab's layout while still keeping the standard layout.</li>
|
||||
<li>Fix for being able to buy more buyables than you should.</li>
|
||||
</ul><br>
|
||||
<h3>v1.3.3</h3>
|
||||
<ul>
|
||||
<li>Fix for the "order of operations" issue in temp.</li>
|
||||
</ul><br>
|
||||
<h3>v1.3.1</h3>
|
||||
<ul>
|
||||
<li>Added custom CSS and tooltips for Layer Nodes.</li>
|
||||
<li>Added custom CSS for upgrades, buyables, milestones, and challenges, both individually and layer-wide.</li>
|
||||
<li>You can now use HTML in most display text!</li>
|
||||
<li>You can now make milestones unlockable and not display immediately.</li>
|
||||
<li>Fixed importing saves, and issue with upgrades not appearing, and probably more.</li>
|
||||
<li>Optional "name" layer feature, used in confirmation messages.</li>
|
||||
<li></li>
|
||||
</ul><br>
|
||||
<h3>v1.3: Tabception... ception!</h3>
|
||||
<ul>
|
||||
<li>Added subtabs! And also a Micro-tab component to let you make smaller subtab-esque areas anywhere.</li>
|
||||
<li>Added a "custom" prestige formula type, and a number of features to support it.</li>
|
||||
<li>Added points/sec display (can be disabled, automatically disabled if getPointGen is 0).</li>
|
||||
<li>Added h-line, v-line and image-display components, plus components for individual upgrades, challenges, and milestones.</li>
|
||||
<li>Added upgEffect, buyableEffect, and challEffect functions.</li>
|
||||
<li>Added "hide completed challenges" setting.</li>
|
||||
<li>Moved old changelogs to a separate place.</li>
|
||||
<li>Fixed hasMilestone and incr_order.</li>
|
||||
<li>Static layers now show the currency amount needed for the next one if you can buy max.</li>
|
||||
<li></li>
|
||||
</ul><br>
|
||||
<a href="https://github.com/Acamaeda/The-Modding-Tree/blob/master/changelog.md" target="_blank" class="link" >Full history</a><br>
|
||||
</div>
|
||||
|
@ -96,15 +56,16 @@
|
|||
<br>
|
||||
<h3>{{VERSION.withName}}</h3>
|
||||
<br>
|
||||
The Modding Tree by Acamaeda
|
||||
The Modding Tree {{VERSION.tmtNum}} by Acamaeda
|
||||
<br>
|
||||
The Prestige Tree made by Jacorb and Aarex
|
||||
<br>
|
||||
Original idea by papyrus (on discord)
|
||||
<br><br>
|
||||
<div class="link" onclick="showTab('changelog')">Changelog</div><br>
|
||||
<a class="link" href="https://discord.gg/F3xveHV" target="_blank">The Modding Tree Discord</a><br>
|
||||
<a class="link" href="http://discord.gg/wwQfgPa" target="_blank">Main Prestige Tree server</a><br>
|
||||
<span v-if="modInfo.discordLink"><a class="link" v-bind:href="modInfo.discordLink" target="_blank">{{modInfo.discordName}}</a><br></span>
|
||||
<a class="link" href="https://discord.gg/F3xveHV" target="_blank" v-bind:style="modInfo.discordLink? {'font-size': '16px'} : {}">The Modding Tree Discord</a><br>
|
||||
<a class="link" href="http://discord.gg/wwQfgPa" target="_blank" v-bind:style="{'font-size': '16px'}">Main Prestige Tree server</a><br>
|
||||
<br>
|
||||
Note by Jacorb: If anyone wishes to make a mod of this game, that is perfectly fine with me, just make sure to name it something different (ex: Prestige Tree NG+) and to let me know on <a href="https://discord.gg/wwQfgPa" target="_blank">my discord</a>.
|
||||
<br><br>
|
||||
|
|
14
js/game.js
14
js/game.js
|
@ -3,9 +3,21 @@ var needCanvasUpdate = true;
|
|||
var NaNalert = false;
|
||||
var gameEnded = false;
|
||||
|
||||
|
||||
let modInfo = {
|
||||
name: "The Modding Tree",
|
||||
id: "modbase",
|
||||
pointsName: "points",
|
||||
discordName: "",
|
||||
discordLink: "",
|
||||
offlineLimit: 1 // In hours
|
||||
}
|
||||
|
||||
let VERSION = {
|
||||
num: "1.3.5 maybe",
|
||||
name: "Tabception... ception!"
|
||||
name: "Tabception... ception!",
|
||||
tmtNum: "1.3.5 maybe",
|
||||
tmtName: "Tabception... ception!"
|
||||
}
|
||||
|
||||
// Determines if it should show points/sec
|
||||
|
|
Loading…
Reference in a new issue