设为首页收藏本站同能贴吧 切换语言 繁体中文
开启辅助访问 切换到窄版
扫描二维码关注官方公众号
返回列表
+ 发新帖
查看: 96|回复: 0

[制作教程] D20 Combat in MZ

[复制链接]
累计送礼:
0 个
累计收礼:
1 个
  • TA的每日心情
    开心
    4 天前
  • 签到天数: 209 天

    连续签到: 2 天

    [LV.7]常住居民III

    4616

    主题

    864

    回帖

    2万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    VIP
    7
    卡币
    23239
    OK点
    16
    推广点
    0
    同能卷
    50
    积分
    28749

    灌水之王

    发表于 2026-7-7 16:55:59 | 显示全部楼层 |阅读模式



    The D&D-style combat using a D20 (a twenty-sided die) is really quite brilliant. It is not too difficult to incorporate a D20-style combat with Attack Roll v.s. AC and Spell Attack v.s. Saving Throw directly into RPG Maker. This guide is written for MZ but should work equally well with MV, as both use Javascript. Using it in Ace will require some formula modifications, but my other tutorial should help with that: https://forums.rpgmakerweb.com/index.php?threads/a-guide-to-damage-formulas.145148/. Please note that this tutorial will assume some familiarity with D&D combat.

    To use D20 damage formulas, we begin with a dice roll.
    1dX = Math.randomInt(X)+1
    YdX = Math.randomInt(X*Y) + 1
    If you're calculating damage with a 3d6 (simulating rolling a six-sided die three times and adding up the total), the formula would thus be Math.randomInt(18) + 1.

    Okay, now in D&D the "Ability Modifier" is obtained by subtracting 10 from the Ability Score, dividing it by 2, and rounding it down (known in programming as truncating or flooring): M = Math.Floor((A – 10)/2). Of course putting this into RPG Maker will do nothing as "A" and "M" mean nothing to RM so we have to convert it into something it can understand.

    Our full formula is basically going to say, "Okay, if the target AC is less than or equal to a 1d20 roll + the attack modifier + half the user's level, then deal YdX + the attack modifier damage. Else, deal no damage."

    Written out, then, here's our full formula:
    b.def <= (Math.randomInt(20) + 1 + (Math.floor((mod – 10)/2)) + (Math.floor(a.level/2))) ? Math.random(X*Y) + 1 + (Math.floor((a.atk – 10)/2)) : 0;. Now we can break it down.

    • b.def <= ... ? :

      • We're checking to see if the target's "defense" (AC) is less than or equal to what all the following math will compute to. In D&D, that's a necessary prerequisite to do any damage. The ? and : are part of the ternary operator construct. I recommend reading another tutorial of mine for some instruction on that, but it's basically a simplified if-else. https://forums.rpgmakerweb.com/index.php?threads/a-guide-to-damage-formulas.145148/

    • (Math.randomInt(20) + 1

      • This just simulates a d20 roll.

    • + (Math.floor((mod – 10)/2))

      • Now we add our attack modifier. For mod you can substitute generally a.atk or a.mat, or any parameter if you want to get more creative.

    • + (Math.floor(a.level/2))

      • Here we add half the level, thus finishing our if-statement condition. Remember, floor is just a round-down.

    • Math.random(X*Y) + 1 + (Math.floor((mod – 10)/2))

      • This is the central damage calculation - we do damage equal to a YdX roll, just like in D&D, and then add the attack modifier damage. Once again substitute whatever you like for mod, generally a.atk for physical attacks and a.mat for magical attacks.

    • 0

      • If the formula could not meet or beat the target's AC, 0 damage is dealt, and it's a miss. Be sure to set the attack skill to Certain Hit, because this formula already deals with misses.




    本贴来自国际rpgmaker官方论坛作者:lakeisgay处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/d20-combat-in-mz.146513/

    本帖子中包含更多资源

    您需要 登录 才可以下载或查看,没有账号?立即注册

    x
    天天去同能,天天有童年!
    回复 送礼论坛版权

    使用道具 举报

    文明发言,和谐互动
    文明发言,和谐互动
    高级模式
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    简体中文
    繁體中文
    English(英语)
    日本語(日语)
    Deutsch(德语)
    Русский язык(俄语)
    بالعربية(阿拉伯语)
    Türkçe(土耳其语)
    Português(葡萄牙语)
    ภาษาไทย(泰国语)
    한어(朝鲜语/韩语)
    Français(法语)
    关闭

    幸运抽奖

    社区每日抽奖来袭,快来试试你是欧皇还是非酋~

    立即查看

    聊天机器人
    Loading...

    QQ|Archiver|手机版|小黑屋|同能RPG制作大师 ( 沪ICP备12027754号-3 )

    GMT+8, 2026-7-16 18:59 , Processed in 0.114624 second(s), 52 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

    快速回复 返回顶部 返回列表