Skip to content

Commit

Permalink
Adventure Console shop expansion (vlggms#2420)
Browse files Browse the repository at this point in the history
adventure console buff
  • Loading branch information
Kitsunemitsu authored Sep 11, 2024
1 parent 4634a93 commit 3469add
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions ModularTegustation/_adventure_console/adventure_layout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,17 @@
* defeated. -IP
*/
var/list/exchange_shop_list = list(
new /datum/data/extraction_cargo("SNAP POP ", /obj/item/toy/snappop, 10) = 1,
new /datum/data/extraction_cargo("CAT TOY ", /obj/item/toy/cattoy, 15) = 1,
new /datum/data/extraction_cargo("CHILDRENS TOY",/obj/item/toy/prize/ripley, 20) = 1,
new /datum/data/extraction_cargo("HOURGLASS", /obj/item/hourglass, 25) = 1,
new /datum/data/extraction_cargo("SNAP POP", /obj/item/toy/snappop, 10) = 1,
new /datum/data/extraction_cargo("WATER BALLOON", /obj/item/toy/waterballoon, 10) = 1,
new /datum/data/extraction_cargo("TOY SWORD", /obj/item/toy/waterballoon, 10) = 1,
new /datum/data/extraction_cargo("CAT TOY", /obj/item/toy/cattoy, 15) = 1,
new /datum/data/extraction_cargo("PLUSH OF A FRIEND",/obj/item/toy/plush/binah, 15) = 1,
new /datum/data/extraction_cargo("UNMARKED CRATE",/obj/structure/lootcrate, 20) = 1,
new /datum/data/extraction_cargo("SUSPICIOUS CRATE",/obj/structure/lootcrate/money, 20) = 1,
new /datum/data/extraction_cargo("HOURGLASS", /obj/item/hourglass, 25) = 1,
new /datum/data/extraction_cargo("CAT", /mob/living/simple_animal/pet/cat, 50) = 1,
new /datum/data/extraction_cargo("CAK", /mob/living/simple_animal/pet/cat/cak, 100) = 1,
new /datum/data/extraction_cargo("SNAKE", /mob/living/simple_animal/hostile/retaliate/poison/snake, 100) = 1,
)

/datum/adventure_layout/New(set_debug_menu = FALSE)
Expand Down

0 comments on commit 3469add

Please sign in to comment.