mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-26 18:13:35 +00:00
Tweaks borg nutrition recharge and gives roaches mouse nutrition. (#6753)
This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
|
|
||||||
maxHealth = 1
|
maxHealth = 1
|
||||||
health = 1
|
health = 1
|
||||||
|
nutrition = 20 //CHOMPEdit
|
||||||
|
|
||||||
movement_cooldown = -1
|
movement_cooldown = -1
|
||||||
|
|
||||||
|
|||||||
@@ -84,7 +84,7 @@
|
|||||||
|
|
||||||
/mob/living/silicon/robot/use_power()
|
/mob/living/silicon/robot/use_power()
|
||||||
if(cell && cell.charge < cell.maxcharge)
|
if(cell && cell.charge < cell.maxcharge)
|
||||||
if(nutrition >= 20 * CYBORG_POWER_USAGE_MULTIPLIER)
|
if(nutrition >= 1 * CYBORG_POWER_USAGE_MULTIPLIER)
|
||||||
nutrition -= 20 * CYBORG_POWER_USAGE_MULTIPLIER
|
nutrition -= 1 * CYBORG_POWER_USAGE_MULTIPLIER
|
||||||
cell.charge += 200 * CYBORG_POWER_USAGE_MULTIPLIER
|
cell.charge += 10 * CYBORG_POWER_USAGE_MULTIPLIER
|
||||||
..()
|
..()
|
||||||
Reference in New Issue
Block a user