struct Wakdata::CollectibleResource
- Wakdata::CollectibleResource
- Struct
- Value
- Object
Included Modules
- BSON::Serializable
- JSON::Serializable
- JSON::Serializable::Strict
- Wakdata::With::Id
- YAML::Serializable
Defined in:
wakdata/collectible_resource.crConstructors
- .new(id : UInt32, skill_id : UInt16, resource_id : UInt32, resource_index : UInt8, collect_item_id : UInt32, resource_next_index : UInt8, skill_level_required : UInt16, simultaneous_player : UInt8, visual_feedback_id : UInt32, duration : UInt32, mru_order : UInt8, xp_factor : UInt8, collect_loot_list_id : UInt32, collect_consumable_item_id : UInt32, collect_gfx_id : Int32, display_in_craft_dialog : Bool)
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : JSON::PullParser)
-
.new(bson : BSON)
Allocate an instance and copies data from a BSON struct.
Class Method Summary
-
.from_bson(bson : BSON)
NOTE See
self.new
.
Instance Method Summary
- #[](value : String)
- #collect_consumable_item_id : UInt32
- #collect_gfx_id : Int32
- #collect_item_id : UInt32
- #collect_loot_list_id : UInt32
- #display_in_craft_dialog : Bool
- #duration : UInt32
- #mru_order : UInt8
- #resource_id : UInt32
- #resource_index : UInt8
- #resource_next_index : UInt8
- #simultaneous_player : UInt8
- #skill_id : UInt16
- #skill_level_required : UInt16
-
#to_bson(bson = BSON.new)
Converts to a BSON representation.
- #visual_feedback_id : UInt32
- #xp_factor : UInt8
Instance methods inherited from module Wakdata::With::Id
id : UInt32
id
Constructor Detail
def self.new(id : UInt32, skill_id : UInt16, resource_id : UInt32, resource_index : UInt8, collect_item_id : UInt32, resource_next_index : UInt8, skill_level_required : UInt16, simultaneous_player : UInt8, visual_feedback_id : UInt32, duration : UInt32, mru_order : UInt8, xp_factor : UInt8, collect_loot_list_id : UInt32, collect_consumable_item_id : UInt32, collect_gfx_id : Int32, display_in_craft_dialog : Bool)
#
def self.new(bson : BSON)
#
Allocate an instance and copies data from a BSON struct.
class User
include BSON::Serializable
property name : String
end
data = BSON.new
data["name"] = "John"
User.new(data)
Class Method Detail
Instance Method Detail
def to_bson(bson = BSON.new)
#
Converts to a BSON representation.
user = User.new name: "John"
bson = user.to_bson