mirror of
https://github.com/tbamud/tbamud.git
synced 2026-03-22 20:26:33 +01:00
Remove XP sacrifice gain and
This commit is contained in:
parent
7d2afcdee0
commit
fa1af68fdf
1 changed files with 1 additions and 9 deletions
|
|
@ -1539,18 +1539,10 @@ ACMD(do_sac)
|
|||
send_to_char(ch, "You sacrifice %s to the Gods.\r\nThe Gods ignore your sacrifice.\r\n", GET_OBJ_SHORT(j));
|
||||
break;
|
||||
case 2:
|
||||
send_to_char(ch, "You sacrifice %s to the Gods.\r\nThe gods give you %d experience points.\r\n", GET_OBJ_SHORT(j), 1+2*GET_OBJ_LEVEL(j));
|
||||
GET_EXP(ch) += (1+2*GET_OBJ_LEVEL(j));
|
||||
break;
|
||||
case 3:
|
||||
send_to_char(ch, "You sacrifice %s to the Gods.\r\nYou receive %d experience points.\r\n", GET_OBJ_SHORT(j), 1+GET_OBJ_LEVEL(j));
|
||||
GET_EXP(ch) += (1+GET_OBJ_LEVEL(j));
|
||||
break;
|
||||
case 4:
|
||||
send_to_char(ch, "Your sacrifice to the Gods is rewarded with %d gold coins.\r\n", 1+GET_OBJ_LEVEL(j));
|
||||
increase_gold(ch, (1+GET_OBJ_LEVEL(j)));
|
||||
break;
|
||||
case 5:
|
||||
case 3:
|
||||
send_to_char(ch, "Your sacrifice to the Gods is rewarded with %d gold coins\r\n", (1+2*GET_OBJ_LEVEL(j)));
|
||||
increase_gold(ch, (1+2*GET_OBJ_LEVEL(j)));
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue