horsegen: add sp cost to skills

This commit is contained in:
2026-01-10 11:56:07 -05:00
parent 05688a08e2
commit 107a85b384
5 changed files with 431 additions and 423 deletions

View File

@@ -189,6 +189,7 @@ type Skill struct {
GradeValue int
WitCheck bool
Activations [2]SkillActivation
SPCost int
IconID int
Index int
}
@@ -300,8 +301,9 @@ func Skills(ctx context.Context, db *sqlitex.Pool) ([]Skill, error) {
},
},
},
IconID: stmt.ColumnInt(47),
Index: stmt.ColumnInt(48),
SPCost: stmt.ColumnInt(47),
IconID: stmt.ColumnInt(48),
Index: stmt.ColumnInt(49),
}
r = append(r, s)
}