horsegen: add sp cost to skills
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user