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

fix money drops

git-svn-id: http://svn.net-core.org/repos/t-engine4@383 51575b47-30f0-44d4-a5cc-537603b46e54
parent 227373c9
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ newEntity{
combat_armor = 1, combat_def = 1,
never_move = 1,
drops = resolvers.drops{chance=60, nb=1, {{type="money"}} },
drops = resolvers.drops{chance=60, nb=1, {type="money"} },
resists = { [DamageType.LIGHT] = -50 },
}
......
......@@ -9,7 +9,7 @@ newEntity{
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 },
resolvers.drops{chance=20, nb=1, {} },
resolvers.drops{chance=40, nb=1, {{type="money"}} },
resolvers.drops{chance=40, nb=1, {type="money"} },
max_stamina = 100,
life_rating = 13,
......
......@@ -15,7 +15,7 @@ newEntity{
combat_armor = 1, combat_def = 1,
resolvers.drops{chance=90, nb=1, {} },
resolvers.drops{chance=60, nb=1, {{type="money"}} },
resolvers.drops{chance=60, nb=1, {type="money"} },
resists = { [DamageType.LIGHT] = -50 },
}
......
......@@ -12,7 +12,7 @@ newEntity{
max_mana = 85,
resists = { [DamageType.FIRE] = 30, [DamageType.COLD] = -30 },
drops = resolvers.drops{chance=20, nb=1, {{type="potion"},{type="scroll"}} },
drops = resolvers.drops{chance=20, nb=1, {type="potion"}, {type="scroll"} },
autolevel = "warrior",
ai = "dumb_talented_simple", ai_state = { talent_in=3, },
......
......@@ -9,8 +9,8 @@ newEntity{
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 },
equipment = resolvers.equip{ {type="weapon", subtype="greatsword"} },
-- resolvers.drops{chance=20, nb=1, {} },
resolvers.drops{chance=100, nb=5, {{type="money"}} },
resolvers.drops{chance=20, nb=1, {} },
resolvers.drops{chance=60, nb=1, {type="money"} },
autolevel = "warrior",
ai = "dumb_talented_simple", ai_state = { talent_in=4, },
......
......@@ -10,7 +10,7 @@ newEntity{
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 },
drops = resolvers.drops{chance=20, nb=1, {} },
equipment = resolvers.equip{ {type="weapon", subtype="dagger"}, {type="weapon", subtype="dagger"}, {type="armor", subtype="light"} },
resolvers.drops{chance=100, nb=2, {{type="money"}} },
resolvers.drops{chance=100, nb=2, {type="money"} },
max_stamina = 100,
......
......@@ -9,7 +9,7 @@ newEntity{
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 },
resolvers.drops{chance=20, nb=1, {} },
resolvers.drops{chance=60, nb=1, {{type="money"}} },
resolvers.drops{chance=60, nb=1, {type="money"} },
life_rating = 15,
life_regen = 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