forked from NebulaSS13/Nebula
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NebulaSS13#4126 from MistakeNot4892/feature/shrine
Added shrine and clerics to Shaded Hills.
- Loading branch information
Showing
23 changed files
with
1,725 additions
and
1,164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/obj/item/clothing/suit/mantle | ||
name = "mantle" | ||
desc = "A light garment worn draped over and around the shoulders." | ||
icon = 'icons/clothing/suits/mantle.dmi' | ||
|
||
/obj/item/clothing/suit/mantle/fated | ||
desc = "A heavy, gold-chained mantle." | ||
icon = 'icons/clothing/suits/fated_mantle.dmi' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/decl/department/shaded_hills/shrine | ||
name = "Shrine Attendants" | ||
colour = "#404e68" | ||
display_color = "#8c96c4" | ||
|
||
/datum/job/shaded_hills/shrine | ||
abstract_type = /datum/job/shaded_hills/shrine | ||
department_types = list(/decl/department/shaded_hills/shrine) | ||
skill_points = 20 | ||
|
||
/datum/job/shaded_hills/shrine/keeper | ||
title = "Shrine Keeper" | ||
supervisors = "your vows, and your faith" | ||
description = "You are the leader of the local religious order, living and working within the shrine. You are expected to see to both the spiritual and physical health of the populace, as well as travellers, if they can offer appropriate tithe." | ||
spawn_positions = 1 | ||
total_positions = 1 | ||
outfit_type = /decl/hierarchy/outfit/job/shaded_hills/shrine/keeper | ||
min_skill = list( | ||
SKILL_LITERACY = SKILL_ADEPT, | ||
SKILL_MEDICAL = SKILL_ADEPT, | ||
SKILL_ANATOMY = SKILL_ADEPT, | ||
) | ||
max_skill = list( | ||
SKILL_MEDICAL = SKILL_MAX, | ||
SKILL_ANATOMY = SKILL_MAX, | ||
) | ||
skill_points = 24 | ||
|
||
/obj/abstract/landmark/start/shaded_hills/shrine_keeper | ||
name = "Shrine Keeper" | ||
|
||
/datum/job/shaded_hills/shrine/attendant | ||
title = "Shrine Attendant" | ||
supervisors = "the Shrine Keeper, your vows, and your faith" | ||
description = "You are an acolyte of the local religious order, living and working within the shrine. Under the direction of the shrine keeper, you are expected to tend to the shrine and the grounds, and to produce food or other goods for use or trade to support the clergy." | ||
spawn_positions = 2 | ||
total_positions = 2 | ||
outfit_type = /decl/hierarchy/outfit/job/shaded_hills/shrine | ||
min_skill = list( | ||
SKILL_STONEMASONRY = SKILL_BASIC, | ||
SKILL_CARPENTRY = SKILL_BASIC, | ||
SKILL_TEXTILES = SKILL_BASIC, | ||
SKILL_COOKING = SKILL_BASIC, | ||
SKILL_BOTANY = SKILL_BASIC, | ||
SKILL_ATHLETICS = SKILL_ADEPT, | ||
SKILL_MEDICAL = SKILL_ADEPT, | ||
SKILL_ANATOMY = SKILL_ADEPT, | ||
) | ||
max_skill = list( | ||
SKILL_COOKING = SKILL_EXPERT, | ||
SKILL_BOTANY = SKILL_EXPERT, | ||
SKILL_MEDICAL = SKILL_EXPERT, | ||
SKILL_ANATOMY = SKILL_EXPERT, | ||
) | ||
|
||
/obj/abstract/landmark/start/shaded_hills/shrine_attendant | ||
name = "Shrine Attendant" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/decl/hierarchy/outfit/job/shaded_hills/shrine | ||
name = "Shaded Hills - Shrine Attendant" | ||
uniform = /obj/item/clothing/suit/robe | ||
shoes = /obj/item/clothing/shoes/sandal | ||
|
||
/decl/hierarchy/outfit/job/shaded_hills/shrine/keeper | ||
name = "Shaded Hills - Shrine Keeper" | ||
suit = /obj/item/clothing/suit/mantle | ||
mask = /obj/item/clothing/neck/necklace/prayer_beads/basalt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.