@rpg-engine/long-bow 0.8.186 → 0.8.187

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpg-engine/long-bow",
3
- "version": "0.8.186",
3
+ "version": "0.8.187",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -31,11 +31,11 @@ const warriorListing: ICharacterListing = {
31
31
  race: 'Human',
32
32
  faction: 'Alliance',
33
33
  mode: 'Standard',
34
- skills: { sword: 10, shield: 8, constitution: 15, strength: 18, agility: 7 },
34
+ skills: { level: 25, sword: 10, shielding: 8, strength: 18, dexterity: 7, resistance: 15 },
35
35
  equipment: [
36
- { slot: 'weapon', itemName: 'Broad Sword', itemKey: 'items/broad-sword', rarity: 'Common' },
37
- { slot: 'armor', itemName: 'Steel Armor', itemKey: 'items/steel-armor', rarity: 'Rare' },
38
- { slot: 'helmet', itemName: 'Iron Helm', itemKey: 'items/iron-helm', rarity: 'Uncommon' },
36
+ { slot: 'rightHand', itemName: 'Broad Sword', itemKey: 'broad-sword', rarity: 'Common' },
37
+ { slot: 'armor', itemName: 'Steel Armor', itemKey: 'steel-armor', rarity: 'Rare' },
38
+ { slot: 'head', itemName: 'Iron Helm', itemKey: 'iron-helm', rarity: 'Uncommon' },
39
39
  ],
40
40
  textureKey: 'black-knight',
41
41
  },
@@ -57,10 +57,11 @@ const hardcoreListing: ICharacterListing = {
57
57
  race: 'Elf',
58
58
  faction: 'Horde',
59
59
  mode: 'Hardcore',
60
- skills: { fireball: 20, frostbolt: 18, intelligence: 30, arcane: 15, staff: 12 },
60
+ skills: { level: 40, magic: 20, magicResistance: 18, dexterity: 12, stamina: 15 },
61
61
  equipment: [
62
- { slot: 'weapon', itemName: 'Staff of Flames', itemKey: 'items/fire-staff', rarity: 'Epic' },
63
- { slot: 'robe', itemName: 'Arcane Robe', itemKey: 'items/arcane-robe', rarity: 'Legendary' },
62
+ { slot: 'rightHand', itemName: 'Staff of Flames', itemKey: 'fire-staff', rarity: 'Epic' },
63
+ { slot: 'armor', itemName: 'Arcane Robe', itemKey: 'arcane-robe', rarity: 'Legendary' },
64
+ { slot: 'neck', itemName: 'Mana Amulet', itemKey: 'mana-amulet', rarity: 'Rare' },
64
65
  ],
65
66
  textureKey: 'pink-mage-1',
66
67
  },