Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

The overrides are intended to let you override a body part's descriptive text. I found broken implementation  so I'll push a hotfix today. Here's an example of how you can use them, v1.1.4 or higher:

{

  "schemaVersion": 1,

  "id": "myBerryPotion",

  "displayName": "Berry Potion",

  "effectOps": [

    { "op": "addBodyStage", "target": "waistStage", "amountByMagnitude": 1 }

  ],

  "incapacitation": { "byStage": 0 },

  "descriptionOverrides": [

    {

      "key": "body.waist",

      "when": { "minStage": 4 },

      "lines": [

        "Her midsection is swollen with syrupy pressure, glossy and round like ripe fruit."

      ]

    }

  ]

}

This replaces the waist description, otherwise determined by the character's belly size, with the line here at certain TF stages. For example, if you wanted a pancake stack TF, you might replace the bust, waist, and hips descriptions with fitting descriptions to reflect a body splitting into multiple pancakes, or for example, replace the waist description with a burger for a burger TF, and so on. Here are the keys you can use.

(1 edit)

Thank you for the quick response and bugfix. I've been messing around with the modding and this feature interested me. Lots of potential for detail with it. I'll definitely play around with it once you realize the patch.