/** [Reward]s which are "boring" fixed objects, such as the corkboard. */ class FixedReward : AbstractRole, Reward { @Attribute( about="Which scene must be completed to see this item in a Doll's House?" ) var rewardForScene = "" override fun rewardForScene() : String = rewardForScene override fun tick() { // Do nothing } }