-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made settings for disabling certain cards. Easier than expected.
- Loading branch information
1 parent
91d3c5d
commit fee7809
Showing
26 changed files
with
591 additions
and
592 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/main/java/com/megacrit/cardcrawl/mod/replay/modifiers/HoneycakeModifier.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.megacrit.cardcrawl.mod.replay.modifiers; | ||
|
||
import com.megacrit.cardcrawl.core.CardCrawlGame; | ||
import com.megacrit.cardcrawl.daily.mods.AbstractDailyMod; | ||
import com.megacrit.cardcrawl.helpers.ImageMaster; | ||
import com.megacrit.cardcrawl.localization.RunModStrings; | ||
import com.megacrit.cardcrawl.mod.replay.relics.HoneyJar; | ||
|
||
import HalationCode.relics.ddlc.CatFaceCupcake; | ||
|
||
public class HoneycakeModifier extends AbstractDailyMod | ||
{ | ||
public static final String ID = "replay:honeycakes"; | ||
private static final RunModStrings modStrings = CardCrawlGame.languagePack.getRunModString(ID); | ||
public static final String NAME = modStrings.NAME; | ||
public static final String DESC = modStrings.DESCRIPTION; | ||
|
||
public HoneycakeModifier() { | ||
super(ID, NAME, DESC, null, true);//DESC.replaceAll("{A}", (new HoneyJar()).name).replaceAll("{B}", (new CatFaceCupcake()).name) | ||
this.img = ImageMaster.loadImage("images/relics/cursedBlood.png"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.