Skip to content
Snippets Groups Projects
Commit a27bb795 authored by dg's avatar dg
Browse files

Reduced Mages life rating

Increased Berserkers life rating


git-svn-id: http://svn.net-core.org/repos/t-engine4@1583 51575b47-30f0-44d4-a5cc-537603b46e54
parent 0676ec2d
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,8 @@ function _M:init()
local nodes = {}
for j, save in ipairs(m.savefiles) do
local mod_string = ("%s-%d.%d.%d"):format(m.short_name, save.module_version[1], save.module_version[2], save.module_version[3])
print(m.short_name)
local mod_string = ("%s-%d.%d.%d"):format(m.short_name, save.module_version and save.module_version[1] or -1, save.module_version and save.module_version[2] or -1, save.module_version and save.module_version[3] or -1)
local mod = list[mod_string]
if mod then
save.fct = function()
......
......@@ -92,6 +92,9 @@ newBirthDescriptor{
{type="potion", subtype="potion", name="potion of lesser mana", ego_chance=-1000},
},
},
copy_add = {
life_rating = -4,
},
}
newBirthDescriptor{
......@@ -153,6 +156,9 @@ newBirthDescriptor{
t.action(self, t)
end,
},
copy_add = {
life_rating = -1,
},
}
newBirthDescriptor{
......@@ -203,6 +209,9 @@ newBirthDescriptor{
{type="potion", subtype="potion", name="potion of lesser mana", ego_chance=-1000},
},
},
copy_add = {
life_rating = -4,
},
}
newBirthDescriptor{
......@@ -252,6 +261,9 @@ newBirthDescriptor{
{type="potion", subtype="potion", name="potion of lesser mana", ego_chance=-1000},
},
},
copy_add = {
life_rating = -4,
},
}
newBirthDescriptor{
......@@ -302,4 +314,7 @@ newBirthDescriptor{
{type="potion", subtype="potion", name="potion of lesser mana", ego_chance=-1000},
},
},
copy_add = {
life_rating = -4,
},
}
......@@ -36,9 +36,6 @@ newBirthDescriptor{
copy = {
max_life = 120,
},
copy_add = {
life_rating = 2,
},
}
newBirthDescriptor{
......@@ -80,6 +77,9 @@ newBirthDescriptor{
{type="armor", subtype="heavy", name="iron mail armour", autoreq=true}
},
},
copy_add = {
life_rating = 2,
},
}
newBirthDescriptor{
......@@ -121,6 +121,9 @@ newBirthDescriptor{
{type="armor", subtype="heavy", name="iron mail armour", autoreq=true},
},
},
copy_add = {
life_rating = 3,
},
}
newBirthDescriptor{
......@@ -168,4 +171,7 @@ newBirthDescriptor{
{type="potion", subtype="potion", name="potion of lesser mana"},
},
},
copy_add = {
life_rating = 2,
},
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment