adjustment

This commit is contained in:
guiyomu-dev
2026-02-13 12:34:48 +01:00
parent 52f9079ba1
commit 828db2029f
12 changed files with 226 additions and 97 deletions

View File

@@ -120,7 +120,11 @@ type Drop struct {
}
func (i Item) Desc() item.Description {
return item.Desc[i.ID]
id := i.ID
if item.ExpChar >= 3 && id >= item.ExpCharItemIDThreshold {
id += item.ExpCharItemIDOffset
}
return item.Desc[id]
}
func (i Item) Type() item.Type {