

A mod to simplify the Method of making Giant cards in both Jsonloader and C-Sharp. :)
{
"giantCards": [
{
"name": "Example", => name of the Card (include the ModPrefix)
"texture": "example.png" => texture that you want the Giant Card to be
}
]
}
public void AddTest()
{
CardInfo info = CardManager.New(
// Card ID Prefix
modPrefix: "TestTest",
// Card internal name.
"TestiusBigBallius",
// Card display name.
"IDunnoBigBalls",
// Attack.
1,
// Health.
200,
// Descryption.
description: "Test Purposes only."
)
.SetCost(0, 0, 0, null)
.AddAbilities(Ability.AllStrike, Ability.MadeOfStone, Ability.Sharp, Ability.Reach)
.AddTraits(Trait.Giant)
.AddSpecialAbilities(SpecialTriggeredAbility.GiantCard)
.AddAppearances(CardAppearanceBehaviour.Appearance.GiantAnimatedPortrait)
;
CardManager.Add("TestTest", info);
info.animatedPortrait = CreateGiantCard(LoadYourTextureHere);
}
the important part being this:
info.animatedPortrait = CreateGiantCard(LoadYourTextureHere);
v 0.0.1