initial commit

This commit is contained in:
2021-10-24 15:36:18 -04:00
commit b9a5a8fe23
11982 changed files with 220468 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
require( "modifiers/modifier_blessing_base" )
modifier_blessing_potion_health = class( modifier_blessing_base )
-------------------------------------------------------------------------------
function modifier_blessing_potion_health:OnBlessingCreated( kv )
self.hp_restore_pct_bonus = kv.hp_restore_pct_bonus
end
--------------------------------------------------------------------------------
function modifier_blessing_potion_health:GetHealthRestorePercentBonus()
return self.hp_restore_pct_bonus
end