game: add player stats and modifiers
This commit is contained in:
8
scenes/player_stats_modifier.gd
Normal file
8
scenes/player_stats_modifier.gd
Normal file
@@ -0,0 +1,8 @@
|
||||
class_name PlayerStatsModifier
|
||||
extends Resource
|
||||
|
||||
enum ModifierType { ADDITIVE, MULTIPLICATIVE, ABSOLUTE }
|
||||
|
||||
var stat_name: String
|
||||
var value: Variant
|
||||
var type: ModifierType = ModifierType.ADDITIVE
|
Reference in New Issue
Block a user