Class: Studio::Quest::Earning
- Defined in:
- scripts/00800 Studio/00001 Data/00051 Quest.rb
Overview
Data class describing a quest earning
Instance Attribute Summary collapse
-
#earning_args ⇒ Array
readonly
Argument of the method to call.
-
#earning_method_name ⇒ Symbol
readonly
Name of the method to call to give the earning to player.
-
#text_format_method_name ⇒ Symbol
readonly
Name of the method to call in order to get the text to show in UI.
Instance Attribute Details
#earning_args ⇒ Array (readonly)
Argument of the method to call
68 69 70 |
# File 'scripts/00800 Studio/00001 Data/00051 Quest.rb', line 68 def earning_args @earning_args end |
#earning_method_name ⇒ Symbol (readonly)
Name of the method to call to give the earning to player
64 65 66 |
# File 'scripts/00800 Studio/00001 Data/00051 Quest.rb', line 64 def earning_method_name @earning_method_name end |
#text_format_method_name ⇒ Symbol (readonly)
Name of the method to call in order to get the text to show in UI
72 73 74 |
# File 'scripts/00800 Studio/00001 Data/00051 Quest.rb', line 72 def text_format_method_name @text_format_method_name end |