Removed placeholder abilities, tweaked migration.

This commit is contained in:
Sam 2021-12-28 13:17:18 -05:00
parent 745cc20c66
commit e662946130
2 changed files with 2 additions and 21 deletions

View File

@ -6,32 +6,13 @@
secondary: "common.abilities.sword.dash",
abilities: [
(Some(Sword(UnlockSpin)), "common.abilities.sword.spin"),
// TODO: Remove these
(Some(Axe(UnlockLeap)), "common.abilities.axe.leap"),
(Some(Hammer(UnlockLeap)), "common.abilities.hammer.leap"),
(Some(Hammer(UnlockLeap)), "common.abilities.hammer.leap"),
(Some(Axe(UnlockLeap)), "common.abilities.axe.leap"),
(Some(Sword(UnlockSpin)), "common.abilities.sword.spin"),
(Some(Sword(UnlockSpin)), "common.abilities.sword.spin"),
(Some(Axe(UnlockLeap)), "common.abilities.axe.leap"),
(Some(Hammer(UnlockLeap)), "common.abilities.hammer.leap"),
],
),
Tool(Axe): (
primary: "common.abilities.axe.doublestrike",
secondary: "common.abilities.axe.spin",
abilities: [
// (Some(Axe(UnlockLeap)), "common.abilities.axe.leap"),
// TODO: Remove these
(Some(Bow(UnlockShotgun)), "common.abilities.bow.shotgun"),
(Some(Staff(UnlockShockwave)), "common.abilities.staff.fireshockwave"),
(Some(Sceptre(UnlockAura)), "common.abilities.sceptre.wardingaura"),
(Some(Sceptre(UnlockAura)), "common.abilities.sceptre.wardingaura"),
(Some(Staff(UnlockShockwave)), "common.abilities.staff.fireshockwave"),
(Some(Bow(UnlockShotgun)), "common.abilities.bow.shotgun"),
(Some(Bow(UnlockShotgun)), "common.abilities.bow.shotgun"),
(Some(Staff(UnlockShockwave)), "common.abilities.staff.fireshockwave"),
(Some(Sceptre(UnlockAura)), "common.abilities.sceptre.wardingaura"),
(Some(Axe(UnlockLeap)), "common.abilities.axe.leap"),
],
),
Tool(Hammer): (

View File

@ -8,5 +8,5 @@ CREATE TABLE "ability_set" (
-- Inserts starting ability sets for everyone
INSERT INTO ability_set
SELECT c.character_id, 'Empty'
SELECT c.character_id, '[]'
FROM character c