Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Can entries display a bit of fluff description?

Hi there! Inside plugin parameters, you can customize the lines of the information window. 

Specifically, you can try to insert a line named "Profile" or "Description" and add all the text you want, being careful to add linebreaks for a pleasant reading. For adding an enemy description in database, I would suggest to add something like a meta tag in enemy notes.

<BeastProfile: Hello World!\nNew Line!>

For parsing this value, you would do something like:

text = !!enemy.meta["BeastProfile"] ? enemy.meta["BeastProfile"].trim() : ""

Using an inline condition like that would prevent the case of the absence of such a tag and parse a void string :)

Thank you so much! Is this compatible with Visustella?

Yes, you can find more detailed information in the "PLUGIN COMAPTIBILITY" description above. Essentially, the plugins works without issues within Visustella's cores and with all the plugins that not affect intensively the default RPG MAKER MZ or the referenced scene.