Skip to content

Commit

Permalink
Tune a couple last things
Browse files Browse the repository at this point in the history
  • Loading branch information
benfrankel committed Jul 29, 2024
1 parent 81a8ec6 commit 15e0fdb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions assets/config/actor.ron
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

attack: Attack(color: Srgba(Srgba(red: 0.929, green: 0.557, blue: 0.576, alpha: 1.000))),
health: Health(current: 10, max: 10),
xp_reward: 5,
xp_reward: 6,
deck: Deck(cards: ["eighth_note", "step"]),
),

Expand All @@ -88,7 +88,7 @@

attack: Attack(color: Srgba(Srgba(red: 0.694, green: 0.529, blue: 0.788, alpha: 1.000))),
health: Health(current: 15, max: 15),
xp_reward: 10,
xp_reward: 12,
deck: Deck(cards: ["step", "step", "step", "pair"]),
),

Expand All @@ -112,7 +112,7 @@

attack: Attack(color: Srgba(Srgba(red: 0.424, green: 0.694, blue: 0.725, alpha: 1.000))),
health: Health(current: 25, max: 25),
xp_reward: 15,
xp_reward: 17,
deck: Deck(cards: ["step", "quarter_note", "eighth_rest", "pair"]),
),

Expand All @@ -136,7 +136,7 @@

attack: Attack(color: Srgba(Srgba(red: 0.557, green: 0.722, blue: 0.518, alpha: 1.000))),
health: Health(current: 40, max: 40),
xp_reward: 20,
xp_reward: 22,
deck: Deck(cards: ["quarter_note", "quarter_note", "quarter_note", "ballet"]),
),

Expand All @@ -160,7 +160,7 @@

attack: Attack(color: Srgba(Srgba(red: 0.827, green: 0.761, blue: 0.537, alpha: 1.000))),
health: Health(current: 60, max: 60),
xp_reward: 40,
xp_reward: 38,
deck: Deck(cards: ["step", "quarter_rest", "cartwheel", "half_note"]),
),
},
Expand Down
Binary file added assets/mockup/ballet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/game/actor/level/up.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fn play_level_up_sfx(audio: Res<Audio>, assets: Res<PlayingAssets>) {

fn heal_on_level_up(mut player_query: Query<&mut Health, With<IsPlayer>>) {
for mut health in &mut player_query {
health.max += 25.0;
health.max += 15.0;
health.current = health.max;
}
}

0 comments on commit 15e0fdb

Please sign in to comment.