version 1.71 | | version 1.72 |
---|
| | |
/* | | /* |
* static char *rcsid_living_c = | | * static char *rcsid_living_c = |
* "$Id: living.c,v 1.71 2005/08/10 13:38:31 ryo_saeba Exp $"; | | * "$Id: living.c,v 1.72 2005/08/12 13:46:34 ryo_saeba Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
1, 1, 1, 1, 1, 1, 1, 1, 1, 1 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 |
}; | | }; |
| | |
char *attacks[NROFATTACKS] = { | | const char *attacks[NROFATTACKS] = { |
"physical", "magical", "fire", "electricity", "cold", "confusion", | | "physical", "magical", "fire", "electricity", "cold", "confusion", |
"acid", "drain", "weaponmagic", "ghosthit", "poison", "slow", | | "acid", "drain", "weaponmagic", "ghosthit", "poison", "slow", |
"paralyze", "turn undead", "fear", "cancellation", "depletion", "death", | | "paralyze", "turn undead", "fear", "cancellation", "depletion", "death", |
| | |
"life stealing" | | "life stealing" |
}; | | }; |
| | |
static char *drain_msg[NUM_STATS] = { | | static const char *drain_msg[NUM_STATS] = { |
"Oh no! You are weakened!", | | "Oh no! You are weakened!", |
"You're feeling clumsy!", | | "You're feeling clumsy!", |
"You feel less healthy", | | "You feel less healthy", |
| | |
"Watch out, your mind is going!", | | "Watch out, your mind is going!", |
"Your spirit feels drained!" | | "Your spirit feels drained!" |
}; | | }; |
char *restore_msg[NUM_STATS] = { | | const char *restore_msg[NUM_STATS] = { |
"You feel your strength return.", | | "You feel your strength return.", |
"You feel your agility return.", | | "You feel your agility return.", |
"You feel your health return.", | | "You feel your health return.", |
| | |
"You feel your memory return.", | | "You feel your memory return.", |
"You feel your spirits return." | | "You feel your spirits return." |
}; | | }; |
char *gain_msg[NUM_STATS] = { | | const char *gain_msg[NUM_STATS] = { |
"You feel stronger.", | | "You feel stronger.", |
"You feel more agile.", | | "You feel more agile.", |
"You feel healthy.", | | "You feel healthy.", |
| | |
"You feel smarter.", | | "You feel smarter.", |
"You feel more potent." | | "You feel more potent." |
}; | | }; |
char *lose_msg[NUM_STATS] = { | | const char *lose_msg[NUM_STATS] = { |
"You feel weaker!", | | "You feel weaker!", |
"You feel clumsy!", | | "You feel clumsy!", |
"You feel less healthy!", | | "You feel less healthy!", |
| | |
"You feel less potent!" | | "You feel less potent!" |
}; | | }; |
| | |
char *statname[NUM_STATS] = { | | const char *statname[NUM_STATS] = { |
"strength", "dexterity", "constitution", "wisdom", "charisma", "intelligence","power" | | "strength", "dexterity", "constitution", "wisdom", "charisma", "intelligence","power" |
}; | | }; |
| | |
char *short_stat_name[NUM_STATS] = { | | const char *short_stat_name[NUM_STATS] = { |
"Str", "Dex", "Con", "Wis", "Cha", "Int","Pow" | | "Str", "Dex", "Con", "Wis", "Cha", "Int","Pow" |
}; | | }; |
| | |