update: Increase armor cost 60 -> 75

This commit is contained in:
MSWS
2025-12-01 19:26:34 -08:00
parent 43f550779a
commit 0d816facba

View File

@@ -1,7 +1,7 @@
namespace ShopAPI.Configs;
public record ArmorConfig : ShopItemConfig {
public override int Price { get; init; } = 60;
public override int Price { get; init; } = 75;
public int Armor { get; init; } = 100;
public bool Helmet { get; init; } = true;
}