装备各类触发内容

[各种触发内容] 需要对写装备非常非常了解 会自己随意搭配各种条件和内容的人才能看得懂和使用!!!!!!!!!!!!!!!

消耗一个无色小晶块 且会喊出一句话

[then]
    [target]
        `myself`    -1
    [consume item]
        3037    1
    [speech on]
        0    2000
        `好吃……哈哈~吃飽后就充滿了力量!`
    [/speech on]
[/then]

召唤一个怪物 怪物代码 怪物等级(-1则跟随玩家等级) 持续时间 召唤数量

[then]
    [target]
        `myself`    -1
    [summon monster]
    56123    -1    90000    1
[/then]

召唤一个apc apc代码 apc等级(-1则跟随玩家等级) 持续时间 召唤数量

[then]
    [target]
        `myself`    -1
    [summon apc]
    11128    -1    90000    1
[/then]

给自己上buff 成功率30% 删掉成功率或写100则100%

[then]
    [target]
        `myself`    -1
    [probability]
        30
    [duration]
        5000
    [buff]
        `superarmor`
[/then]
霸体:superarmor
无敌:unbreakable
伪装:camoflage

给500px范围内队友上buff 写-1则不限范围 buff持续时间20秒

[then]
    [target]
        `party`    500
    [duration]
        20000
    [elemental weapon]
        `light`
[/then]

给队友上buff 直接写 不用if和then 每件装备不能写太多,属性也不能写过高 这个意思是给300px范围内的队友加45的力量

[aura active]
`physical attack`    `+`    45    300
加速状态:
[active status]
    'haste' 40 16 16
第一个数值:加速Lv:Lv40
第二个数值:攻击速度增加:16%
第三个数值:移动速度增加:16%
减速状态:
[active status]
    `slow` 55 14 14 
第一个数值:加速Lv:Lv55
第二个数值:移动速度减少:14%
第三个数值:攻击速度减少:14%
祝福状态:
[active status]
    `bless` 22 13 13 13 13 
第一个数值:加速Lv:Lv22
第二个数值:力量增加:13
第三个数值:体力增加:13
第四个数值:智力增加:13
第五个数值:精神增加:13

被攻击出气功分身,不是每个技能都能用,具体通用规则不明

[if] 
    [cooltime] 
        100 
    [hit] 
        1 
[/if] 

[then] 
    [probability] 
        100 
    [reduce probability to human armor at pvp module] 
        90 
    [perform skill] 
        `fighter` 69 30 10 //(格斗家 幻影爆碎 Lv:30 分身数量10 )
[/then]

每6点暗属性抗性,增加2点暗属性强化

[then]
    [target]
        `myself`    -1
    [stat change by stat]
        `myself`    -1
        `dark resistance`    6
        `dark attack`
        `+`    2    50
[/then]

攻擊時, 有2%%的幾率重置自身技能的冷卻時間, 但只能重置一個剩余冷卻時間最短的技能。 (冷卻時間剩60秒以上的技能無效; 在決斗場中無效)

[if]
    [attack success]
        1
    [cooltime]
        30000
[/if]

[then]
    [target]
        `myself`    -1
    [probability]
        2
    [skill cooltime reset]
        0
        ``    1
    [speech on]
        0    2000
        `時空主宰者`
    [/speech on]
[/then]

减全局CD

[if]
    [change status]
        `hp`
        `>`
        `%`    0
        `end`
[/if]

[then]
    [target]
        `myself`    -1
    [stat by condition]
        `skill cool time`
        `%`    -10
[/then]

单个技能冷却时间

`[fighter]`    63    `[all]`    `[cooltime]`    0    `%`    -50
© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容