1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-22 08:31:33 +00:00
The-Modding-Tree/js/v.js

46 lines
728 B
JavaScript
Raw Normal View History

2020-08-19 02:50:24 +00:00
var app;
function loadVue() {
app = new Vue({
el: "#app",
data: {
player,
2020-08-21 19:02:34 +00:00
tmp,
2020-09-01 00:39:33 +00:00
offTime,
2020-09-03 21:59:23 +00:00
Decimal,
2020-08-19 02:50:24 +00:00
format,
formatWhole,
2020-08-24 02:01:14 +00:00
formatTime,
2020-08-19 02:50:24 +00:00
layerUnl,
getLayerEffDesc,
doReset,
buyUpg,
getEnhancerCost,
getExtCapsuleCost,
getSpace,
2020-08-19 19:53:14 +00:00
getSpaceBuildingsUnl,
2020-08-19 02:50:24 +00:00
getSpaceBuildingCost,
getSpaceBuildingEffDesc,
buyBuilding,
2020-08-26 01:45:22 +00:00
getQuirkLayerCost,
buyQuirkLayer,
2020-08-26 16:26:46 +00:00
startHindrance,
HCActive,
2020-08-27 19:12:20 +00:00
milestoneShown,
2020-08-29 18:00:32 +00:00
destroyBuilding,
2020-09-03 21:59:23 +00:00
getSpellDesc,
activateSpell,
spellActive,
2020-09-08 00:11:57 +00:00
updateToCast,
2020-08-19 02:50:24 +00:00
LAYERS,
LAYER_RES,
LAYER_TYPE,
LAYER_UPGS,
LAYER_EFFS,
2020-08-25 22:42:43 +00:00
LAYER_AMT_NAMES,
2020-08-26 16:26:46 +00:00
LAYER_RES_CEIL,
2020-09-03 21:59:23 +00:00
H_CHALLS,
SPELL_NAMES
2020-08-19 02:50:24 +00:00
},
})
}