You are viewing a potentially older version of this package. View all versions.
Lily-Lilys_Custom_Costs-1.1.0 icon

Lilys Custom Costs

Currently adds 1 new cost called the soul cost.

By Lily
Date uploaded 2 years ago
Version 1.1.0
Download link Lily-Lilys_Custom_Costs-1.1.0.zip
Downloads 679
Dependency string Lily-Lilys_Custom_Costs-1.1.0

This mod requires the following mods to function

BepInEx-BepInExPack_Inscryption-5.4.1902 icon
BepInEx-BepInExPack_Inscryption

BepInEx pack for Inscryption. Preconfigured and ready to use.

Preferred version: 5.4.1902
API_dev-API-2.18.4 icon
API_dev-API

The de-facto standard core API for all Inscryption mods. This lets you create new cards, abilities, challenges, map nodes, starter decks, and more.

Preferred version: 2.18.4

README

Lily's Custom Costs

This mod adds 1 new cost for people to use.

Costs:

  • Soul Cost: whenever you kill one of your opponent's cards you are granted a soul token, these tokens are removed at the end of each battle.

How to apply these costs to a card

To add any of these costs to a card you just need to add an extended property to that card.

Here are examples of how to do this for each cost with JSONLoader:

"extensionProperties": {
  "SoulCost": "1"
}

And here are examples of how to do this for each cost with c#:

Card.SetExtendedProperty("SoulCost", "1");

Credits

  • bonnibellady, for making the 3d model for the soul token
  • amy7082, for making the cost art for the soul cost

CHANGELOG

v1.1.0

  • fixed a bug where the soul tokens wouldn't be cleared from the board at the end of a battle
  • added a changelog

v1.0.0

  • added the soul cost