Skip to content

Commit

Permalink
Traits
Browse files Browse the repository at this point in the history
  • Loading branch information
Enite committed Jan 14, 2025
1 parent 804df82 commit 25d3f79
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions code/modules/roguetown/roguestock/import.dm
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,50 @@
new /obj/item/perfume/random(src)
new /obj/item/perfume/random(src)

/datum/roguestock/import/mediumarmor
name = "Fragment of the Old Guard"
desc = "A magic crystal that gifts the skills needed to wear medium armor."
item_type = /obj/structure/closet/crate/chest/steward/mediumarmor
export_price = 150
importexport_amt = 1

/obj/structure/closet/crate/chest/steward/mediumarmor/Initialize()
. = ..()
new /obj/item/book/granter/trait/defense/mediumarmor(src)

/datum/roguestock/import/heavyarmor
name = "Fragment of the Forgotten Knight"
desc = "A magic crystal that gifts the skills needed to wear heavy armor."
item_type = /obj/structure/closet/crate/chest/steward/heavyarmor
export_price = 250
importexport_amt = 1

/obj/structure/closet/crate/chest/steward/heavyarmor/Initialize()
. = ..()
new /obj/item/book/granter/trait/defense/heavyarmor(src)

/datum/roguestock/import/acrobat
name = "Fragment of the Acrobat"
desc = "A magic crystal that makes one more nimble."
item_type = /obj/structure/closet/crate/chest/steward/acrobat
export_price = 200
importexport_amt = 1

/obj/structure/closet/crate/chest/steward/acrobat/Initialize()
. = ..()
new /obj/item/book/granter/trait/acrobat(src)

/datum/roguestock/import/bogtrek
name = "Fragment of the Swamp"
desc = "A magic crystal that helps in quickly navigating muddy terrain."
item_type = /obj/structure/closet/crate/chest/steward/bogtrek
export_price = 150
importexport_amt = 1

/obj/structure/closet/crate/chest/steward/bogtrek/Initialize()
. = ..()
new /obj/item/book/granter/trait/mobility/bogtrek(src)

/datum/roguestock/import/knight
name = "Knight Equipment Crate"
desc = "Kit for a Knight."
Expand Down

0 comments on commit 25d3f79

Please sign in to comment.