

Are you tired of those boring old squirrels? Have I got the thing for you...
This mod comes with six different starter decks to select from:
There's also a hook to allow you or others to add more sidedeck cards to the pool; see below.
As with most mods, you need BepInEx installed.
You will also need the API installed, and the super helpful Health for Ants mod as well.
The zip file should be structured in the same way as your Inscryption root directory. Just drop the 'BepInEx' folder into your Inscryption directory and you're golden.
You need to add a specific trait to your card. There of course isn't a trait for 'sidedeck' card, so we have to make one up. C# is weird; traits are enumerated, but you're allowed to cast any integer to an enum and it won't complain. In this case, the specific trait number you need is '5103'.
Why 5103? SIDE. 5103. Do you see it? They look...somewhat similar. And hopefully now that you've seen it, you'll remember it in the future.
Just add '(Trait)5103' to your card, and it will get picked up by this mod and be a valid sidedeck card.
Example code:
NewCard.Add(
"Sample_Card_ID",
"Dummy Card",
0, 1,
new List<CardMetaCategory>() { },
CardComplexity.Vanilla,
CardTemple.Nature,
"This is an example of a sidedeck card",
defaultTex: myTexture,
traits: new List<Trait>() { (Trait)5103 }
);
Note: If there are more than 12 possible side deckcards in the pool, 12 will be selected at random for you to choose from when you encounter the sidedeck node at the start of the game.
Open the BepInEx config file for this mod (zorro.inscryption.infiniscryption.sidedecks.cfg) and set 'PullFromCardPool' to false. It will then only give you the cards added specifically in this mod.
1.1
1.0
Thanks to everyone on the Inscryption modding discord for all of their feedback and ideas on starter deck cards. I would love ideas for more decks and feedback on these cards - ping me on the discord @divisionbyzorro.