Skip to content

Commit

Permalink
Fix icon and sort order
Browse files Browse the repository at this point in the history
Make brains use tier appropriate icons
Make T2 parts sort after T1
  • Loading branch information
KiwiHawk committed Jun 16, 2024
1 parent b995752 commit 3f9dede
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions bobclasses/prototypes/parts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ data:extend({
{
type = "item",
name = "player-brain",
icon = "__bobclasses__/icons/bodies/brain.png",
icon = "__bobclasses__/icons/bodies/brain-2.png",
icon_size = 32,
subgroup = "body-parts",
order = "a[player]-brain",
Expand Down Expand Up @@ -131,10 +131,10 @@ data:extend({
{
type = "item",
name = "player-brain-2",
icon = "__bobclasses__/icons/bodies/brain.png",
icon = "__bobclasses__/icons/bodies/brain-3.png",
icon_size = 32,
subgroup = "body-parts",
order = "a[player]-brain",
order = "a[player]-brain-2",
stack_size = 100,
},
{
Expand All @@ -143,7 +143,7 @@ data:extend({
icon = "__bobclasses__/icons/bodies/head.png",
icon_size = 32,
subgroup = "body-parts",
order = "a[player]-head",
order = "a[player]-head-2",
stack_size = 20,
},
{
Expand All @@ -152,7 +152,7 @@ data:extend({
icon = "__bobclasses__/icons/bodies/boots.png",
icon_size = 45,
subgroup = "body-parts",
order = "a[player]-boots",
order = "a[player]-boots-2",
stack_size = 20,
},
{
Expand All @@ -161,7 +161,7 @@ data:extend({
icon = "__bobclasses__/icons/bodies/gloves.png",
icon_size = 45,
subgroup = "body-parts",
order = "a[player]-gloves",
order = "a[player]-gloves-2",
stack_size = 20,
},
{
Expand All @@ -170,7 +170,7 @@ data:extend({
icon = "__bobclasses__/icons/bodies/shell.png",
icon_size = 128,
subgroup = "body-parts",
order = "a[player]-power-core",
order = "a[player]-power-core-2",
stack_size = 20,
},

Expand Down

0 comments on commit 3f9dede

Please sign in to comment.