robinheghan / elm-warrior / Warrior.Item

A warrior might find and use different items on their quest.


type Item
    = Sword
    | Potion

The different items that can be encountered and used during the game.

toString : Item -> String

Human readable name of item