Merge pull request #2523 from redstryker/Shooo!SHOOO!

Shoes
This commit is contained in:
Anewbe
2016-09-21 17:23:36 -05:00
committed by GitHub
7 changed files with 40 additions and 1 deletions

View File

@@ -13,6 +13,10 @@
display_name = "workboots"
path = /obj/item/clothing/shoes/workboots
/datum/gear/shoes/workboots/toeless
display_name = "toe-less workboots"
path = /obj/item/clothing/shoes/workboots/toeless
/datum/gear/shoes/sandals
display_name = "sandals"
path = /obj/item/clothing/shoes/sandal
@@ -102,5 +106,21 @@
path = /obj/item/clothing/shoes/flipflop
/datum/gear/shoes/flipflops/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
/datum/gear/shoes/athletic
display_name = "athletic shoes"
path = /obj/item/clothing/shoes/athletic
/datum/gear/shoes/athletic/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
/datum/gear/shoes/skater
display_name = "skater shoes"
path = /obj/item/clothing/shoes/skater
/datum/gear/shoes/skater/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)

View File

@@ -29,4 +29,11 @@
icon_state = "workboots"
armor = list(melee = 40, bullet = 0, laser = 0, energy = 15, bomb = 20, bio = 0, rad = 20)
siemens_coefficient = 0.7
can_hold_knife = 1
can_hold_knife = 1
/obj/item/clothing/shoes/workboots/toeless
name = "toe-less workboots"
desc = "A pair of toeless work boots designed for use in industrial settings. Modified for species whose toes have claws."
icon_state = "workbootstoeless"
item_state_slots = list(slot_r_hand_str = "workboots", slot_l_hand_str = "workboots")
species_restricted = null

View File

@@ -205,3 +205,15 @@
name = "flip flops"
desc = "A pair of foam flip flops. For those not afraid to show a little ankle."
icon_state = "thongsandal"
/obj/item/clothing/shoes/athletic
name = "athletic shoes"
desc = "A pair of sleek atheletic shoes. Made by and for the sporty types."
icon_state = "sportshoe"
item_state_slots = list(slot_r_hand_str = "sportheld", slot_l_hand_str = "sportheld")
/obj/item/clothing/shoes/skater
name = "skater shoes"
desc = "A pair of wide shoes with thick soles. Designed for skating."
icon_state = "skatershoe"
item_state_slots = list(slot_r_hand_str = "skaterheld", slot_l_hand_str = "skaterheld")