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