Skip to content

Commit

Permalink
Chitinous boots and gauntlets.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDarklingWolf committed Mar 9, 2013
1 parent c5cad47 commit 3d811b9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
11 changes: 10 additions & 1 deletion crafting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,16 @@ RECIPE(itm_tshirt_fit, CC_ARMOR, "tailor", NULL, 2, 38000, true);

RECIPE(itm_armguard_chitin, CC_ARMOR, "tailor", NULL, 3, 30000, false);
COMP(itm_string_36, 1, itm_string_6, 4, NULL);
COMP(itm_chitin_piece, 2, NULL);
COMP(itm_chitin_piece, 6, NULL);

RECIPE(itm_boots_chitin, CC_ARMOR, "tailor", NULL, 3, 30000, false);
COMP(itm_string_36, 1, itm_string_6, 4, NULL);
COMP(itm_chitin_piece, 4, NULL);
COMP(itm_leather, 2, itm_fur, 2, itm_rag, 2, NULL);

RECIPE(itm_gauntlets_chitin, CC_ARMOR, "tailor", NULL, 3, 30000, false);
COMP(itm_string_36, 1, itm_string_6, 4, NULL);
COMP(itm_chitin_piece, 4, NULL);

RECIPE(itm_helmet_chitin, CC_ARMOR, "tailor", NULL, 6, 60000, false);
COMP(itm_string_36, 1, itm_string_6, 5, NULL);
Expand Down
4 changes: 2 additions & 2 deletions itype.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ itm_wrapper, itm_withered, itm_syringe, itm_fur, itm_leather, itm_superglue,
itm_sneakers, itm_boots, itm_boots_steel, itm_boots_winter, itm_mocassins,
itm_flip_flops, itm_dress_shoes, itm_heels,
itm_sneakers_fit, itm_boots_fit, itm_boots_steel_fit, itm_boots_winter_fit,
itm_dress_shoes_fit, itm_heels_fit,
itm_dress_shoes_fit, itm_heels_fit, itm_boots_chitin,
// Legwear
itm_shorts, itm_shorts_cargo,
itm_jeans, itm_pants, itm_pants_leather, itm_pants_cargo, itm_pants_army, itm_pants_ski,
Expand All @@ -124,7 +124,7 @@ itm_armguard_soft, itm_armguard_hard, itm_armguard_chitin, itm_armguard_metal,
// Gloves
itm_gloves_liner, itm_gloves_light, itm_mittens, itm_gloves_wool, itm_gloves_winter,
itm_gloves_leather, itm_gloves_fingerless, itm_gloves_rubber,
itm_gloves_medical, itm_fire_gauntlets,
itm_gloves_medical, itm_fire_gauntlets, itm_gauntlets_chitin,
// Masks
itm_mask_dust, itm_bandana, itm_scarf, itm_mask_filter, itm_mask_gas,
// Eyewear
Expand Down
9 changes: 9 additions & 0 deletions itypedef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1412,6 +1412,10 @@ ARMOR("heels", 1, 50,C_SHOES, LEATHER, MNULL,
4, 2, 6, -2, 2, 0, 0, 0, 0, 0, mfb(bp_feet), "\
A pair of high heels. Difficult to even walk in.\n\
These high heels are a perfect fit for you.");

ARMOR("chitinous boots",50, 135,C_SHOES, LEATHER, STEEL,
7, 9, 4, -1, 1, 4, 4, 3, 50, 0, mfb(bp_feet), "\
Boots made from the exoskeletons of insects. Light and durable.");

ARMOR("shorts", 70, 180,C_PANTS, COTTON, MNULL,
4, 2, -4, 1, 0, 0, 1, 0, 0, 4, mfb(bp_legs), "\
Expand Down Expand Up @@ -1732,6 +1736,11 @@ A pair of thin latex gloves, designed to limit the spread of disease.");
ARMOR("fire gauntlets", 5, 95,C_GLOVES, LEATHER, MNULL,
3, 5, -2, 2, 6, 1, 2, 5, 40, 0, mfb(bp_hands), "\
A heavy pair of leather gloves, used by firefighters for heat protection.");

ARMOR("chitinous gauntlets", 1, 380,C_HAT, FLESH, MNULL,
// VOL WGT DAM HIT ENC RES CUT ENV WRM STO COVERS
4, 1, 2, -2, 1, 5, 7, 4, 20, 0, mfb(bp_hands), "\
Gauntlets made from the exoskeletons of insects. Very light and durable.");

// NAME RAR PRC COLOR MAT1 MAT2
ARMOR("dust mask", 65, 20,C_MOUTH, COTTON, IRON,
Expand Down

0 comments on commit 3d811b9

Please sign in to comment.