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

Reworked the Gates of Morning

git-svn-id: http://svn.net-core.org/repos/t-engine4@3096 51575b47-30f0-44d4-a5cc-537603b46e54
parent da74d324
No related branches found
No related tags found
No related merge requests found
Showing
with 61 additions and 3 deletions
......@@ -52,7 +52,8 @@ They roam the lands freely, ever assaulting us.
{"Thank you, my lady.", action=function(npc, player)
world:gainAchievement("STRANGE_NEW_WORLD", game.player)
player:setQuestStatus("strange-new-world", engine.Quest.DONE)
npc:move(46, 27, true)
local spot = game.level:pickSpot{type="npc", subtype="aeryn-main"}
npc:move(spot.x, spot.y, true)
npc.can_talk = "gates-of-morning-main"
end},
}
......
......@@ -1301,7 +1301,7 @@ newEntity{ base = "BASE_CLOTH_ARMOR",
desc = [[A plain elven-silk robe. It would be unremarkable if not for the sheer power it radiates.]],
level_range = {30, 40},
rarity = 290,
cost = 350,
cost = 550,
material_level = 5,
wielder = {
lite = 1,
......@@ -1318,6 +1318,28 @@ newEntity{ base = "BASE_CLOTH_ARMOR",
},
}
newEntity{ base = "BASE_CLOTH_ARMOR",
power_source = {arcane=true},
unique = true,
name = "Temporal Augmentation Robe - Designed In-Style", color = colors.BLACK,
unided_name = "stlylish robe with a scarf",
desc = [[Designed by a slightly quirky paradox mage, this robe always appears to be stylish in any time the user finds him, her, or itself in. Crafted to aid paradox mages through their adventures, this robe is of great help to those that understand what a wibbly-wobbly, timey-wimey mess time actually is. Curiously, as a result of a particularly prolonged battle involving its fourth wearer, the robe appends a very long, multi-coloured scarf to its present wearers.]],
level_range = {30, 40},
rarity = 310,
cost = 540,
material_level = 5,
wielder = {
inc_damage = {[DamageType.TEMPORAL]=20},
combat_def = 9,
combat_armor = 3,
inc_stats = { [Stats.STAT_MAG] = 5, [Stats.STAT_WIL] = 3, },
resists={[DamageType.TEMPORAL] = 20},
on_melee_hit={[DamageType.TEMPORAL] = 10},
},
max_power = 100, power_regen = 1,
use_talent = { id = Talents.T_DAMAGE_SMEARING, level = 3, power = 100 },
}
newEntity{ base = "BASE_GEM",
power_source = {arcane=true},
unique = true,
......
......@@ -99,6 +99,20 @@ newEntity{
},
}
newEntity{
define_as = "ARCHER_WEAPON",
name = "archery",
display = '3', color=colors.UMBER,
store = {
purse = 25,
empty_before_restock = false,
filters = {
{type="weapon", subtype="longbow", id=true, tome_drops="store"},
{type="weapon", subtype="sling", id=true, tome_drops="store"},
},
},
}
newEntity{
define_as = "KNIFE_WEAPON",
name = "knife smith",
......@@ -245,9 +259,12 @@ newEntity{
name = "library",
display = '*', color=colors.LIGHT_RED,
store = {
purse = 5,
purse = 10,
empty_before_restock = false,
filters = {
{type="scroll", subtype="rune", id=true},
},
fixed = {
{id=true, defined="FOUNDATION_NOTE1"},
{id=true, defined="FOUNDATION_NOTE2"},
{id=true, defined="FOUNDATION_NOTE3"},
......@@ -378,3 +395,21 @@ newEntity{
end,
},
}
newEntity{
define_as = "ZIGUR_ARCHER_WEAPON",
name = "archery",
display = '3', color=colors.UMBER,
store = {
purse = 25,
empty_before_restock = false,
filters = {
{type="weapon", subtype="sling", id=true, tome_drops="store"},
{type="weapon", subtype="longbow", id=true, tome_drops="store"},
},
post_filter = function(e)
if e.power_source and e.power_source.arcane then return false end
return true
end,
},
}
game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain1.png

5.04 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain1i.png

9.56 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain2.png

7.18 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain3.png

4.98 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain3i.png

9.75 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain4.png

7.5 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain5.png

9.21 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain5_1.png

11.3 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain5_2.png

11.7 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain5_3.png

10.5 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain5_4.png

11.2 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain5_5.png

10.9 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain5_6.png

10.5 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain6.png

6.9 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain7.png

4.47 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain7i.png

9.07 KiB

game/modules/tome/data/gfx/shockbolt/terrain/golden_mountain8.png

8.21 KiB

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