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

[转载发布] SES Bestiary v1.2 (Now with Demiurge plugin!)

[复制链接]
累计送礼:
0 个
累计收礼:
1 个
  • TA的每日心情
    开心
    2026-7-12 04:10
  • 签到天数: 209 天

    连续签到: 2 天

    [LV.7]常住居民III

    9071

    主题

    864

    回帖

    6万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

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

    灌水之王

    发表于 2026-7-31 21:42:50 | 显示全部楼层 |阅读模式
    SES Bestiary v1.2
    by Enelvon




    Introduction
    This script is intended to provide an extremely customizable bestiary for use in a variety of situations. Every aspect of the layout can be altered by the developer, including the number of pages and types of information displayed. Future updates are likely to contain new fields and bugfixes rather than large overhauls of the system, unless the general public finds the customization to be unreasonably difficult (something that I find unlikely, as none of my non-scripter beta testers had difficulty with it). I included almost all of the major features that I could think of in this first release, so I would appreciate it if users would suggest ideas for improvements and new features!

    Screenshots

    Spoiler



    Spoiler



    Usage
    This script has a large number of configuration options, all of which are detailed in the SES::Bestiary module. They will not be described in this section, as I despise redundancy on that scale. What this section will cover is the series of note tags that this script adds to Enemies. It will also discuss the series of script calls that can be used to add data to the bestiary (only relevant if you set things to require discovery in the configuration). I will begin by explaining the two ways to open the bestiary, though.
    This script may be supplemented by the snippet found here.

    The first addon has been released! With the BGM addon, you can give enemies unique themes that will play both in battle and on their bestiary pages. Enemies without unique battle BGM defined will play the default battle theme when viewed. You can find it here. Setup instructions can be found in the script header.

    Opening the Bestiary:

    SpoilerThere are two ways to open the bestiary: the first allows you to open it to a specific page and allow the user to scroll through it from there, while the second allows you to open a list of enemies and allow the user to select enemies from there.

    Option One: Opening the Bestiary as a Book

    This can be accomplished with a simple show_book call:

    show_book(Bestiary.new(ID, Turnable))Simply replace ID with the ID of the enemy whose page you would like to begin on. Turnable should be true or false, depending on whether or not you would like the pages to be turnable.

    Option Two: Opening the Bestiary as a Scene

    This is accomplished in the same way that you would access any other scene:

    SceneManager.call(Scene_Bestiary)



    Enemy Note Tags:

    The bestiary now has an addon for the Demiurge Notes Editor, available here! I highly recommend using it rather than manual notes tagging.

    Spoiler<Bestiary X Offset: !X!>Place this in a Notes box to alter the draw X of the enemy's image in the bestiary.

    Replacements:

    !X! with the number of pixels by which to move the enemy's image. Positive values will move it towards the right while negative values will move it towards the left.

    <Bestiary Y Offset: !Y!>Place this in a Notes box to alter the draw Y of the enemy's image in the bestiary.

    Replacements:

    !Y! with the number of pixels by which to move the enemy's image. Positive values will move it towards the bottom while negative values will move it towards the top.

    <Bestiary Hide !Type!>Place this in a Notes box to prevent part of an enemy's data from being displayed. This is useful for bosses.

    Replacements:

    !Type! with the type of data you would like to hide. This can be Skills, Elements, or States.

    <Bestiary Hide Skill: !ID!>Place this in a Notes box to prevent a given skill from appearing in the list of an enemy's skills.

    Replacements:

    !ID! with the ID of the skill you would like to hide. This tag can hold more than one ID, formatted like this: <Bestiary Hide Skill: 1, 2>

    It can contain an unlimited number of IDs - just don't press Enter until you've closed the tag. The automatic wrapping in the Notes box doesn't actually introduce a new line.

    <Bestiary Parameter !Name!: !Value!>Place this in a Notes box to change the value of a given method or variable for the purposes of display in the bestiary (and only the purposes of display in the bestiary - this affects nothing else). This can also be used to create 'fake' variables that are only used in custom bestiary fields - they can be accessed via the name you give them within bestiary configuration.

    Replacements:

    !Name! with the name of the variable or method whose content you are altering or creating.

    !Value! with the value it should hold. This can be anything, as it will be treated as a String (display only and all that).

    <Bestiary Hide All (Stats|Parameters|Params)>Place this in a Notes box to have all of an enemy's basic stats (HP, MP, ATK, and so on) drawn as ???. A convenience method for bosses and other special enemies.

    Replacements:

    None - just choose one of the three names in the parentheses of the tag. Only use one - multiple possibilities are included due to variance in the preferences of developers.

    <Bestiary Description>...TEXT......TEXT...</Bestiary Description>Place this in a Notes box to determine what will be drawn for an enemy's description. Everything between the opening and closing tags will be considered part of the description. Text will be automatically wrapped to fit, and any line breaks manually inserted with Enter will drop to a new line regardless of position when the description is drawn.

    Replacements:

    None - just make sure to include a description. If this tag is absent from an enemy, an empty description will be drawn.



    Script Calls:

    SpoilerThese can be used in events or within your own scripts, as they are all calls to $game_party.

    $game_party.reveal_bestiary_enemy(ID)Replace ID with the ID of the enemy that you would like to reveal. This call causes all of the enemy's data to be marked as known.

    $game_party.add_bestiary_enemy(ID, Defeated)Replace ID with the ID of the enemy that you would like to add and Defeated with either true (the counter for the number of defeated enemies should be incremented) or false (it should not). This will only make the page visible -- it will not mark any individual pieces of data as known.

    $game_party.add_bestiary_data(ID, Type, Data)This is the most complicated of the calls. Replace ID with the ID of the enemy whose data you are updating. Type should be :dro for Drops, :ele for Elements, :sta for States, or :ski for Skills. Data varies depending on the Type. For :ele, :sta, and :ski, it should be the ID of an Element, State, or Skill. For :dro, it should be a string in the format "Kind-ID". Kind should be 1 (for Items), 2 (for Weapons), or 3 (for Armors). ID is the Database ID of the item in question.



    Script
    This script is available from SES VX Ace.

    Installation
    Place this script below the SES Core (v2.2) and Window_Book (v3.0).

    Credit and Thanks


    • Enelvon
    Author's Notes
    This script is made available under the terms of the MIT Expat license. View this page for more information.


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

    本帖子中包含更多资源

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

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

    使用道具 举报

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

    本版积分规则

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

    幸运抽奖

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

    立即查看

    聊天机器人
    Loading...

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

    GMT+8, 2026-8-17 21:11 , Processed in 0.139314 second(s), 56 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

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