Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shaded Hills Beggar Knight changes #4225

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion maps/shaded_hills/jobs/visitors.dm
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,16 @@
name = "Itinerant Scholar"

/datum/job/shaded_hills/visitor/beggar_knight
title = "Beggar Knight"
title = "Beggar Knight, Shortsword and Shield"
supervisors = "your vows"
description = "You are a wandering swordmaster sworn to a vow of poverty, with nothing to your name but the armour on your back and the blade at your hip. Beggar knights are tolerated due to their martial prowess, and are usually paid with food or new equipment as they are avowed against carrying coin."
spawn_positions = 2
total_positions = 2
economic_power = 0 //vowed against carrying money
outfit_type = /decl/hierarchy/outfit/job/shaded_hills/beggar_knight
alt_titles = list(
"Beggar Knight, Longsword" = /decl/hierarchy/outfit/job/shaded_hills/beggar_knight/longsword,
)
min_skill = list(
SKILL_WEAPONS = SKILL_ADEPT,
SKILL_ATHLETICS = SKILL_ADEPT,
Expand Down
14 changes: 13 additions & 1 deletion maps/shaded_hills/outfits/visitors.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,21 @@
name = "Shaded Hills - Traveller"

/decl/hierarchy/outfit/job/shaded_hills/beggar_knight
name = "Shaded Hills - Beggar Knight"
name = "Shaded Hills - Beggar Knight, Shortsword and Shield"
suit = /obj/item/clothing/suit/armor/forged/banded
belt = /obj/item/bladed/shortsword
hands = list(/obj/item/shield/buckler)
backpack_contents = list(
/obj/item/stack/medical/bruise_pack/bandage/five = 1,
/obj/item/stack/medical/ointment/poultice/five = 1,
/obj/item/chems/waterskin/crafted/wine = 1
)

/decl/hierarchy/outfit/job/shaded_hills/beggar_knight/longsword
name = "Shaded Hills - Beggar Knight, Longsword"
suit = /obj/item/clothing/suit/armor/forged/banded
belt = /obj/item/bladed/longsword
hands = list()
backpack_contents = list(
/obj/item/stack/medical/bruise_pack/bandage/five = 1,
/obj/item/stack/medical/ointment/poultice/five = 1,
Expand Down
Loading