Skip to content

Commit

Permalink
shiv cheese
Browse files Browse the repository at this point in the history
  • Loading branch information
boardengineer committed Jan 5, 2024
1 parent fcc5b9e commit 062b857
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/main/java/twitch/cheese/CheeseOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import com.megacrit.cardcrawl.cards.colorless.*;
import com.megacrit.cardcrawl.cards.curses.Pride;
import com.megacrit.cardcrawl.cards.green.Alchemize;
import com.megacrit.cardcrawl.cards.green.BladeDance;
import com.megacrit.cardcrawl.cards.green.Burst;
import com.megacrit.cardcrawl.cards.green.Nightmare;
import com.megacrit.cardcrawl.cards.purple.LessonLearned;
Expand Down Expand Up @@ -194,7 +195,7 @@ public class CheeseOptions {
addRelic(new PrismaticShard().makeCopy());
}, true));

put("forscience", new CheeseController.CheeseConfig("forscience", () -> {
put("forsciencetwo", new CheeseController.CheeseConfig("forsciencetwo", () -> {
addCard(new LessonLearned().makeCopy());
addCard(new SearingBlow().makeCopy());

Expand Down Expand Up @@ -273,6 +274,13 @@ public class CheeseOptions {

addCard(new Alchemize().makeCopy());
}, true));


put("styxandstones", new CheeseController.CheeseConfig("styxandstones", () -> {
addRelic(new CharonsAshes().makeCopy());
addRelic(new Kunai().makeCopy());
addCard(new BladeDance().makeCopy());
}, true));
}};

private static void addRelic(AbstractRelic relic) {
Expand Down

0 comments on commit 062b857

Please sign in to comment.