Skip to content

Commit

Permalink
*sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
i1yadobr committed May 30, 2024
1 parent 4f1b61d commit 77c5498
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion code/datums/trading/goods.dm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
)

possible_wanted_items = list(/obj/item/toy/figure/ert = TRADER_THIS_TYPE,
/obj/item/toy/prize/honk = TRADER_THIS_TYPE
/obj/item/toy/prize/honk = TRADER_THIS_TYPE,
/obj/item/material/coin = TRADER_SUBTYPES_ONLY
)

possible_trading_items = list(/obj/item/toy/prize = TRADER_SUBTYPES_ONLY,
Expand Down
4 changes: 3 additions & 1 deletion code/datums/trading/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
/obj/item/device/dociler = TRADER_THIS_TYPE,
/obj/structure/dogbed = TRADER_THIS_TYPE,
/obj/item/device/metroid_scanner = TRADER_THIS_TYPE,
/obj/item/lazarus_injector = TRADER_THIS_TYPE
/obj/item/lazarus_injector = TRADER_THIS_TYPE,
/obj/item/metroid_cookie = TRADER_SUBTYPES_ONLY
)

/datum/trader/ship/pet_shop/New()
Expand Down Expand Up @@ -110,6 +111,7 @@
/obj/item/grenade/spawnergrenade/fake_carp = TRADER_THIS_TYPE,
/obj/item/clothingbag = TRADER_SUBTYPES_ONLY,
/obj/item/toy/pig = TRADER_THIS_TYPE,
/obj/item/balloon_box = TRADER_THIS_TYPE,
/obj/item/reagent_containers/vessel/paint/random = TRADER_THIS_TYPE,
/obj/item/reagent_containers/vessel/paint/white = TRADER_THIS_TYPE,
/obj/item/reagent_containers/vessel/bottle/bottleofnothing = TRADER_THIS_TYPE,
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/items/storage/pill_bottle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@

/obj/item/storage/pill_bottle/oxycodone
name = "pill bottle (oxycodone)"
desc = "Contains pills of complex painkiller."
desc = "Contains pills of complex painkillers."
label_color = "#800080"
starting_label = "oxycodone"

Expand Down
6 changes: 3 additions & 3 deletions code/modules/Z_item_worth/materials.dm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
value = 4

/material/steel
value = 4
value = 2

/material/diona
value = 5
Expand All @@ -35,7 +35,7 @@
value = 10

/material/glass/reinforced
value = 2
value = 4

/material/glass/plasma
value = 30
Expand All @@ -56,7 +56,7 @@
value = 80

/material/iron
value = 5
value = 1

/material/voxalloy
value = 100
Expand Down
2 changes: 1 addition & 1 deletion code/modules/Z_item_worth/reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@
value = 3.1

/datum/reagent/painkiller/tramadol/oxycodone
value = 3.3
value = 3.6

/datum/reagent/synaptizine
value = 1.1
Expand Down
1 change: 1 addition & 0 deletions code/modules/Z_item_worth/worths_list.dm
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,7 @@ var/list/worths = list(
/obj/item/bee_pack = 200,
/obj/item/weedkiller = 30,
/obj/item/sign/medipolma = 1500,
/obj/item/metroid_cookie = 150,
/obj/item = 5,
//STRUCTURES,
/obj/structure/dogbed = 15,
Expand Down

0 comments on commit 77c5498

Please sign in to comment.