diff --git a/script/path.js b/script/path.js index 160251f..39cbdd2 100644 --- a/script/path.js +++ b/script/path.js @@ -161,15 +161,15 @@ var Path = { var currentBagCapacity = 0; // Add the non-craftables to the craftables var carryable = $.extend({ - 'cured meat': { type: 'tool', desc: 'healing: '+ World.MEAT_HEAL }, - 'bullets': { type: 'tool', desc: 'used with rifle' }, + 'cured meat': { type: 'tool', desc: 'restores '+ World.MEAT_HEAL + ' hp' }, + 'bullets': { type: 'tool', desc: 'use with rifle' }, 'grenade': {type: 'weapon' }, 'bolas': {type: 'weapon' }, 'laser rifle': {type: 'weapon' }, - 'energy cell': {type: 'tool', desc: 'used with laser rifle' }, + 'energy cell': {type: 'tool', desc: 'use with laser rifle' }, 'bayonet': {type: 'weapon' }, 'charm': {type: 'tool'}, - 'medicine': {type: 'tool', desc: 'healing: ' + World.MEDS_HEAL} + 'medicine': {type: 'tool', desc: 'restores ' + World.MEDS_HEAL + ' hp' } }, Room.Craftables); for(var k in carryable) {