mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-25 05:51:56 +01:00
This idea is from [UltraNumeron over on the forums.](https://forums.aurorastation.org/topic/22577-merging-lings-and-vamps-with-tator-tots/#comment-181862) Thanks/blame go to them :D Everything subject to change, just wanted to get something potentially testable. I imagine a proper rework of this would change much more, but this at least lets us test "ling but with uplink and BC." I also added a global datum for changelings, not sure if there's a better way to turn someone into a ling already. I think the probabilities for modes are done outside of version control, so I could not remove the modes from the pool entirely. It may be that we want to allow voting of these modes anyway, to allow for strictly vamp/feeding/etc rounds, though the Horizon is more likely to teleport into Earth orbit IRL. I just used the same icon as the psionic jumpstarter because I didn't want there to be anything residual left behind, like an empty implanter ~and this was easier~. --------- Co-authored-by: JohnWildkins <john.wildkins@gmail.com>
16 lines
731 B
Plaintext
16 lines
731 B
Plaintext
/datum/game_mode/vampire
|
|
name = "Vampire"
|
|
extended_round_description = "And He said, \"What have you done? Hark! Your brother's blood cries out to Me from the earth. \
|
|
And now, you are cursed even more than the ground, which opened its mouth to take your brother's blood from your hand. \
|
|
When you till the soil, it will not continue to give its strength to you; you shall be a wanderer and an exile in the land.\""
|
|
config_tag = "vampire"
|
|
votable = 0
|
|
required_players = 2
|
|
required_enemies = 1
|
|
antag_scaling_coeff = 8
|
|
antag_tags = list(MODE_VAMPIRE)
|
|
|
|
/datum/game_mode/vampire/pre_setup()
|
|
round_description = "There are vampires on the [SSatlas.current_map.station_type], keep your blood close and neck safe!"
|
|
. = ..()
|