Skip to content

Commit

Permalink
Минорные вещи (BlueMoon-Labs#515)
Browse files Browse the repository at this point in the history
* Фикс путей у аппарата, чтобы он не превращался в тыкву (стул) при попытке взять в руку.

* Корректное описание квирка.

* Убираем тип стула, чтобы его нельзя было брать в руки (он не предназначен для этого).

* Свадебные кольца священнику

* Больше колец по большей цене. Свадьба - повод потратить 2000 кредитов.

* Злоебучие хуефикс.
  • Loading branch information
Kush1Push1 authored Oct 28, 2023
1 parent 411c226 commit 12d430d
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 19 deletions.
2 changes: 1 addition & 1 deletion _maps/map_files/generic/CentCom.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -27200,7 +27200,7 @@
},
/area/centcom/holding)
"pdY" = (
/obj/structure/chair/bed/dildo_machine,
/obj/structure/bed/dildo_machine,
/turf/open/floor/mineral/abductor,
/area/centcom/holding)
"pft" = (
Expand Down
22 changes: 13 additions & 9 deletions code/modules/vending/wardrobes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -464,18 +464,22 @@
/obj/item/clothing/head/pharaoh = 2,
/obj/item/clothing/neck/tie/cross = 7,
/obj/item/storage/fancy/candle_box = 3,
/obj/item/clothing/head/clownmitre = 3, //BlueMoon changes
/obj/item/clothing/suit/chaplain/clownpriest = 3, //BlueMoon changes
/obj/item/clothing/suit/chaplain/shrinehand = 3, //BlueMoon changes
/obj/item/clothing/suit/hooded/chaplain_hoodie/monk_robe = 2, //BlueMoon changes
/obj/item/clothing/neck/oldcross = 6, //BlueMoon changes
/obj/item/clothing/neck/epitrachelion = 1, //BlueMoon changes
/obj/item/clothing/neck/cloak/bishop = 1, //BlueMoon changes
/obj/item/toy/plush/plushvar = 1, // BLUEMOON ADD - перенесено из категории примиума,
/obj/item/toy/plush/narplush = 1, // BLUEMOON ADD - перенесено из категории примиума,
/obj/item/clothing/head/clownmitre = 3, //BlueMoon changes,
/obj/item/clothing/suit/chaplain/clownpriest = 3, //BlueMoon changes,
/obj/item/clothing/suit/chaplain/shrinehand = 3, //BlueMoon changes,
/obj/item/clothing/suit/hooded/chaplain_hoodie/monk_robe = 2, //BlueMoon changes,
/obj/item/clothing/neck/oldcross = 6, //BlueMoon changes,
/obj/item/clothing/neck/epitrachelion = 1, //BlueMoon changes,
/obj/item/clothing/neck/cloak/bishop = 1, //BlueMoon changes,
/obj/item/clothing/neck/cloak/bishopblack= 1) //BlueMoon changes
premium = list(/obj/item/toy/plush/plushvar = 1,
/obj/item/toy/plush/narplush = 1,
premium = list(/obj/item/storage/fancy/ringbox/silver = 4, // BLUEMOON ADD - для проведения свадеб,
/obj/item/storage/fancy/ringbox = 4, // BLUEMOON ADD - для проведения свадеб,
/obj/item/storage/fancy/ringbox/diamond = 4, // BLUEMOON ADD - для проведения свадеб,
/obj/item/lighter/black = 1)
refill_canister = /obj/item/vending_refill/wardrobe/chap_wardrobe
extra_price = PRICE_ALMOST_ONE_GRAND * 1.1
payment_department = ACCOUNT_SRV
/obj/item/vending_refill/wardrobe/chap_wardrobe
machine_name = "DeusVend"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/obj/structure/chair/bed/dildo_machine
/obj/structure/bed/dildo_machine
name = "Dildo machine"
desc = "It provides pleasure."
icon = 'modular_bluemoon/Gardelin0/icons/obj/lewd_devices.dmi'
Expand All @@ -11,11 +11,11 @@
var/fuck_hole
buckle_lying = TRUE

/obj/structure/chair/bed/dildo_machine/New()
/obj/structure/bed/dildo_machine/New()
..()
add_overlay(mutable_appearance('modular_bluemoon/Gardelin0/icons/obj/lewd_devices.dmi', "dilmachine_over", MOB_LAYER + 1))

/obj/structure/chair/bed/dildo_machine/verb/change_hole()
/obj/structure/bed/dildo_machine/verb/change_hole()
set name = "Change hole"
set category = "Object"
set src in oview(1)
Expand All @@ -26,7 +26,7 @@
if("anus")
hole = CUM_TARGET_ANUS

/obj/structure/chair/bed/dildo_machine/verb/change_mode()
/obj/structure/bed/dildo_machine/verb/change_mode()
set name = "Change mode"
set category = "Object"
set src in oview(1)
Expand All @@ -41,7 +41,7 @@
if(mode == "high")
intencity = 18

/obj/structure/chair/bed/dildo_machine/verb/toggle()
/obj/structure/bed/dildo_machine/verb/toggle()
set name = "Toggle dildo machine"
set category = "Object"
set src in oview(1)
Expand All @@ -55,7 +55,7 @@
else
to_chat(usr, "[src] выкл.")

/obj/structure/chair/bed/dildo_machine/proc/fuck()
/obj/structure/bed/dildo_machine/proc/fuck()
if(!on)
return

Expand Down Expand Up @@ -95,7 +95,7 @@
if(prob(50))
M.emote("moan")

/obj/structure/chair/bed/dildo_machine/attackby(obj/item/used_item, mob/user, params)
/obj/structure/bed/dildo_machine/attackby(obj/item/used_item, mob/user, params)
if(istype(used_item, /obj/item/screwdriver))
to_chat(user, span_notice("You unscrew the frame and begin to deconstruct it..."))
if(used_item.use_tool(src, user, 8 SECONDS, volume = 50))
Expand All @@ -121,7 +121,7 @@
to_chat(user, span_notice("You screw the frame to the floor and begin to construct it..."))
if(used_item.use_tool(src, user, 8 SECONDS, volume = 50))
to_chat(user, span_notice("You assemble it."))
new /obj/structure/chair/bed/dildo_machine (src.loc)
new /obj/structure/bed/dildo_machine (src.loc)
qdel(src)
return
else
Expand Down
1 change: 1 addition & 0 deletions modular_bluemoon/Gardelin0/code/obj/lewd_devices/sybian.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
var/mode = "normal"
var/intencity
var/on = 0
item_chair = null // нельзя брать в руки

/obj/structure/chair/sybian/New()
..()
Expand Down
2 changes: 1 addition & 1 deletion modular_splurt/code/datums/traits/good.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//Own stuff
/datum/quirk/tough
name = "Стойкость"
desc = "Ваше аномально крепкое тело может вынести на 25% больше урона."
desc = "Ваше аномально крепкое тело может вынести на 20% больше урона."
value = 3
medical_record_text = "Пациент продемонстрировал аномально высокую устойчивость к травмам."
gain_text = "<span class='notice'>Вы чувствуете крепость в мышцах.</span>"
Expand Down

0 comments on commit 12d430d

Please sign in to comment.