Page 1 of 1

[SVN] New ego name bug

Posted: Thu Oct 18, 2012 1:44 am
by Un67
I noticed that the two new egos, "dreamer's" and "dispeller's" are listed as suffixes, not prefixes. The code in question in egos\robes.lua:

Code: Select all

newEntity{
	power_source = {psionic=true},
	name = "dreamer's ", suffix=true, instant_resolve=true,
	keywords = {dreamer=true},
	level_range = {40, 50},
	greater_ego = 1,
	rarity = 30,
	cost = 60,
	wielder = {
		combat_physresist = resolvers.mbonus_material(10, 10),
		combat_spellresist = resolvers.mbonus_material(10, 10),
		combat_mentalresist = resolvers.mbonus_material(20, 20),
	},
}
newEntity{
	power_source = {arcane=true},
	name = "dispeller's ", suffix=true, instant_resolve=true,
	keywords = {dispeller=true},
	level_range = {40, 50},
	greater_ego = 1,
	rarity = 30,
	cost = 60,
	wielder = {
		combat_physresist = resolvers.mbonus_material(10, 10),
		combat_mentalresist = resolvers.mbonus_material(10, 10),
		combat_spellresist = resolvers.mbonus_material(20, 20),

Re: [SVN] New ego name bug

Posted: Thu Oct 18, 2012 3:26 am
by peaceoutside
There's also some suffixes that're marked as prefixes.

I'll post them here if I come across them again.