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

Added a copy_add field to player descriptors

Class life rating now adds to race life rating instead of overriding it


git-svn-id: http://svn.net-core.org/repos/t-engine4@1572 51575b47-30f0-44d4-a5cc-537603b46e54
parent ad66928c
No related branches found
No related tags found
No related merge requests found
......@@ -274,6 +274,16 @@ function _M:apply()
-- Copy normal data
table.merge(self.actor, copy, true)
end
if d.copy_add then
local copy = table.clone(d.copy_add, true)
-- Append array part
while #copy > 0 do
local f = table.remove(copy)
table.insert(self.actor, f)
end
-- Copy normal data
table.mergeAdd(self.actor, copy, true)
end
-- Change stats
if d.stats then
for stat, inc in pairs(d.stats) do
......
......@@ -68,10 +68,12 @@ newBirthDescriptor{
},
copy = {
max_life = 110,
life_rating = 12,
resolvers.equip{ id=true,
{type="weapon", subtype="battleaxe", name="iron battleaxe", autoreq=true},
{type="armor", subtype="light", name="rough leather armour", autoreq=true}
},
},
copy_add = {
life_rating = 2,
},
}
......@@ -34,7 +34,6 @@ newBirthDescriptor{
},
copy = {
max_life = 110,
life_rating = 10,
},
}
......
......@@ -33,7 +33,6 @@ newBirthDescriptor{
},
copy = {
max_life = 120,
life_rating = 12,
},
}
......@@ -73,6 +72,9 @@ newBirthDescriptor{
{type="armor", subtype="heavy", name="iron mail armour", autoreq=true}
},
},
copy_add = {
life_rating = 2,
},
}
newBirthDescriptor{
......
......@@ -72,13 +72,15 @@ newBirthDescriptor{
},
copy = {
max_life = 110,
life_rating = 12,
resolvers.equip{ id=true,
{type="weapon", subtype="mace", name="iron mace", autoreq=true},
{type="armor", subtype="shield", name="iron shield", autoreq=true},
{type="armor", subtype="heavy", name="iron mail armour", autoreq=true},
},
},
copy_add = {
life_rating = 2,
},
}
newBirthDescriptor{
......
......@@ -83,7 +83,6 @@ newBirthDescriptor{
-- All mages are of angolwen faction
faction = "angolwen",
max_life = 90,
life_rating = 10,
resolvers.equip{ id=true,
{type="weapon", subtype="staff", name="elm staff", autoreq=true},
{type="armor", subtype="cloth", name="linen robe", autoreq=true},
......@@ -129,7 +128,6 @@ newBirthDescriptor{
},
copy = {
max_life = 90,
life_rating = 10,
resolvers.equip{ id=true,
{type="weapon", subtype="staff", name="elm staff", autoreq=true},
{type="armor", subtype="cloth", name="linen robe", autoreq=true}
......@@ -196,7 +194,6 @@ newBirthDescriptor{
-- All mages are of angolwen faction
faction = "angolwen",
max_life = 90,
life_rating = 10,
resolvers.equip{ id=true,
{type="weapon", subtype="staff", name="elm staff", autoreq=true},
{type="armor", subtype="cloth", name="linen robe", autoreq=true},
......@@ -246,7 +243,6 @@ newBirthDescriptor{
-- All mages are of angolwen faction
faction = "angolwen",
max_life = 90,
life_rating = 10,
resolvers.equip{ id=true,
{type="weapon", subtype="staff", name="elm staff", autoreq=true},
{type="armor", subtype="cloth", name="linen robe", autoreq=true},
......@@ -297,7 +293,6 @@ newBirthDescriptor{
-- All mages are of angolwen faction
faction = "angolwen",
max_life = 90,
life_rating = 10,
resolvers.equip{ id=true,
{type="weapon", subtype="staff", name="elm staff", autoreq=true},
{type="armor", subtype="cloth", name="linen robe", autoreq=true},
......
......@@ -34,7 +34,6 @@ newBirthDescriptor{
},
copy = {
max_life = 100,
life_rating = 10,
equipment = resolvers.equip{ id=true,
{type="weapon", subtype="dagger", name="iron dagger", autoreq=true},
{type="weapon", subtype="dagger", name="iron dagger", autoreq=true},
......
......@@ -33,11 +33,13 @@ newBirthDescriptor{
},
copy = {
max_life = 100,
life_rating = 12,
mana_regen = 0.2,
life_regen = 1,
mana_rating = 7,
},
copy_add = {
life_rating = 2,
},
}
newBirthDescriptor{
......
......@@ -35,7 +35,9 @@ newBirthDescriptor{
},
copy = {
max_life = 120,
life_rating = 12,
},
copy_add = {
life_rating = 2,
},
}
......@@ -157,7 +159,6 @@ newBirthDescriptor{
},
copy = {
max_life = 100,
life_rating = 9,
resolvers.equip{ id=true,
{type="weapon", subtype="greatsword", name="iron greatsword", autoreq=true},
{type="armor", subtype="light", name="rough leather armour", autoreq=true},
......
......@@ -68,7 +68,6 @@ newBirthDescriptor{
},
copy = {
max_life = 90,
life_rating = 10,
resolvers.equip{ id=true,
{type="weapon", subtype="staff", name="elm staff", autoreq=true},
{type="armor", subtype="light", name="rough leather armour", autoreq=true}
......@@ -109,10 +108,12 @@ newBirthDescriptor{
},
copy = {
max_life = 110,
life_rating = 12,
resolvers.equip{ id=true,
{type="weapon", subtype="battleaxe", name="iron battleaxe", autoreq=true},
{type="armor", subtype="light", name="rough leather armour", autoreq=true}
},
},
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