Author Topic: Brainstorming: Item lists.  (Read 23810 times)

mushroom patch

  • Rogueliker
  • ***
  • Posts: 554
  • Karma: +0/-0
    • View Profile
Re: Brainstorming: Item lists.
« Reply #15 on: June 28, 2014, 01:29:58 AM »
How about belts? The nice thing about belts is you can put slots on them for holding things you want to have ready for immediate use. A utility belt system allows you to have a large inventory without losing the strategic element of item management, plus it lets you avoid the typical use cases for macros.

Endorya

  • Rogueliker
  • ***
  • Posts: 513
  • Karma: +0/-0
  • The non-purist roguelike lover
    • View Profile
    • Email
Re: Brainstorming: Item lists.
« Reply #16 on: June 28, 2014, 02:23:41 PM »
This is from my own project. It is an outdated and incomplete list but it might help you out.
I advise you to create families so you can browse items in your game with filters, assuming you are including a large diversity of item types.

https://www.dropbox.com/s/o60bqj7ghdaa71m/Item%20List.jpg
« Last Edit: June 28, 2014, 02:26:06 PM by Endorya »
"You are never alone. Death is always near watching you."

Endorya

  • Rogueliker
  • ***
  • Posts: 513
  • Karma: +0/-0
  • The non-purist roguelike lover
    • View Profile
    • Email
Re: Brainstorming: Item lists.
« Reply #17 on: June 28, 2014, 08:20:09 PM »
I think a lot of game developers look at this particular thing the wrong way round: they first add tons of items and then start to think how to use them. Wrong. You first think how items are going to be used by monster or in the game world and then you add them, one by one. Better yet have a support for that particular type of item in the engine, considering most of the things that can happen.

Trust me, I've done this mistake in large scale.
I think Krice hits the jackpot here. Think of an item and simulate its usage in the game, think about all the variables it will use and how they will be used by the game's engine, this will also help you categorize the item itself. As Krice, I also made that same mistake. I once had a specific category and class for body parts, which later on I came to realize that it would work exactly as my ingredient type item; I was developing a pointless object structure that was already available through my ingredient type class.
« Last Edit: June 28, 2014, 10:47:18 PM by Endorya »
"You are never alone. Death is always near watching you."

mushroom patch

  • Rogueliker
  • ***
  • Posts: 554
  • Karma: +0/-0
    • View Profile
Re: Brainstorming: Item lists.
« Reply #18 on: June 30, 2014, 12:03:15 AM »
Yeah, that's why belts are awesome.

Pickledtezcat

  • Rogueliker
  • ***
  • Posts: 62
  • Karma: +0/-0
    • View Profile
    • Pickledtezcat Game Development Blog
Re: Brainstorming: Item lists.
« Reply #19 on: June 30, 2014, 12:52:54 PM »
This is from my own project. It is an outdated and incomplete list but it might help you out.
I advise you to create families so you can browse items in your game with filters, assuming you are including a large diversity of item types.

https://www.dropbox.com/s/o60bqj7ghdaa71m/Item%20List.jpg

Thanks, I think I have nearly all of those ones now.

I think it's always best to start out brain storming lists.

Things in a game are not real things, they are just signs of things.
If I find a skull in a game, it's not really a skull. It won't break if I drop it. My character won't be creeped out about touching it. It won't decompose. I can't get DNA from the teeth.
Actually it's more likely to be a key, or an ingredient or a junk item or a bonus item or even food. It could be any of these and any of these usages could easily use something other than a skull to represent themselves.

Some things lend themselves better to a particular use than others however. A sword is most often a weapon, a knife sometimes a weapon or sometimes a tool. A jewel is usually a treasure item, but may easily be a puzzle item, required to solve a particular puzzle. The semiotic relationship between signifier (visible in game object) and signified (the function of that object) is pretty loose in games. This is especially so in ASCII roguelikes where @ is a player and % could be an item and "G" could be a giant or a goblin or a gargoyle.

Sometimes there is a particular mechanical link that fixes how an item must be used. For example, the belt might need to be "worn" before you get any use out of it. A potion needs a certain key press to "drink" it. But in many cases the difference between two items is almost unimportant. If you don't have drinking restrictions or item damage then scrolls and potions are nearly the same. They both start out unidentified and trigger an magical effect when used. Scrolls might require a special skill to read, or not.

How the designer decides to separate the usage of various items is up to them, but once you start introducing mechanical limitations to an object then it needs to be a separate class.

One game might have
magical_items(scrolls, potions, wands, etc..)
Where each is activated by the use item action and any potion can have the same sort of magical effects as any scroll or wand, and there is no item damage (like your scrolls being damaged in fire or water)

another game might have
scrolls()
potions()
wands()
etc..()
Where there are restrictions on what kind of magical effects each item class can have, their might be different actions for using each type and each type might have other restrictions.

But before you decide on those things you need a pool of possible themed item types so you can draw from them. You don't have to use everything on the list, but it's good to have a list to start with. Same with monsters, skills, spells and everything else.

Many items have restrictions of convention inherited from the roguelike genre, but it's really OK to break these conventions if you feel the reward of fresh game play is worth the risk of confusing players who are used to a certain convention. If the usage of an item is not clear and there isn't any help to describe how to use it you could end up with a useless item.
A blog about my 3d Roguelike: http://pickleddevblog.blogspot.kr/

Endorya

  • Rogueliker
  • ***
  • Posts: 513
  • Karma: +0/-0
  • The non-purist roguelike lover
    • View Profile
    • Email
Re: Brainstorming: Item lists.
« Reply #20 on: June 30, 2014, 12:59:02 PM »
Good reading.

Could you show me your list once you think it is complete? It might help me out with some items that I'm having difficulty categorizing.
"You are never alone. Death is always near watching you."