generic liquid #225
Aliases: generic liquid
2 verbs · 36 properties · 0 children
Verbs
| Verb | Spec | Flags | Definer | Lines |
|---|---|---|---|---|
drink | this none this | rxd | #225 | 15 |
drink_msg | this none this | rxd | #225 | 1 |
Properties
| Property | Definer | Flags | Owner | Value |
|---|---|---|---|---|
drink_msg | #225 | rc | #361 | "Mmmm. Delicious %t." |
drug | #225 | rc | #361 | #-1 |
doses_per_unit | #225 | rc | #361 | 1 |
smell_msg | #225 | rc | #361 | "" |
look_container_msg | #225 | rc | #361 | "clear liquid" |
weight_per_unit | #225 | rc | #361 | 150 |
value_per_unit | #225 | rc | #361 | 0 |
slippery | #225 | rc | #361 | 0 |
exclusive_to | #141 | rc | #361 | <clear> |
look_place_msg | #141 | rc | #361 | list of 2{{#489, "There's a puddle of %t on the floor.", "The floor is covered with %t.", "The room is soaked in %t."}, {#3, "There's a puddle of %t on the ground.", "The ground is soaked with %t."}} |
stick_time | #141 | r | #361 | 1335055046 |
lifespan | #141 | rc | #361 | 3600 |
accumulation | #141 | r | #361 | <clear> |
junk_ok | #141 | rc | #361 | <clear> |
look_person_msg | #141 | rc | #361 | <clear> |
wipeable | #141 | rc | #361 | 1 |
clean_msg | #141 | rc | #361 | <clear> |
clean_last_msg | #141 | rc | #361 | <clear> |
disperse_msg | #141 | rc | #361 | <clear> |
blood | #141 | rc | #361 | <clear> |
infect_chance | #141 | rc | #361 | <clear> |
max_accumulation | #141 | rc | #361 | 100 |
nutrition | #141 | rc | #361 | <clear> |
lick_self_msg | #141 | rc | #361 | <clear> |
look_place_air_msg | #141 | rc | #361 | "A faint mist of %t hangs in the air." |
falls | #141 | rc | #361 | <clear> |
aliases | #1 | rc | #361 | {"generic liquid"} |
description | #1 | rc | #361 | <clear> |
object_size | #1 | r | #29 | {2199, 1298434225} |
hidden_verbs | #1 | rc | #361 | <clear> |
phelp_msg | #1 | rc | #361 | <clear> |
weight | #1 | rc | #361 | <clear> |
owner_verbs | #1 | rc | #361 | <clear> |
plural_name | #1 | rc | #361 | <clear> |
client_image | #1 | rc | #361 | <clear> |
listening | #1 | rc | #361 | <clear> |
Ancestry
Ancestors (nearest first): #141 generic decal → #1 root
Children: none
Call graph
Source
drink
Referenced by
none
Source
1who = args[1]; 2doses = (length(args) > 1) ? args[2] | 1; 3if (m = this:drink_msg()) 4who:tell($su:ps(m, who, this)); 5endif 6if (valid(this.drug)) 7who:ingest(this.drug, doses, 0); 8endif 9for a in (this.blood) 10if (typeof(a) == LIST) 11who:ingest(@a); 12elseif (is_a(a, $drug)) 13who:ingest(a, 1, 0); 14endif 15endfor
drink_msg
Referenced by
- #225:drink line 3:
this:drink_msg
Source
1return this.drink_msg;