Brawler Preview w/diff (also need help with class.object)

All development conversation and discussion takes place here

Moderator: Moderator

Post Reply
Message
Author
edge2054
Retired Ninja
Posts: 3756
Joined: Fri May 28, 2010 4:38 pm

Brawler Preview w/diff (also need help with class.object)

#1 Post by edge2054 »

I hope that diff works, had to make it a txt file because the forum doesn't like the diff extension. Note that's a b21 diff (stdout has been fickle on the SVN lately so I'm stuck developing on a release copy).

Anyway here's what I'm currently in need of help with. I'm trying to get the object tooltip to read the self.combat bonuses I've added to gloves and gauntlets.

Here's an example of the relevant code I'm trying to get class.object to recognize.

Code: Select all

newEntity{ base = "BASE_GLOVES",
	name = "drakeskin leather gloves",
	level_range = {40, 50},
	cost = 10,
	material_level = 5,

	wielder = {
		combat_armor = 3,
		combat = {
			dam = resolvers.rngavg(23, 28),
			apr = 3,
			physcrit = 10,
			physspeed = -0.4,
			dammod = {dex=0.4, str=-0.6, cun=0.4 },
			damrange = 1.2,
		},
	},
}
That wielder = { combat = {blah, blah blah}}, basically needs to show up when you mouse over the item so players know what's there. Any thoughts on how to do that? I tried a couple of different things but didn't get very far with it.

Also the class isn't finished ;) The diff is just a preview. Still a lot of balancing needs to go into it and I need to rearrange the pugilism tree a bit to account for some other changes I want to make. Also need to finish the martial-arts (advanced) tree and figure out what I'm going to do with the other advanced tree if I'm going to do one. Still though any feedback would be appreciated.
Attachments
brawler.txt
(116.72 KiB) Downloaded 174 times

edge2054
Retired Ninja
Posts: 3756
Joined: Fri May 28, 2010 4:38 pm

Re: Brawler Preview w/diff (also need help with class.object

#2 Post by edge2054 »

Here's an updated diff. Class is pretty much finished for now though eventually I'd like another advanced talent tree I haven't thought of anything yet.

Any feedback would be welcome :)

(gloves still don't display damage :( )
Attachments
brawler.txt
(116.74 KiB) Downloaded 189 times

Post Reply