Class: Believe::Models::EmotionalStats
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Believe::Models::EmotionalStats
- Defined in:
- lib/believe/models/emotional_stats.rb
Instance Attribute Summary collapse
-
#curiosity ⇒ Integer
Level of curiosity over judgment (0-100).
-
#empathy ⇒ Integer
Capacity for empathy (0-100).
-
#optimism ⇒ Integer
Level of optimism (0-100).
-
#resilience ⇒ Integer
Bounce-back ability (0-100).
-
#vulnerability ⇒ Integer
Willingness to be vulnerable (0-100).
Instance Method Summary collapse
-
#initialize(curiosity:, empathy:, optimism:, resilience:, vulnerability:) ⇒ Object
constructor
Emotional intelligence statistics for a character.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(curiosity:, empathy:, optimism:, resilience:, vulnerability:) ⇒ Object
Emotional intelligence statistics for a character.
|
|
# File 'lib/believe/models/emotional_stats.rb', line 36
|
Instance Attribute Details
#curiosity ⇒ Integer
Level of curiosity over judgment (0-100)
10 |
# File 'lib/believe/models/emotional_stats.rb', line 10 required :curiosity, Integer |
#empathy ⇒ Integer
Capacity for empathy (0-100)
16 |
# File 'lib/believe/models/emotional_stats.rb', line 16 required :empathy, Integer |
#optimism ⇒ Integer
Level of optimism (0-100)
22 |
# File 'lib/believe/models/emotional_stats.rb', line 22 required :optimism, Integer |
#resilience ⇒ Integer
Bounce-back ability (0-100)
28 |
# File 'lib/believe/models/emotional_stats.rb', line 28 required :resilience, Integer |
#vulnerability ⇒ Integer
Willingness to be vulnerable (0-100)
34 |
# File 'lib/believe/models/emotional_stats.rb', line 34 required :vulnerability, Integer |