#ifndef _MONEY_H_9a59fa30_ #define _MONEY_H_9a59fa30_ /* header file for money strings */ /* ALL string constants containing any references to form of currency are */ /* to be placed here. -- Doran */ /* generic stuff, used everywhere */ #define S_MONEY "dollar" #define PL_MONEY "dollars" #define PL_MONEY_CAP "Dollars" /* from create.c */ #define EXIT_ERR "Sorry, you don't have enough dollars to open an exit." #define LINK_ERR "You don't have enough dollars to link." #define LINK_INF "It costs a dollar to link this exit." #define LINK_IND "It costs two dollars to link this exit." #define DIG_ERR "Sorry, you don't have enough dollars to dig a room." #define SOR_ERR "Sorry, you don't have enough dollars." #define ACT_ERR "Sorry, you don't have enough dollars to make an action." /* from look.c */ #define PLUR_TRI "dollar" : "dollars" /* PLUR_TRI is used in the trinary operator */ #define OUT_ERR "You don't have enough dollars." /* from move.c */ #define FOUND "You found a dollar!" /* from prims_create.c */ /* OUT_ERR is used */ #define NOT_ERR "Not enough dollars." /* from rob.c */ #define OUT_MON "%s is dollarless." #define OUT_YOU "%s tried to rob you, but you have no dollars to take." #define STOLE "You stole a dollar." #define STOLE_Y "%s stole one of your dollars!" /* OUT_ERR is used */ #define INSUR "Your insurance policy pays %d dollars." #define POS_ERR "You must specify a positive number of dollars." #define OVER_ERR "That player doesn't need that many dollars!" #define UNDR_ERR "You don't have that many dollars to give!" /* PLUR_TRI is used */ #define GIV_ERR "You can't give dollars to that!" /* from player.c */ #define INITIAL_MONEY 200 /* amount to give a newly-created player */ /* from speech.c */ /* OUT_ERR is used */ /* from wiz.c */ /* PLUR_TRI is used */ #endif