Skip to content

Commit 04333ef

Browse files
committed
Price adjustments
1 parent 462ed92 commit 04333ef

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Scenes/ShopScene/Scripts/ShopScene.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public partial class ShopScene : Control
5858

5959
private ButtonGroup _bGroup;
6060

61-
private readonly int[] _priceByRarity = [100, 90, 80, 70, 60, 50, 9];
62-
const int NoteCost = 45;
61+
private readonly int[] _priceByRarity = [200, 180, 160, 140, 120, 100, 18];
62+
const int NoteCost = 90;
6363

6464
private List<ShopItem> _shopItems = new List<ShopItem>();
6565

@@ -251,7 +251,7 @@ private void ChangeDescription(IDisplayable displayable)
251251
_descriptionLabel.Text = Tr(type + name + "_NAME") + ": " + Tr(type + name + "_TOOLTIP");
252252
}
253253

254-
private const int RemovalCost = 50;
254+
private const int RemovalCost = 75;
255255
private bool _hasRemoved;
256256

257257
private void OpenRemovalPane()
@@ -331,7 +331,7 @@ private void RemoveNote()
331331
}
332332

333333
private bool _hasHealed;
334-
private const int HealCost = 30;
334+
private const int HealCost = 50;
335335
private int _healAmount = (StageProducer.PlayerStats.MaxHealth / 4);
336336

337337
private void UpdateHealButton()

0 commit comments

Comments
 (0)