update belt data

This commit is contained in:
vietdungdev
2026-05-30 19:49:47 +07:00
parent c2be2c1816
commit 439bf27cb2

View File

@@ -30,14 +30,16 @@ func (b Belt) GetFirstPotion(potionType PotionType) (Position, bool) {
func (b Belt) Rows() int { func (b Belt) Rows() int {
switch b.Name { switch b.Name {
case "":
return 1
case "Sash", "LightBelt": case "Sash", "LightBelt":
return 2 return 2
case "Belt", "HeavyBelt": case "Belt", "HeavyBelt":
return 3 return 3
default: case "PlatedBelt",
"DemonhideSash", "SharkskinBelt", "MeshBelt", "BattleBelt", "WarBelt",
"SpiderwebSash", "VampirefangBelt", "MithrilCoil", "TrollBelt", "ColossusGirdle":
return 4 return 4
default:
return 1
} }
} }