Sentience event changes.

Sentience will now add health to what the mob's health was, rather than just replacing whatever value there was with 200.
Sentience will now add 15 brute damage to whatever mob was selected for the event. This means that even passive mobs are able to deal damage now, and those that already did can deal even more damage.
This commit is contained in:
Eman
2019-02-09 14:07:54 +01:00
parent 2a72ff9cea
commit 06306e22e4
+3 -1
View File
@@ -33,7 +33,9 @@
SA.key = SG.key
SA.universal_speak = 1
SA.sentience_act()
SA.maxHealth = max(SA.maxHealth, 200)
SA.maxHealth = max(SA.maxHealth + 200)
SA.melee_damage_lower = max(SA.melee_damage_lower + 15)
SA.melee_damage_upper = max(SA.melee_damage_upper + 15)
SA.health = SA.maxHealth
SA.del_on_death = FALSE
greet_sentient(SA)