25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

62 lines
1.0 KiB

  1. module.exports = [{
  2. name: 'Minor Healing Potion',
  3. description: 'Does not affect emotional scars.',
  4. item: {
  5. name: 'Minor Healing Potion',
  6. type: 'consumable',
  7. sprite: [0, 1],
  8. description: 'Does not affect emotional scars.',
  9. worth: 0,
  10. noSalvage: true,
  11. noAugment: true,
  12. uses: 1,
  13. cdMax: 85,
  14. effects: [{
  15. type: 'gainStat',
  16. rolls: {
  17. stat: 'hp',
  18. amount: '50%'
  19. }
  20. }]
  21. },
  22. materials: [{
  23. name: 'Skyblossom',
  24. quantity: 3
  25. }, {
  26. name: 'Empty Vial',
  27. quantity: 1
  28. }]
  29. }, {
  30. id: 'noxiousOil',
  31. name: 'Noxious Oil',
  32. description: 'Makes your weapon both stinkier, and hurtier.',
  33. default: false,
  34. item: {
  35. name: 'Noxious Oil',
  36. type: 'consumable',
  37. sprite: [0, 1],
  38. description: 'Makes your weapon both stinkier, and hurtier.',
  39. worth: 0,
  40. noSalvage: true,
  41. noAugment: true,
  42. uses: 1,
  43. cdMax: 85,
  44. effects: [{
  45. type: 'augmentWeapon',
  46. rolls: {
  47. duration: 500
  48. }
  49. }]
  50. },
  51. materials: [{
  52. name: 'Mudfish',
  53. quantity: 3
  54. }, {
  55. name: 'Stinkcap',
  56. quantity: 3
  57. }, {
  58. name: 'Empty Vial',
  59. quantity: 1
  60. }]
  61. }];