sweat | 人物等级 已有小成 江湖威望 +16 江湖阅历 29 门派贡献 853 实战经验 27661 文章 227 注册 06-07-27 08:39
|
|
|
发表 2008-04-18 19:21:06 人气:596
if (me->query("int") < 30) { tell_object(me, "你演练完毕,只感五种剑法毫无牵连,看来依你的悟" "性,无法将其合一。\n"); return 0; }
if (me->query("dex") < 28) { tell_object(me, "你演练完毕,只觉依自己的身法灵动性,根本无法将" "五种剑法合一。\n"); return 0; }
if (me->query_skill("martial-cognize", 1) < 150) { tell_object(me, "你演练完毕,发现自己的武学修养尚待提高,暂且无" "法将五种剑法合一。\n"); return 0; }
if ((int)me->query("max_neili") < 3200) { tell_object(me, "你突然觉得真气不继,看来依自己的内力修为,无法" "将五种剑法合一。\n"); return 0; }
if (random(20) < 17) { tell_object(me, "你觉得有所感悟,或许再演练一次就能融会贯通,将" "五种剑法合一。\n"); return 0; }
tell_object(me, HIY "\n一阵凡尘往事涌上心头,你几欲放声长叹。霎那间衡山" "派五种剑法不断在\n你的脑海里交替闪现,最后终于融会贯通" ",合为一体。你终于通晓了衡山\n五神剑的诀窍。\n" NOR); return 1;
}
mapping query_sub_skills()
{ return sub_skills;
}
int valid_enable(string usage)
{ return usage == "sword" || usage == "parry";
}
int valid_learn(object me)
{ object ob;
if (! (ob = me->query_temp("weapon")) || (string)ob->query("skill_type") != "sword") return notify_fail("你必须先找一柄剑才能够练习。\n");
if (me->query("int") < 30) return notify_fail("你的先天悟性不足,没有办法练衡山五神剑。\n");
if (me->query("dex") < 28) return notify_fail("你的先天身法孱弱,没有办法练衡山五神剑。\n");
if (me->query_skill("martial-cognize", 1) < 180) return notify_fail("你觉得衡山五神剑极其深奥,依照自己的武学修养" "难以理解。\n");
if ((int)me->query("max_neili") < 4000) return notify_fail("你的内力修为不够,没有办法练衡山五神剑。\n");
if ((int)me->query_skill("sword", 1) < 200) return notify_fail("你的基本剑法太差,没有办法练衡山五神剑。\n");
if ((int)me->query_skill("sword", 1) < (int)me->query_skill("wushen-jian", 1)) return notify_fail("你的基本剑法火候有限,无法领会更高深的衡山五神剑。\n");
|
不够好 |
相关帖子 | |
演练衡山五神剑各种剑法和武学修为分别要多少级? (ooxx,12143,2008-04-18 16:32:15) | if (me->query("int")... (sweat,596,2008-04-18 19:21:06) | 不知道五岳剑做好了没有 (sweat,847,2008-04-18 19:40:02) | 衡山五神剑应该不错的,等我转世了拨一个i... (rmgx,610,2008-04-21 15:05:49) | 你手中兵刃倏地刺出,剑势穿插迂回,如梦如... (ooxx,670,2008-04-21 19:10:18) |
|
|