From daeb5011d77578296a30b0e79d9ef53285d517d6 Mon Sep 17 00:00:00 2001 From: Lucas Gracioso Date: Tue, 11 Feb 2025 07:37:31 -0300 Subject: [PATCH 1/2] Add helmet, armor and cloak on armor.json and item_names.json Signed-off-by: Lucas Gracioso --- items/armor/armor.json | 32 +++++++++++++++++++++++++++++++- items/item_names.json | 14 +++++++++++++- 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/items/armor/armor.json b/items/armor/armor.json index df8dde82..ddd470ca 100644 --- a/items/armor/armor.json +++ b/items/armor/armor.json @@ -2468,5 +2468,35 @@ "speed": 100, "stamina_regen": 100, "passive": 0 + }, + "@TODO - Armor itemID": { + "name": "B-22 Model Citizen", + "description": "Gifted to Helldivers whose civilian lives were distinguished by exemplary citizenship, patriotism, and service to the Federation.", + "type": 1, + "slot": 2, + "armor_rating": 100, + "speed": 500, + "stamina_regen": 100, + "passive": 9 + }, + "@TODO - Helmet itemID": { + "name": "B-22 Model Citizen", + "description": "Gifted to Helldivers whose civilian lives were distinguished by exemplary citizenship, patriotism, and service to the Federation.", + "type": 1, + "slot": 0, + "armor_rating": 100, + "speed": 100, + "stamina_regen": 100, + "passive": 0 + }, + "@TODO - Cloak itemID": { + "name": "Eye of Freedom", + "description": "A mark of stalwart loyalty bestowed only to those who have proved themselves worthy through unquestioning dedication.", + "type": 1, + "slot": 1, + "armor_rating": 100, + "speed": 100, + "stamina_regen": 100, + "passive": 0 } -} \ No newline at end of file +} diff --git a/items/item_names.json b/items/item_names.json index 2db816cc..c81e9e41 100644 --- a/items/item_names.json +++ b/items/item_names.json @@ -1638,5 +1638,17 @@ "22": { "name": "Concrete Jungle Exosuit Pattern", "mix_id": "22" + }, + "@TODO - Armor itemID": { + "name": "B-22 Model Citizen", + "mix_id": "@TODO - Armor itemID" + }, + "@TODO - Helmet itemID": { + "name": "B-22 Model Citizen", + "mix_id": "@TODO - Helmet itemID" + }, + "@TODO - Cloak itemID": { + "name": "Eye of Freedom", + "mix_id": "@TODO - Cloak itemID" } -} \ No newline at end of file +} From 70c35beda4704af8b735427b68631d83699bf4a6 Mon Sep 17 00:00:00 2001 From: Lucas Gracioso Date: Tue, 11 Feb 2025 09:36:33 -0300 Subject: [PATCH 2/2] refactor: Use 'unused IDs' instead of leaving '@TODOs' Signed-off-by: Lucas Gracioso --- items/armor/armor.json | 6 +++--- items/item_names.json | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/items/armor/armor.json b/items/armor/armor.json index ddd470ca..fa9761fa 100644 --- a/items/armor/armor.json +++ b/items/armor/armor.json @@ -2469,7 +2469,7 @@ "stamina_regen": 100, "passive": 0 }, - "@TODO - Armor itemID": { + "200": { "name": "B-22 Model Citizen", "description": "Gifted to Helldivers whose civilian lives were distinguished by exemplary citizenship, patriotism, and service to the Federation.", "type": 1, @@ -2479,7 +2479,7 @@ "stamina_regen": 100, "passive": 9 }, - "@TODO - Helmet itemID": { + "201": { "name": "B-22 Model Citizen", "description": "Gifted to Helldivers whose civilian lives were distinguished by exemplary citizenship, patriotism, and service to the Federation.", "type": 1, @@ -2489,7 +2489,7 @@ "stamina_regen": 100, "passive": 0 }, - "@TODO - Cloak itemID": { + "202": { "name": "Eye of Freedom", "description": "A mark of stalwart loyalty bestowed only to those who have proved themselves worthy through unquestioning dedication.", "type": 1, diff --git a/items/item_names.json b/items/item_names.json index c81e9e41..e1735df1 100644 --- a/items/item_names.json +++ b/items/item_names.json @@ -1639,16 +1639,16 @@ "name": "Concrete Jungle Exosuit Pattern", "mix_id": "22" }, - "@TODO - Armor itemID": { + "200": { "name": "B-22 Model Citizen", - "mix_id": "@TODO - Armor itemID" + "mix_id": "200" }, - "@TODO - Helmet itemID": { + "201": { "name": "B-22 Model Citizen", - "mix_id": "@TODO - Helmet itemID" + "mix_id": "201" }, - "@TODO - Cloak itemID": { + "202": { "name": "Eye of Freedom", - "mix_id": "@TODO - Cloak itemID" + "mix_id": "202" } }