diff options
author | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-09-01 00:59:06 +0800 |
---|---|---|
committer | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-09-01 00:59:06 +0800 |
commit | f579af7e01ce76e1b9904de86f6e096a01bd0d07 (patch) | |
tree | 98a100a6bf3b57e9ff796f8b8f481bf45f5cc046 | |
parent | b8fe36d967ef5c29e1f88f9672c7eeeabf577876 (diff) | |
download | pttbbs-f579af7e01ce76e1b9904de86f6e096a01bd0d07.tar pttbbs-f579af7e01ce76e1b9904de86f6e096a01bd0d07.tar.gz pttbbs-f579af7e01ce76e1b9904de86f6e096a01bd0d07.tar.bz2 pttbbs-f579af7e01ce76e1b9904de86f6e096a01bd0d07.tar.lz pttbbs-f579af7e01ce76e1b9904de86f6e096a01bd0d07.tar.xz pttbbs-f579af7e01ce76e1b9904de86f6e096a01bd0d07.tar.zst pttbbs-f579af7e01ce76e1b9904de86f6e096a01bd0d07.zip |
add two kinds of pets
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@1144 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/chicken.c | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/pttbbs/mbbsd/chicken.c b/pttbbs/mbbsd/chicken.c index 553cdbd5..12f16f30 100644 --- a/pttbbs/mbbsd/chicken.c +++ b/pttbbs/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 |