crazedsanity / cs-battletrack

PHP-Based web application for tracking data in traditional paper-and-pencil role playing games.
http://www.crazedsanity.com/projects/cs-battletrack
Other
1 stars 1 forks source link

Storing Gear Within Gear #40

Open crazedsanity opened 10 years ago

crazedsanity commented 10 years ago

When creating gear, there's a field for "location". Presently, this is just a text field. It would be helpful to be able to store items within other items, for instance when a character stores a bunch of items in a backpack or a bag of holding. It would be nice to represent this on the sheet (and the database) as such.

The container would not have a location, whereas the item within the container would: by linking an item to another item, this might be possible... though there would have to be considerations made for things like a bag of holding, where items within it have no weight.

Another possible consideration would be when a container that has items in it is stored in another container. For instance, a backpack (with items) getting put into a bag of holding. The backpack would inherit the weight of its contents including it's own weight, whereas the bag of holding would only show it's own weight.