Skip to content

Commit

Permalink
Fixes Greek and Italian SLs
Browse files Browse the repository at this point in the history
Greeks are missing an officer role though...
  • Loading branch information
savethetreez committed Apr 13, 2024
1 parent fcfe422 commit 7f6a4e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
9 changes: 3 additions & 6 deletions code/modules/1713/jobs/greek.dm
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,16 @@
give_random_name(H)
return TRUE

/// WW2 ///

/datum/job/greek/squad_leader_ww2
title = "Dekaneas"
en_meaning = "Squad Leader"
rank_abbreviation = "Di."

spawn_location = "JoinLateGR"
is_squad_leader = TRUE
uses_squads = TRUE
is_ww2 = TRUE

min_positions = 2
Expand Down Expand Up @@ -211,8 +214,6 @@
H.setStat("pistol", STAT_NORMAL)
H.setStat("bows", STAT_NORMAL)
H.setStat("medical", STAT_MEDIUM_LOW)


return TRUE

/datum/job/greek/soldier_ww2
Expand Down Expand Up @@ -275,8 +276,6 @@
H.setStat("pistol", STAT_NORMAL)
H.setStat("bows", STAT_NORMAL)
H.setStat("medical", STAT_MEDIUM_LOW)


return TRUE

/datum/job/greek/medic_ww2
Expand Down Expand Up @@ -329,6 +328,4 @@
H.setStat("pistol", STAT_NORMAL)
H.setStat("bows", STAT_NORMAL)
H.setStat("medical", STAT_MEDIUM_LOW)


return TRUE
6 changes: 4 additions & 2 deletions code/modules/1713/jobs/italian.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,20 @@
H.name = H.species.get_random_italian_name(H.gender)
H.real_name = H.name

/datum/job/italian/squad_leader
/datum/job/italian/officer
title = "Tenente"
en_meaning = "Officer"
rank_abbreviation = "Ten."

spawn_location = "JoinLateIT"
is_officer = TRUE
whitelisted = TRUE
is_commander = TRUE

min_positions = 1
max_positions = 1

/datum/job/italian/squad_leader/equip(var/mob/living/human/H)
/datum/job/italian/officer/equip(var/mob/living/human/H)
if (!H) return FALSE
//shoes
H.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(H), slot_shoes)
Expand Down Expand Up @@ -56,6 +57,7 @@

spawn_location = "JoinLateIT"
is_squad_leader = TRUE
uses_squads = TRUE
is_ww2 = TRUE

min_positions = 2
Expand Down

0 comments on commit 7f6a4e7

Please sign in to comment.