mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Removed placeholder abilities, tweaked migration.
This commit is contained in:
parent
745cc20c66
commit
e662946130
@ -6,32 +6,13 @@
|
|||||||
secondary: "common.abilities.sword.dash",
|
secondary: "common.abilities.sword.dash",
|
||||||
abilities: [
|
abilities: [
|
||||||
(Some(Sword(UnlockSpin)), "common.abilities.sword.spin"),
|
(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): (
|
Tool(Axe): (
|
||||||
primary: "common.abilities.axe.doublestrike",
|
primary: "common.abilities.axe.doublestrike",
|
||||||
secondary: "common.abilities.axe.spin",
|
secondary: "common.abilities.axe.spin",
|
||||||
abilities: [
|
abilities: [
|
||||||
// (Some(Axe(UnlockLeap)), "common.abilities.axe.leap"),
|
(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"),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
Tool(Hammer): (
|
Tool(Hammer): (
|
||||||
|
@ -8,5 +8,5 @@ CREATE TABLE "ability_set" (
|
|||||||
|
|
||||||
-- Inserts starting ability sets for everyone
|
-- Inserts starting ability sets for everyone
|
||||||
INSERT INTO ability_set
|
INSERT INTO ability_set
|
||||||
SELECT c.character_id, 'Empty'
|
SELECT c.character_id, '[]'
|
||||||
FROM character c
|
FROM character c
|
||||||
|
Loading…
Reference in New Issue
Block a user