| 本帖最後由 cciiggyy7788 於 2011-1-3 12:44 編輯 
 小弟想問的是技能翻譯的部分,有附上註解但不是全部都有,所以想請知道的大大幫小弟解說一下,小弟想問的是紅色部分,謝謝.
 ############################
 #       一次性 攻擊        #
 ############################
 # 以下區塊為自動施展攻擊性法術技能的設定
 attackSkillSlot {
 lvl 10
 # 技能等級
 dist 9
 # 施法距離 (魔法最大攻擊為9格,戰士系需要較短距離)
 maxCastTime
 minCastTime
 hp
 # HP 範圍限制
 sp
 # SP 範圍限制
 homunculus_hp
 # 人工生命體 HP 範圍限制
 homunculus_sp
 # 人工生命體 SP 範圍限制
 homunculus_dead
 # 人工生命體死亡時
 onAction
 # 當 AI 為 ... 時
 whenStatusActive
 # 當處於某種狀態時
 whenStatusInactive
 # 當某種狀態失效時
 whenFollowing
 # 當跟隨時
 spirit
 # 氣彈數範圍
 aggressives
 # 被魔物圍攻的隻數
 previousDamage
 stopWhenHit
 # 被攻擊時是否停止使用本技能
 inLockOnly 1
 # 是否只在鎖定地圖使用
 notInTown
 # 是否不在城鎮使用
 timeout
 disabled
 # 是否關閉本區塊技能
 monsters
 # 限定針對哪些魔物使用
 notMonsters
 # 限定不對哪些魔物使用
 maxAttempts
 # 若技能使用失敗,則最多嘗試幾次(施法失敗也算一次)
 maxUses 1
 # 本技能使用幾次(施法成功才算一次)
 target_whenStatusActive
 # 當目標處於某種狀態時
 target_whenStatusInactive
 # 當目標不為某種狀態時
 target_deltaHp
 # 目標魔物的 HP 改變量(大多皆為負值)
 inInventory
 # 物品欄有某(些)物品時
 isSelfSkill
 # 本技能是否為使用在自己身上的技能
 equip_topHead
 # 頭上裝備名
 equip_midHead
 # 頭中裝備名
 equip_lowHead
 # 頭下裝備名
 equip_leftHand
 # 左手裝備名
 equip_rightHand
 # 右手裝備名
 equip_leftAccessory
 # 左裝飾品裝備名
 equip_rightAccessory
 # 右裝飾品裝備名
 equip_robe
 # 披掛物裝備名
 equip_armor
 # 盔甲裝備名
 equip_shoes
 # 鞋子裝備名
 equip_arrow
 # 箭矢裝備名
 manualAI
 # 是否在手動時才使用
 }
 ############################
 #      輔助技 (自己)       #
 ############################
 # 以下區塊為施展至自己身上的法術技能的設定,屬性設定請參考 attackSkillSlot 區塊
 useSelf_skill {
 lvl 9
 maxCastTime 0
 minCastTime 0
 hp
 sp
 homunculus_hp
 homunculus_sp
 homunculus_dead
 onAction
 whenStatusActive
 whenStatusInactive
 whenFollowing
 spirit
 aggressives
 monsters
 notMonsters
 stopWhenHit 0
 inLockOnly 1
 notWhileSitting 0
 notInTown 0
 timeout 150
 disabled 0
 inInventory
 manualAI 0
 }
 ############################
 #      輔助技 (隊友)       #
 ############################
 # 以下區塊為施展至隊友身上的法術技能的設定,部分屬性設定請參考 attackSkillSlot 區塊
 partySkill {
 lvl 10
 maxCastTime 0
 minCastTime 0
 hp
 sp
 homunculus_hp
 homunculus_sp
 homunculus_dead
 onAction
 whenStatusActive
 whenStatusInactive
 whenFollowing
 spirit
 aggressives
 monsters
 notMonsters
 stopWhenHit 0
 inLockOnly 0
 notWhileSitting 0
 notInTown 0
 timeout 0
 disabled 0
 manualAI 0
 target
 # 輔助技能施放對象的名字
 target_hp
 # 施放對象的 HP 範圍限制
 target_isJob
 # 施放對象為以上英文職業名時
 target_isNotJob
 # 施放對象非以上英文職業名時
 target_whenStatusActive
 # 施放對象處於某種狀態時
 target_whenStatusInactive
 # 施放對象不為某種狀態時
 target_aggressives
 # 施放對象被圍攻的隻數
 target_monsters
 # 施放對象被以上的魔物攻擊時(魔物名稱以逗號隔開)
 target_timeout
 # 施放對象的時間間隔
 target_deltaHp
 # 施放對象的 HP 改變量(大多皆為負值)
 target_dead 0
 # 施放對象死亡時(大多應用於復活術)
 inInventory
 isSelfSkill 0
 }
 
 |