* Turf grammar omnibus (#38375) * Fix plurality and propriety on turfs Some turfs are marked tentatively plural in order to avoid an incorrect choice of "a" or "an". * Add an article var to handle unusual a/an * An additional pass on turf names * Decapitalize server, mainframe, killroom floors * Turf grammar omnibus
17 lines
445 B
Plaintext
17 lines
445 B
Plaintext
/turf/open/water
|
|
gender = PLURAL
|
|
name = "water"
|
|
desc = "Shallow water."
|
|
icon = 'icons/turf/floors.dmi'
|
|
icon_state = "riverwater_motion"
|
|
baseturfs = /turf/open/chasm/lavaland
|
|
initial_gas_mix = LAVALAND_DEFAULT_ATMOS
|
|
planetary_atmos = TRUE
|
|
slowdown = 1
|
|
bullet_sizzle = TRUE
|
|
bullet_bounce_sound = null //needs a splashing sound one day.
|
|
|
|
/turf/open/water/Initialize()
|
|
. = ..()
|
|
MakeSlippery(TURF_WET_WATER, INFINITY, 0, INFINITY, TRUE)
|