class Item { void increaseValue(Integer amount) { ... } void reduceValue(Integer amount) { ... } String toString() { ... } Boolean hasDescription() { .... } def name // name of the item def value // value of the item in game points def description = '' // a description of the item }