Pre-release 1.3.0

- Added new crafting system
- Added multiple passive tree UI
- Added stat differences for toggling/changing gems
This commit is contained in:
Openarl
2017-02-15 19:10:22 +10:00
parent 9c8551750d
commit 32f798482f
39 changed files with 1540 additions and 227 deletions

View File

@@ -120,6 +120,10 @@ SkillType = {
ColdSpell = 60, -- Used for Cospri's Malice
}
data.itemMods = { }
data.itemMods.Flask = LoadModule("Data/ModFlask")
data.itemMods.Jewel = LoadModule("Data/ModJewel")
data.gems = { }
local function makeGemMod(modName, modType, modVal, flags, keywordFlags, ...)
return {
@@ -258,7 +262,7 @@ local itemTypes = {
"ring",
"belt",
"jewel",
launch.enableFlasks and "flask" or nil,
"flask",
}
for _, type in pairs(itemTypes) do
LoadModule("Data/Bases/"..type, data.itemBases)