2_clerical_group
来自「一个基于Applet的角色扮演图形游戏」· 代码 · 共 20 行
TXT
20 行
#Armor: Increases a targets armor class
#
#
if ! variableisstring param0 #Not specific target
chat caster "Your spell energies envelope you in a magical shield."
addconditionwithduration caster "armor" caster intelligence
endscript
end
#
if variableisstring param0 #A target is specified
livingthing target local caster param0
if variableislivingthing target
chat caster concat concat "Your spell energies form solid armor for " name target "."
chat target concat concat "The spell energies of " name caster " envelope your body in a magical shield."
addconditionwithduration target "armor" caster intelligence
endscript
end
chat caster "You do not see them here."
end
endscript
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?