horsegen: generate inherited skills

This commit is contained in:
2026-01-10 22:26:19 -05:00
parent 107a85b384
commit fae0fa7699
6 changed files with 806 additions and 456 deletions

View File

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