正在加载
《骑马与砍杀》——0808版本 武器动作的具体更改
时间:2024-12-15 来源:本站 作者:佚名
《骑马与砍杀》是由土耳其的taleworlds开发制作的一款动作角色扮演类游戏,于2008年发行。去官方网站下载0808版ModuleSystem再装个Python到ModuleSystem目录下右键点module_info.py用Pyt...
《骑马与砍杀》是由土耳其的taleworlds开发制作的一款动作角色扮演类游戏,于2008年发行。

去官方网站下载0808版ModuleSystem

再装个Python

到ModuleSystem目录下右键点module_info.py用Python编辑输出目录,当然你要先把这个目录文件夹先建立(很关键哦,不然输出不了)

 

再到ModuleSystem目录下右键点header_items.py用Python编辑打开

会发现最下面的命令行

 

#combined capabilities

itc_cleaver = itcf_force_64_bits | (itcf_overswing_onehanded|itcf_slashright_onehanded|itcf_slashleft_onehanded |

                                    itcf_horseback_slashright_onehanded|itcf_horseback_slashleft_onehanded)

itc_dagger  = itc_cleaver | itcf_thrust_onehanded

 

itc_parry_onehanded = itcf_force_64_bits | itcf_parry_forward_onehanded| itcf_parry_up_onehanded | itcf_parry_right_onehanded

 

|itcf_parry_left_onehanded

itc_longsword = itc_dagger | itc_parry_onehanded

itc_scimitar  = itc_cleaver | itc_parry_onehanded

 

itc_parry_two_handed = itcf_force_64_bits | itcf_parry_forward_twohanded | itcf_parry_up_twohanded |

 

itcf_parry_right_twohanded | itcf_parry_left_twohanded

itc_cut_two_handed = itcf_force_64_bits | (itcf_slashright_twohanded | itcf_slashleft_twohanded | itcf_overswing_twohanded | 

                                           itcf_horseback_slashright_onehanded|itcf_horseback_slashleft_onehanded)

itc_greatsword = itc_cut_two_handed |  itcf_thrust_twohanded | itc_parry_two_handed |itcf_thrust_onehanded_lance

itc_nodachi    = itc_cut_two_handed | itc_parry_two_handed

 

itc_bastardsword = itc_cut_two_handed |  itcf_thrust_twohanded | itc_parry_two_handed |itc_dagger

 

itc_parry_polearm = itcf_parry_forward_polearm | itcf_parry_up_polearm | itcf_parry_right_polearm | itcf_parry_left_polearm

itc_poleaxe    = itc_parry_polearm| itcf_overswing_polearm

 

|itcf_thrust_polearm|itcf_slashright_polearm|itcf_slashleft_polearm

itc_staff      = itc_parry_polearm| itcf_thrust_onehanded_lance |itcf_thrust_onehanded_lance_horseback|

 

itcf_overswing_polearm |itcf_thrust_polearm|itcf_slashright_polearm|itcf_slashleft_polearm

itc_spear      = itc_parry_polearm| itcf_thrust_onehanded_lance |itcf_thrust_onehanded_lance_horseback | itcf_thrust_polearm

itc_pike       = itcf_thrust_onehanded_lance |itcf_thrust_onehanded_lance_horseback | itcf_thrust_polearm

 

itc_greatlance = itcf_thrust_onehanded_lance |itcf_thrust_onehanded_lance_horseback| itcf_thrust_polearm

 

这些都是武器的动作类型,请大家耐心看

 

itcf_overswing_onehanded   单手能从上而下劈砍

itcf_slashright_onehanded  单手能从右而左横挥

itcf_slashleft_onehanded   单手能从左而右横挥

itcf_thrust_onehanded      单手能刺击

     horseback             能在马背上动作

     twohanded             双手

     parry_forward         能格挡刺击

     parry_up              能格挡从上而下劈砍

     parry_right           能格挡从右而左横挥

     parry_left            能格挡从左而右横挥

     cut                   能从上而下劈砍,仅限双手

     polearm               长柄武器

thrust_onehanded_lance    能同时拿盾牌的单手长柄武器

 
本次分享游戏《骑马与砍杀》攻略。