diff --git a/game/equipment/full_body/blue_pants.png b/game/equipment/full_body/blue_pants.png new file mode 100644 index 0000000..87190a1 Binary files /dev/null and b/game/equipment/full_body/blue_pants.png differ diff --git a/game/equipment/full_body/cyan_pants.png b/game/equipment/full_body/cyan_pants.png new file mode 100644 index 0000000..5705e0f Binary files /dev/null and b/game/equipment/full_body/cyan_pants.png differ diff --git a/game/equipment/full_body/grey_pants.png b/game/equipment/full_body/grey_pants.png new file mode 100644 index 0000000..5607c63 Binary files /dev/null and b/game/equipment/full_body/grey_pants.png differ diff --git a/game/equipment/full_body/purple_pants.png b/game/equipment/full_body/purple_pants.png new file mode 100644 index 0000000..2fd5ec9 Binary files /dev/null and b/game/equipment/full_body/purple_pants.png differ diff --git a/source/equipment.ads b/source/equipment.ads index 69c79d7..8ae6b98 100644 --- a/source/equipment.ads +++ b/source/equipment.ads @@ -38,7 +38,8 @@ package equipment is black_robe, cyan_robe, lime_dress, magenta_dress, orange_robe, pink_dress, red_robe, sexy_dress, white_robe, lime_robe, orange_hood, fur_helmet, black_hood, cyan_hood, lime_hood, - staff_of_fire, staff_of_air, staff_of_water, staff_of_earth, staff_of_light, staff_of_dark + staff_of_fire, staff_of_air, staff_of_water, staff_of_earth, staff_of_light, staff_of_dark, + cyan_pants, blue_pants, grey_pants, purple_pants ); ------------------------------------------------------------------------------------------ @@ -190,6 +191,10 @@ package equipment is cyan_robe => (new string'("Cyan Robe"), full_body, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none), lime_robe => (new string'("Lime Robe"), full_body, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none), orange_robe => (new string'("Orange Robe"), full_body, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none), + cyan_pants => (new string'("Cyan Pants"), full_body, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none), + blue_pants => (new string'("Blue Pants"), full_body, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none), + grey_pants => (new string'("Grey Pants"), full_body, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none), + purple_pants => (new string'("Purple Pants"), full_body, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none), white_hood => (new string'("White Hood"), head, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none), black_hood => (new string'("Black Hood"), head, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none), red_hood => (new string'("Red Hood"), head, (0, 0, 0, 0, 0, 0), faction.neutral, effect.none),