-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ascent #70
ascent #70
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/obj/item/reagent_containers/food/snacks/organ/use_before(mob/M as mob, mob/user as mob) | ||
if (!istype(M, /mob/living/carbon)) | ||
return FALSE | ||
if (!reagents || !reagents.total_volume) | ||
to_chat(user, SPAN_DANGER("None of [src] left!")) | ||
qdel(src) | ||
return TRUE | ||
if (!is_open_container()) | ||
to_chat(user, SPAN_NOTICE("\The [src] isn't open!")) | ||
return TRUE | ||
|
||
var/mob/living/carbon/C = M | ||
var/fullness = C.get_fullness() | ||
if(istype(C,/mob/living/carbon/human)) | ||
var/mob/living/carbon/human/H = M | ||
if(!H.check_has_mouth()) | ||
to_chat(user, "Where do you intend to put \the [src]? You don't have a mouth!") | ||
return TRUE | ||
var/obj/item/blocked = H.check_mouth_coverage() | ||
if(blocked) | ||
to_chat(user, SPAN_WARNING("\The [blocked] is in the way!")) | ||
return TRUE | ||
|
||
if(fullness > 550) | ||
user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN)//puts a limit on how fast people can eat/drink things | ||
to_chat(C, SPAN_DANGER("You cannot force any more of [src] to go down your throat.")) | ||
return TRUE | ||
|
||
if(is_type_in_list(M, ALL_ASCENT_SPECIES)) | ||
reagents.del_reagent(/datum/reagent/toxin) | ||
|
||
return ..() | ||
Comment on lines
+29
to
+32
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. И так, вернулся к этому еще раз. И заметил подобное. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (Попинывай меня активнее) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Иммунитет будет лишь от токсинов в органах, которые мешают рп хищным расам есть мясо There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Подозреваю что оно так же будет убирать в-принципе яд, однако это лишь подозрения, которые мне лень проверять. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Мимо. var/reagents содержит конкретно те реагенты, которые передаются этим проком от еды к человеку There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Не мимо. Реагенты могут содержать яды не связанные с токсинами органов, связанные с отсутствия каннибализма. Хотя... Я не уверен - пойдет ли дальше по сабтайпам. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. нормально, продегустировал форон из чужой руки :D There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. А кто говорил, что я не буду подкладывать во все мясо - токсичные части? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ты уверен что Монархи должны светится?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Хорошее замечание, я был уверен что Монархи имели у себя язык свечения восхождения, но теперь когда я смотрю туда вновь - даже в описании у нонвокала уточнено, что он исключительно для Кхаармани
сейчас изменим