作者giant70.bbs@ptt.cc (劉伯溫) 看板: mud
標題[心得] 亂世群雄技能 sword-dance
時間批踢踢實業 (2008/08/31 Sun 14:02:36)
#include <ansi.h>
inherit SKILL;
string type() { return "knowledge"; }
void skill_improved(object me)
{
if (me->query_skill("sword-dance",1)==50)
{
message_vision(HIY"$N領悟了"HIG"舞劍術"HIY"中的『"BLU"回氣"HIY"之術』。"NOR"\n",me);
}
else if (me->query_skill("sword-dance",1)==70)
{
message_vision(HIY"$N領悟了"HIG"舞劍術"HIY"中的『"HIC"行雲流水之術"HIY"』。"NOR"\n",me);
}
else if (me->query_skill("sword-dance",1)==100)
{
message_vision(HIY"$N領悟了"HIG"舞劍術"HIY"中的『"MAG"迷魂之術"HIY"』。"NOR"\n",me);
}
else if (me->query_skill("sword-dance",1)==120)
{
message_vision(HIY"$N領悟了"HIG"舞劍術"HIY"中的『"HIM"大喝之術"HIY"』。"NOR"\n",me);
}
else if (me->query_skill("sword-dance",1)==180)
{
message_vision(HIY"$N領悟了"HIG"舞劍術"HIY"中的『"HIC"天外飛仙"HIY"』。"NOR"\n",me);
}
else if (me->query_skill("sword-dance",1)==350)
{
message_vision(HIY"$N領悟了"HIG"舞劍術"HIY"中的『"HIW"星辰之劍"HIY"』。"NOR"\n",me);
}
}
int valid_learn(object me)
{
return notify_fail(""HIG"舞劍術"NOR"只能從運用(perform)中增加熟練度。\n");
}
int practice_skill(object me)
{
return notify_fail(""HIG"舞劍術"NOR"只能從運用(perform)中增加熟練度。\n");
}
string color()
{
return HIG"舞劍術"NOR;
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 61.31.141.177