From 02921d0148e26205452d15cc2866c1c11fe5b31b Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Fri, 4 Mar 2011 20:38:36 +0100 Subject: [PATCH 1/2] removed all unused items --- res/herbs.xml | 89 +++++++++++++++++++++++++++++++++++++ res/luxuries.xml | 40 +++++++++++++++++ res/races/zombie.xml | 12 +++++ scripts/example/modules.lua | 8 ++++ 4 files changed, 149 insertions(+) create mode 100644 res/herbs.xml create mode 100644 res/luxuries.xml create mode 100644 res/races/zombie.xml diff --git a/res/herbs.xml b/res/herbs.xml new file mode 100644 index 000000000..69c67fe5c --- /dev/null +++ b/res/herbs.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/luxuries.xml b/res/luxuries.xml new file mode 100644 index 000000000..83c187c6e --- /dev/null +++ b/res/luxuries.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/races/zombie.xml b/res/races/zombie.xml new file mode 100644 index 000000000..5d76a8557 --- /dev/null +++ b/res/races/zombie.xml @@ -0,0 +1,12 @@ + + + + + + diff --git a/scripts/example/modules.lua b/scripts/example/modules.lua index 9d62abb01..8ded0b7b8 100644 --- a/scripts/example/modules.lua +++ b/scripts/example/modules.lua @@ -5,3 +5,11 @@ tests = { srcpath .. '/shared/scripts/tests/common.lua', srcpath .. '/shared/scripts/tests/bson.lua', } + +-- variables used in testsuite +test = { +swordmakeskill = 3, -- weaponsmithing skill for swords +swordiron = 1, -- iron per sword +horsecapacity = 2000, -- carrying capacity of horses (minus weight) +cartcapacity = 10000 -- carrying capacity of carts (minus weight) +} \ No newline at end of file From a1af32895022c1afc3046297f8218007c8679573 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 6 Mar 2011 11:27:37 +0100 Subject: [PATCH 2/2] added Atlantis ship types --- scripts/example/modules.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/example/modules.lua b/scripts/example/modules.lua index 8ded0b7b8..f44352ebf 100644 --- a/scripts/example/modules.lua +++ b/scripts/example/modules.lua @@ -8,8 +8,9 @@ tests = { -- variables used in testsuite test = { -swordmakeskill = 3, -- weaponsmithing skill for swords -swordiron = 1, -- iron per sword -horsecapacity = 2000, -- carrying capacity of horses (minus weight) -cartcapacity = 10000 -- carrying capacity of carts (minus weight) +swordmakeskill = 3 -- weaponsmithing skill for swords +,swordiron = 1 -- iron per sword +,horsecapacity = 2000 -- carrying capacity of horses (minus weight) +,cartcapacity = 10000 -- carrying capacity of carts (minus weight) +,shipname = "boat" -- some ship name (any name) } \ No newline at end of file