mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
- Split 'debug' kit to 'debug' and 'admin_cosmetics'
- Add Velorite Admin Bow to 'debug' - Add rings, cape and necklace to cultist kit - Add mushroom curry to 'consumables' (former 'potions')
This commit is contained in:
parent
cdcbebc978
commit
569d0a1ba5
@ -85,6 +85,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Increased agent system target search efficiency speeding up the server
|
||||
- Added more parallelization to terrain serialization and removed extra cloning speeding up the server
|
||||
- Energy now recharges while gliding
|
||||
- Debug Kit is split to "admin_cosmetics" and "debug"
|
||||
- Potion Kit is renamed to "consumables" and gives potions and mushroom curry
|
||||
- Cultist Kit gives cape, rings and necklace in addition to armour and weapons.
|
||||
|
||||
### Removed
|
||||
|
||||
|
@ -1,10 +1,12 @@
|
||||
({
|
||||
"debug": [
|
||||
("common.items.debug.admin_back",1),
|
||||
("common.items.debug.admin_black_hole",1),
|
||||
("common.items.debug.admin_stick",1),
|
||||
("common.items.debug.admin_sword",1),
|
||||
("common.items.debug.velorite_bow_debug", 1),
|
||||
("common.items.debug.admin",1),
|
||||
],
|
||||
"admin_cosmetics": [
|
||||
("common.items.debug.cultist_belt",1),
|
||||
("common.items.debug.cultist_boots",1),
|
||||
("common.items.debug.cultist_chest_blue",1),
|
||||
@ -12,6 +14,7 @@
|
||||
("common.items.debug.cultist_legs_blue",1),
|
||||
("common.items.debug.cultist_shoulder_blue",1),
|
||||
("common.items.debug.dungeon_purple",1),
|
||||
("common.items.debug.admin_back",1),
|
||||
],
|
||||
"cultist": [
|
||||
("common.items.armor.cultist.chest",1),
|
||||
@ -20,6 +23,10 @@
|
||||
("common.items.armor.cultist.foot",1),
|
||||
("common.items.armor.cultist.shoulder",1),
|
||||
("common.items.armor.cultist.belt",1),
|
||||
("common.items.armor.misc.neck.plain_1",1),
|
||||
("common.items.armor.misc.ring.skull",1),
|
||||
("common.items.armor.misc.ring.skull",1),
|
||||
("common.items.armor.misc.back.dungeon_purple",1),
|
||||
("common.items.weapons.hammer.cultist_purp_2h-0",1),
|
||||
("common.items.weapons.staff.cultist_staff",1),
|
||||
("common.items.weapons.sword.cultist",1),
|
||||
@ -27,9 +34,10 @@
|
||||
("common.items.weapons.axe.malachite_axe-0",1),
|
||||
("common.items.weapons.sceptre.sceptre_velorite_0",1),
|
||||
],
|
||||
"potions": [
|
||||
"consumables": [
|
||||
("common.items.consumable.potion_minor", 100),
|
||||
("common.items.consumable.potion_med", 100),
|
||||
("common.items.consumable.potion_big", 100),
|
||||
("common.items.food.apple_mushroom_curry", 100),
|
||||
]
|
||||
})
|
Loading…
Reference in New Issue
Block a user