Skip to content
Merged
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
2 changes: 1 addition & 1 deletion code/game/objects/structures/roguetown/handcart.dm
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
weight = I.w_class
if(isliving(atom))
var/mob/living/living_atom = atom
weight = arbitrary_living_creature_weight * living_atom.mob_size // small critters take 10 space, human sized takes 20, large takes 30
weight = /*arbitrary_living_creature_weight **/ living_atom.mob_size // small critters take 10 space, human sized takes 20, large takes 30 //Caustic Edit - Commented out the arbitrary weight bit, since the Chomper's size changes account for this without it!
return weight

/obj/structure/handcart/proc/recalculate_capacity()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@

/datum/supply_pack/rogue/light_armor/sewingkit
name = "Sewing Kit"
cost = 40
cost = 20 //Caustic Edit - Lowered cost from 40 to 20
contains = list(/obj/item/repair_kit)

/datum/supply_pack/rogue/light_armor/lightgambeson
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,5 +248,5 @@

/datum/supply_pack/rogue/armor_steel/steel/metalkit
name = "Armor Plates"
cost = 60 // 1 Steel 0.5 iron 1 leather
cost = 35 // 1 Steel 0.5 iron 1 leather //Caustic Edit - Lowering cost down from 60 to 35 so that it's a LOT more reasonably priced to buy this and a Tailor's Kit
contains = list(/obj/item/repair_kit/metal)
2 changes: 1 addition & 1 deletion code/modules/cargo/packsrogue/merchant/merchant_gems.dm
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
///CC Edit
/datum/supply_pack/rogue/gems/reform
name = "Gem of Reformation"
cost = 70
cost = 20 //Lowered cost from 70(?!?!?) to 20, crazy expensive for a scene tool, plus it's cheaper at the Mages College?
contains = list(/obj/item/reformation_gem)

///CC Edit End
Expand Down
Loading