You are viewing a potentially older version of this package. View all versions.
zannc-GodsAPI-2.0.7 icon

GodsAPI

A library for developers to easily add new Gods / NPC Gods to the game without having to dig through files.

Date uploaded 2 weeks ago
Version 2.0.7
Download link zannc-GodsAPI-2.0.7.zip
Downloads 395
Dependency string zannc-GodsAPI-2.0.7

This mod requires the following mods to function

SGG_Modding-SJSON-1.0.0 icon
SGG_Modding-SJSON

A plugin for handling .sjson files in ReturnOfModding.

Preferred version: 1.0.0
SGG_Modding-Chalk-2.1.1 icon
SGG_Modding-Chalk

System for handling config files in ReturnOfModding

Preferred version: 2.1.1
SGG_Modding-ReLoad-1.0.2 icon
SGG_Modding-ReLoad

Provides helpers for managing hot reloading and waiting for the right time to load

Preferred version: 1.0.2
LuaENVY-ENVY-1.2.0 icon
LuaENVY-ENVY

A plugin to allow ReturnOfModding plugins greater control of their environment.

Preferred version: 1.2.0
SGG_Modding-ModUtil-4.0.1 icon
SGG_Modding-ModUtil

Utility mod for mod interactions within lua for SGG's games

Preferred version: 4.0.1
Hell2Modding-Hell2Modding-1.0.77 icon
Hell2Modding-Hell2Modding

Lua Mod Loader for Hades 2

Preferred version: 1.0.77

README

GodsAPI, a library to create Gods.

This is a very early library made to make it easy for developers to add new Gods/NPC Gods, Keepsakes & Boons. This library does nothing to the game on its own, without outside function calls. You should only install it if another mod requires it, or if you will be using this library to create Gods/Keepsakes/Boons.

[!IMPORTANT] Currently, this library only supports adding in Olympian Gods eg. Zeus and NPC-type Gods eg. Hermes - as well as custom Keepsakes.
NPC Type means that they will not be treated as GodLoot - meaning you can have Zeus, Aphrodite, Hera, Hestia and meet Hermes and Your God.


[!NOTE] If there are any requests, anything I missed, or anything working incorrectly, post an issue, or create a help thread in the Hades Modding Discord.

Developer Documentation

  1. Create a dependency in manifest.json (if testing locally) by adding "zannc-GodsAPI-1.0.0" and in thunderstore.toml by adding zannc-GodsAPI = "1.0.0" if publishing the mod by adding to respective files.

  2. In main.lua, add:

    ---@module 'zannc-GodsAPI-auto'
    gods = mods['zannc-GodsAPI'].auto() --! IMPORTANT, you must add in .auto() or else the library will not work.
    

    So that it looks like this as an example:

    _PLUGIN = PLUGIN
    game = rom.game
    
    ---@module 'SGG_Modding-ModUtil'
    modutil = mods["SGG_Modding-ModUtil"]
    ---@module 'SGG_Modding-ReLoad'
    reload = mods["SGG_Modding-ReLoad"]
    ---@module 'SGG_Modding-SJSON'
    sjson = mods["SGG_Modding-SJSON"]
    ---@module 'zannc-GodsAPI-auto'
    gods = mods["zannc-GodsAPI"].auto()
    

For more in-depth examples of how to use these functions, refer to the DEV.md file and the PARAMS.md file.

  1. To create a God, you must call gods.InitializeGod(params), and optionally followed by gods.CreateOlympianSJSONData(params) and provide the required paramaters / sjson paramaters.

  2. To create a Keepsake, you must call gods.CreateKeepsake(params), and pass in the required fields - as well as any custom functions you need to make the keepsake function.

  3. To create a Boon, you must call gods.CreateBoon(params), and pass in the required fields - as well as any custom functions you need to make the boon function.

[!IMPORTANT] It is important to note that the internal names for Gods/Traits/Keepsakes will always be appended with your _PLUGIN.guid followed by a - and then the internal name. This also applies for anything that will be handled internally, such as portrait names, among other sets of data.

Planned Features

  • I am looking into the possibility of Hex Gods like Selene, as well as physical 3D NPCs if possible - however to my knowledge, 3D models have not been created yet.
  • I would like to add Spells and proper NPC's such as Dionysus/Athena/Arachne during runs, and Hub NPCS such as Hecate/Hypnos, however, there are a lot of functions that are hard-coded to SpellDrop, and I am unsure about the state of adding 3D models.
  • Ability to add Custom Rarities.

CHANGELOG

Changelog

Unreleased

2.1.0 - 2025-12-22

  • Added customGiftData to CreateKeepsake
  • Fix internalKeepsakeName.
  • Fix RarityLevel Multiplier.
  • Added ExtraFields to CreateKeepsake because I missed it somehow.
  • Fixed Min/MaxRequirements for Keepsakes.
  • Added new function, CreateCustomRarity to be used with CreateBoon.
  • Update customStatLine to support multiple statlines.
  • Slight ReadME/Dev/Params update.

2.0.7 - 2025-12-10

  • Fix ConsumableData issue with Shop of Hermes?
  • Fix ConsumableData maximum spawn chance in shops to adhere to normnal spawn chance of god.

2.0.6 - 2025-12-09

  • Add ExtraFields param to CreateGod.
  • Remove Dash from Shop .. godName due to it not adhering to StoreLogic discounts (Travel Deal).
  • Added option for SpawnLikeHermes to be a table containing maximumSpawns, with a value of 1 being 2 natural spawns maximum per run.
  • Change SurfaceIcon for boons to be the IconPreview of boons.
  • Small def/params update.
  • Added OverlayAnim to PortraitData.

2.0.5 - 2025-12-08

  • Fix issue with NPC God spawning in Shops.
  • Naming Convention for Shop var in NPC.
  • Fix InheritFrom nil check in CreateBoon.
  • Relaxed need to define plugin.guid for trait requirements, it will try to fall back to _PLUGIN.guid-internalboonname, or else throw a warning and remove it from the list.
  • Added customGUID to addToExistingGod to allow for insertions into god not using your GUID.
  • Allow for godtype = god and still limit spawns to function like hermes
  • Touched up on docs.
  • DEV: Added Boon Population for EnemyData after game loads, makes it easier to add boons to NPCs too.
  • Hopefully fixed issue which was causing NPC/Spawn Limited gods to constantly appear.

2.0.4 - 2025-12-02

  • Slight change to defs.
  • Update README.

2.0.3 - 2025-12-01

2.0.2 - 2025-12-01

  • Fix addToExistingGod.

2.0.1 - 2025-12-01

  • Add missing GodLoot, usefule for other mods to check if GodLoot or not.

2.0.0 - 2025-12-01

  • Add Data Inheritence to functions // cuts down on params (though can still be changed)
  • Use InheritFrom in creation of Boons instead of isLegendary // Elements
  • No longer need to pass in _PLUGIN.guid.
  • Append _PLUGIN.guid to Gods/Keepsakes/Boons to allow for multiple people to create Gods/Keepsakes/Boons of same name.
  • No longer need to define FlavourText if you have created Descriptions for them, though it still remains a param if you want to reuse any.

1.0.9 - 2025-11-28

  • Changed how RarityLevels can be passed in (you can now pass in Multipliers/tables or just a number)
  • Added Default Boon Icon and Keepsake Icon.
  • Fixed Disappearing Icons?
  • Added params to Keepsake and Boons to create CustomStatLines
  • Fix Codex Population
  • Fix TraitSortOrder being populated as an empty table
  • Fix Boon Inheritance
  • Fix Portrait Inheritance
  • Fix Slotted Trait inserts
  • Added ability to create custom text for codex & images.

1.0.8 - 2025-11-19

  • Added iconPathOverrides (table) to CreateOlympianSJSONData allow for reuse of any Icons in the game.
  • Added portraitPathOverrides (table) to CreateOlympianSJSONData allow for reuse of any Portraits in the game.
  • Added iconPathOverrides (table) to CreateKeepsake allow for reuse of any Icons in the game.
  • Added reuseBaseIcons (bool) to CreateBoon allow for reuse of any Icons in the game.
  • Fix Codex "Entity Name".
  • More info in DEV.
  • DEV: Reworked iconPathing - and cleanIconPath func, no longer combines automatically but does a check and combines if needed

1.0.7 - 2025-11-18

  • Added addToExistingGod paramater.
  • Moved code around to do traitdict and traitsortorder to work after all mods loaded.

1.0.6 - 2025-11-17

  • Readme update.

1.0.5 - 2025-11-17

  • Add Default Values to Keepsake Description/Display
  • Slight updates to Params/Dev.
  • Added basic dirty work for Traits/Boons.

1.0.4 - 2025-11-11

  • Fixed Upgrade Choice Screen Text Boons of GodName
  • Fixed Icon Pathing being broken
  • Added Scale and OffsetX/Y to portraits
  • Added optional BoonDrop frames - so you dont have to do 50 frames to get the icon spin
  • DEV: Cleaned up code

1.0.3 - 2025-11-10

  • Added support for Keepsakes.
  • Add check for paths to remove _PLUGIN.guid if passed in the file paths.
  • Added missed flavour text for SJSON.
  • Defs.
  • Update ReadME.

1.0.2 - 2025-11-09

  • No longer need to call gods.Initialize(), just pass the _PLUGIN.guid into SJSON creation.

1.0.1 - 2025-11-07

  • Update ReadME/Params

1.0.0 - 2025-11-07

  • Initial Release.