Added Change Lion Count event to Clappy Trio

1-8 lions thats crazy
This commit is contained in:
Carson Kompon
2022-02-28 20:11:01 -05:00
parent 48b83faa68
commit 5d99596c67
2 changed files with 17 additions and 0 deletions

View File

@ -211,6 +211,10 @@ namespace RhythmHeavenMania
new GameAction("bop", delegate { ClappyTrio.instance.Bop(eventCaller.currentEntity.beat); } ),
new GameAction("prepare", delegate { ClappyTrio.instance.Prepare(0); } ),
new GameAction("prepare_alt", delegate { ClappyTrio.instance.Prepare(3); } ),
new GameAction("change lion count", delegate { ClappyTrio.instance.ChangeLionCount((int)eventCaller.currentEntity.valA); }, 0.5f, false, new List<Param>()
{
new Param("valA", new EntityTypes.Integer(1, 8, 3), "Lion Count")
}),
}),
new Minigame("spaceball", "Spaceball", "00A518", false, false, new List<GameAction>()
{