Changing acid damages per second

- The acid now hurts you 3 Hp per second.
This commit is contained in:
LeMagnesium 2014-11-18 19:59:53 +01:00
parent 825757192c
commit 76b1a12770
1 changed files with 2 additions and 2 deletions

View File

@ -1085,7 +1085,7 @@ minetest.register_node("default:acid_flowing", {
liquid_alternative_flowing = "default:acid_flowing",
liquid_alternative_source = "default:acid_source",
liquid_viscosity = WATER_VISC,
damage_per_second = 2,
damage_per_second = 6,
post_effect_color = {a = 120, r = 50, g = 90, b = 30},
groups = {water = 3, liquid = 3, puts_out_fire = 1, not_in_creative_inventory = 1},
})
@ -1117,7 +1117,7 @@ minetest.register_node("default:acid_source", {
liquid_alternative_flowing = "default:acid_flowing",
liquid_alternative_source = "default:acid_source",
liquid_viscosity = WATER_VISC,
damage_per_second = 2,
damage_per_second = 6,
post_effect_color = {a = 120, r = 50, g = 90, b = 30},
groups = {water = 3, liquid = 3, puts_out_fire = 1},
})