Feature - Implemented Bounty information -- Add proxy record fields for items

Bale

Minion
Bounty item support could stand to be refactored. It's all tied into locations. We have the data to go from a location to the bounty item and count, but no efficient way to do the reverse. I would suggest the following fields:

item.bounty = location
location.bounty = item
location.bounty_count = integer

Make a feature request.

Feature requested!~
 

zarqon

Well-known member
Include bounty data in proxy records

Bounty item support could stand to be refactored. It's all tied into locations. We have the data to go from a location to the bounty item and count, but no efficient way to do the reverse. I would suggest the following fields:

item.bounty = location
location.bounty = item
location.bounty_count = integer

Make a feature request.

I would suggest the above suggestion! :)
 

Bale

Minion
slyz, now that you have some proxy field experience, what do you think about adding these three fields?
 

slyz

Developer
r9881

Code:
> ashq $item[hobo gristle ].bounty.print()

Sleazy Back Alley

> ashq $item[hobo gristle ].bounty_count.print()

8

> ashq $location[ sleazy back alley ].bounty.print()

hobo gristle

> ashq $location[ sleazy back alley ].bounty.bounty_count.print()

8
 
Top