Skip to content
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

[Species] Invert Poison Damage for SlimePeople #36

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Resources/Prototypes/Entities/Mobs/Species/slime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,16 @@
- BleedersBite
- type: ReagentDamageModifier
modifierSet: SlimeReagents
- type: Temperature
heatDamageThreshold: 422
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is significantly past the point of boiling, I do not think Slimes would be happy here.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warm :)

coldDamageThreshold: 285
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is near-ish to room temperature, are you sure they should start dying at this point?

I would recommend that you set the damages to be more extreme rather than the temperature limits, and then instead play with the ThermalRegulator component. You can use that to edit their comfortable range, which will be a more nuanced effect than just a death-limit.

currentTemperature: 320
coldDamage:
types:
Cold : 0.3
heatDamage:
types:
Heat : 0.1

- type: entity
save: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,28 @@ Slimes are sentient beings made from jelly that commonly appear as humans to ble

## Ability Differences

- Slimes have jelly instead of blood, which is toxic to other species when consumed.
- Slimes are incapable of living in cold environments, dying very quickly.
- To contrast, Slimes are able to survive longer in hot environments.
- Take less brute damage.
- Take more slash damage.
- Breathe Nitrogen instead of Oxygen.
- Have jelly instead of blood, which is toxic to other species when consumed
- Incapable of living in cold environments, dying very quickly
- Able to live in warmer environments
- Breathe Nitrogen instead of Oxygen
- Poison damage is inverted
- Take twice the blunt damage if more than 5
DEATHB4DEFEAT marked this conversation as resolved.
Show resolved Hide resolved
- Take more slash damage
- Take half piercing damage
- Take more cold damage
- Take much less heat damage
- Take much less cellular damage
- Take a little less asphyxiation damage
- Take a little more bloodloss damage
- Take much less shock damage
- Take much less radiation damage

## Physical Differences

- Slimes are slightly transparent.
- Can have any color of skin.
- Have several additional marking options.
- Have different voices (screams/laughs).
- Can "Squish" (emote).
- Can be Genderless.
- Slightly transparent
- Can have any color of skin
- Several additional marking options
- Different voices (screams/laughs)
- Can "Squish" (emote)
- Can be genderless
</Document>
Loading