diff options
-rw-r--r-- | mbbsd/chicken.c | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/mbbsd/chicken.c b/mbbsd/chicken.c index 553cdbd5..12f16f30 100644 --- a/mbbsd/chicken.c +++ b/mbbsd/chicken.c @@ -1,7 +1,7 @@ -/* $Id: chicken.c,v 1.12 2003/06/28 08:44:35 kcwu Exp $ */ +/* $Id$ */ #include "bbs.h" -#define NUM_KINDS 13 /* ���h�ֺذʪ� */ +#define NUM_KINDS 15 /* ���h�ֺذʪ� */ static const char *cage[17] = { "�ϥ�", "�g��", "���~", "�֦~", "�C�K", "�C�~", @@ -11,27 +11,27 @@ static const char *chicken_type[NUM_KINDS] = { "�p��", "���֤k", "�i�h", "�j��", "���s", "���N", "��", "�����p�s", "����", "�c�]", "�Ԫ�", "����", -"���^�E"}; +"���^�E", "�N�i�H", "ù��"}; static const char *chicken_food[NUM_KINDS] = { "���}��", "��i�p��", "���ƫK��", "������", "����", "�p��", "�氮", "�p���氮", "�_��", "�F��", "����", "�K��", -"���L"}; +"���L", "���ܤ峹", "���G�F��"}; static const int egg_price[NUM_KINDS] = { 5, 25, 30, 40, 80, 50, 15, 35, 17, 100, 85, 200, -200}; +200, 100, 77}; static const int food_price[NUM_KINDS] = { 4, 6, 8, 10, 12, 12, 5, 6, 5, 20, 15, 23, -23}; +23, 10, 19}; static const char *attack_type[NUM_KINDS] = { "��", "�@��", "�l", "�r", "����", "��", "��", "��", "�r", "�U�N", "�t��", "�ҥ�", -"�C��"}; +"�C��", "�N����u", "���k�@�T"}; static const char *damage_degree[] = { "�A�l����", "���o����", "�p�O��", "���L��", @@ -76,7 +76,11 @@ static const short time_change[NUM_KINDS][14] = /* ���� */ {1, 1, 150, 4, 8, 13, 95, 25, 7, 10, 25, 5, 175, 85}, /* ���^�E */ - {1, 1, 147, 2, 10, 10, 85, 20, 4, 25, 25, 5, 145, 95} + {1, 1, 147, 2, 10, 10, 85, 20, 4, 25, 25, 5, 145, 95}, + /* �N�i�H */ + {1, 1, 200, 3, 15, 15, 50, 50, 10, 5, 10, 2, 300, 0}, + /* ù�Q */ + {1, 1, 80, 2, 9, 10, 2, 5, 7, 8, 12, 1, 135, 5}, }; int |