11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
Items = new Meteor.Collection('items');
|
|
|
|
Item = function(name, container){
|
|
this.name = name;
|
|
this.container = container;
|
|
this.quantity = 1;
|
|
this.weight = 0.0;
|
|
this.value = 0;//value in gold pieces
|
|
this.description = "";
|
|
this.effects = [];
|
|
} |