munificent / hauberk

A web-based roguelike written in Dart.
http://munificent.github.io/hauberk/
Other
2.01k stars 202 forks source link

Add gems and rocks #7

Closed jwaltz closed 10 years ago

jwaltz commented 10 years ago

This is my first attempt at doing some fleshing-out of content as recommended. I tried to find if I needed to do anything to make the new categories (treasure/gem and treasure/rock) work but didn't come across anything. The levels are somewhat arbitrary but I tried to use my best RP judgment. I couldn't find Color.CYAN so I looked up the RGB value of cyan to see if I could add it myself. Google tells me it's rgb(0, 255, 255) which is already listed under Color.AQUA so I just went with that for Turquoise Stone. Also, I noticed Malachite Stone was commented as dark cyan but looked it up and I think it should be light green? (http://en.wikipedia.org/wiki/Malachite under Color on the right)

munificent commented 10 years ago

Awesome! We can tune the levels once the items actually do something useful.

I'm thinking they'll mainly be useful in recipes. Sort of like slotting gems in Diablo, I'm thinking these will be useful for turning a piece of equipment into a similar item but with some magical affix like an elemental brand.

But getting the items in is a good first step. Thanks!