|
763 | 763 | flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE
|
764 | 764 | access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SPECPREP)
|
765 | 765 | assignment = "Rocketeer"
|
766 |
| - rank = JOB_SQUAD_SPECIALIST |
| 766 | + rank = JOB_SQUAD_LOADER |
767 | 767 | paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0)
|
768 | 768 | role_comm_title = "Spc"
|
769 | 769 | skills = /datum/skills/pfc
|
|
772 | 772 | dress_under = list(/obj/item/clothing/under/marine/dress/blues)
|
773 | 773 | dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues)
|
774 | 774 |
|
775 |
| -/datum/equipment_preset/uscm/specialist_equipped/load_status(mob/living/carbon/human/new_human) |
| 775 | +/datum/equipment_preset/uscm/specialist_equipped/loader/load_status(mob/living/carbon/human/new_human) |
776 | 776 | new_human.nutrition = NUTRITION_NORMAL
|
777 | 777 |
|
778 |
| -/datum/equipment_preset/uscm/specialist_equipped/load_gear(mob/living/carbon/human/new_human) |
| 778 | +/datum/equipment_preset/uscm/specialist_equipped/loader/load_gear(mob/living/carbon/human/new_human) |
779 | 779 | new_human.underwear = "Marine Boxers"
|
780 | 780 | new_human.undershirt = "Marine Undershirt"
|
781 | 781 | //back
|
|
814 | 814 | //pockets
|
815 | 815 | new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE)
|
816 | 816 | new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE)
|
| 817 | + GLOB.character_traits[/datum/character_trait/skills/loader].apply_trait(new_human) |
817 | 818 |
|
818 | 819 | if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD])
|
819 | 820 | new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf, WEAR_FACE)
|
|
874 | 875 | new_human.equip_to_slot_or_del(new /obj/item/tool/shovel/etool/folded(new_human), WEAR_IN_BACK)
|
875 | 876 | new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_BACK)
|
876 | 877 | new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen, WEAR_IN_BACK)
|
877 |
| - new_human.equip_to_slot_or_del(new /obj/item/pamphlet/skill/spotter, WEAR_IN_BACK) |
878 | 878 | //face
|
879 | 879 | new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils(new_human), WEAR_L_EAR)
|
880 | 880 | new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/green(new_human), WEAR_L_EAR)
|
|
900 | 900 | //pockets
|
901 | 901 | new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE)
|
902 | 902 | new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE)
|
| 903 | + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) |
903 | 904 |
|
904 | 905 | if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD])
|
905 | 906 | new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf, WEAR_FACE)
|
|
910 | 911 | name = "USCM Scout Sniper, Spotter (Equipped)"
|
911 | 912 | assignment = "Scout Sniper"
|
912 | 913 | role_comm_title = "SctSnpr"
|
| 914 | + rank = JOB_SQUAD_SPOTTER |
913 | 915 | skills = /datum/skills/nco
|
914 | 916 | paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0)
|
915 | 917 |
|
|
923 | 925 | new_human.equip_to_slot_or_del(new /obj/item/tool/shovel/etool/folded(new_human), WEAR_IN_BACK)
|
924 | 926 | new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_BACK)
|
925 | 927 | new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen, WEAR_IN_BACK)
|
926 |
| - new_human.equip_to_slot_or_del(new /obj/item/pamphlet/skill/spotter, WEAR_IN_BACK) |
927 | 928 | //face
|
928 | 929 | new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils(new_human), WEAR_L_EAR)
|
929 | 930 | new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/green(new_human), WEAR_L_EAR)
|
|
949 | 950 | //pockets
|
950 | 951 | new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE)
|
951 | 952 | new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE)
|
| 953 | + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) |
952 | 954 |
|
953 | 955 | if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD])
|
954 | 956 | new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf, WEAR_FACE)
|
|
0 commit comments