Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 48.43 KB | None | 0 0
  1. [
  2. {
  3. "id": "1st_aid",
  4. "type": "GENERIC",
  5. "category": "drugs",
  6. "name": "first aid kit",
  7. "description": "A full medical kit, with bandages, local anesthetics, and rapid healing agents. Used for healing large amounts of damage. Disassemble to get its content.",
  8. "weight": 1000,
  9. "volume": 6,
  10. "price": 3000,
  11. "material": "plastic",
  12. "symbol": "!",
  13. "color": "red",
  14. "use_action": "DISASSEMBLE"
  15. },
  16. {
  17. "id" : "adderall",
  18. "type" : "COMESTIBLE",
  19. "comestible_type" : "MED",
  20. "name" : "Adderall",
  21. "name_plural" : "Adderall",
  22. "description" : "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly prescribed to treat hyperactive attention deficits. It suppresses the appetite, and is quite addictive.",
  23. "weight" : 1,
  24. "volume" : 1,
  25. "price" : 14500,
  26. "charges" : 10,
  27. "stack_size" : 200,
  28. "symbol" : "!",
  29. "color" : "light_red",
  30. "stim" : 24,
  31. "fun" : 10,
  32. "addiction_potential" : 10,
  33. "addiction_type" : "amphetamine",
  34. "flags" : "NPC_SAFE"
  35. },
  36. {
  37. "id" : "adrenaline_injector",
  38. "type" : "COMESTIBLE",
  39. "comestible_type" : "MED",
  40. "name" : "syringe of adrenaline",
  41. "name_plural": "syringes of adrenaline",
  42. "description" : "A syringe filled with a shot of adrenaline. It serves as a powerful stimulant when you inject yourself with it. Asthmatics can use it in an emergency to clear their asthma.",
  43. "weight" : 10,
  44. "volume" : 1,
  45. "price" : 3400,
  46. "stack_size" : 10,
  47. "material" : "plastic",
  48. "symbol" : "!",
  49. "color" : "pink",
  50. "use_action" : "ADRENALINE_INJECTOR"
  51. },
  52. {
  53. "id" : "antibiotics",
  54. "type" : "COMESTIBLE",
  55. "comestible_type" : "MED",
  56. "name" : "antibiotic",
  57. "description" : "A prescription-strength antibacterial medication designed to prevent or stop the spread of infection. It's the quickest and most reliable way to cure any infections you might have. One dose lasts twelve hours.",
  58. "weight" : 1,
  59. "volume" : 1,
  60. "price" : 9000,
  61. "charges" : 15,
  62. "stack_size" : 200,
  63. "symbol" : "!",
  64. "color" : "white",
  65. "use_action" : "ANTIBIOTIC",
  66. "flags" : "NPC_SAFE"
  67. },
  68. {
  69. "id" : "antifungal",
  70. "type" : "COMESTIBLE",
  71. "comestible_type" : "MED",
  72. "name" : "antifungal drug",
  73. "description" : "Powerful chemical tablets designed to eliminate fungal infections in living creatures.",
  74. "weight" : 1,
  75. "volume" : 1,
  76. "price" : 1000,
  77. "charges" : 5,
  78. "stack_size" : 100,
  79. "material" : "powder",
  80. "symbol" : "!",
  81. "color" : "white",
  82. "use_action" : "ANTIFUNGAL",
  83. "flags" : "NPC_SAFE"
  84. },
  85. {
  86. "id" : "antiparasitic",
  87. "type" : "COMESTIBLE",
  88. "comestible_type" : "MED",
  89. "name" : "antiparasitic drug",
  90. "description" : "Broad spectrum chemical tablets designed to eliminate parasitic infestations in living creatures. Though designed for use on pets and livestock, it will likely work on humans as well.",
  91. "weight" : 1,
  92. "volume" : 1,
  93. "price" : 3200,
  94. "charges" : 5,
  95. "stack_size" : 100,
  96. "material" : "powder",
  97. "symbol" : "!",
  98. "color" : "white",
  99. "healthy" : -5,
  100. "use_action" : "ANTIPARASITIC",
  101. "flags" : "NPC_SAFE"
  102. },
  103. {
  104. "id" : "aspirin",
  105. "type" : "COMESTIBLE",
  106. "comestible_type" : "MED",
  107. "name" : "aspirin",
  108. "description" : "Acetylsalicylic acid, a mild anti-inflammatory. Take to relieve pain and swelling.",
  109. "weight" : 1,
  110. "volume" : 1,
  111. "price" : 500,
  112. "charges" : 20,
  113. "stack_size" : 200,
  114. "material" : "powder",
  115. "symbol" : "!",
  116. "color" : "white",
  117. "healthy" : -1,
  118. "use_action" : {
  119. "type" : "consume_drug",
  120. "activation_message" : "You take some aspirin.",
  121. "effects" : [ { "id" : "pkill1", "duration" : 120 } ]
  122. }
  123. },
  124. {
  125. "id" : "bandages",
  126. "type" : "COMESTIBLE",
  127. "comestible_type" : "MED",
  128. "name" : "bandage",
  129. "description" : "Simple cloth bandages. Used for healing small amounts of damage.",
  130. "weight" : 70,
  131. "volume" : 1,
  132. "price" : 600,
  133. "material" : "cotton",
  134. "symbol" : "!",
  135. "color" : "white",
  136. "charges" : 3,
  137. "stack_size" : 9,
  138. "use_action" : {
  139. "type" : "heal",
  140. "bandages_power" : 4,
  141. "bleed" : 0.9,
  142. "move_cost" : 300
  143. }
  144. },
  145. {
  146. "id": "bandages_makeshift",
  147. "type": "COMESTIBLE",
  148. "name": "makeshift bandage",
  149. "copy-from": "bandages",
  150. "description": "Simple cloth bandages. Better than nothing.",
  151. "use_action": { "type": "heal", "bandages_power": 2, "bleed": 0.9, "move_cost": 300 }
  152. },
  153. {
  154. "id": "bandages_makeshift_bleached",
  155. "type": "COMESTIBLE",
  156. "name": "bleached makeshift bandage",
  157. "copy-from": "bandages",
  158. "description": "Simple cloth bandages. It is white, as real bandages should be.",
  159. "use_action": { "type": "heal", "bandages_power": 3, "bleed": 0.9, "move_cost": 300 }
  160. },
  161. {
  162. "id": "bandages_makeshift_boiled",
  163. "type": "COMESTIBLE",
  164. "name": "boiled makeshift bandage",
  165. "copy-from": "bandages",
  166. "description": "Simple cloth bandages. It was boiled to make it more sterile.",
  167. "use_action": { "type": "heal", "bandages_power": 3, "bleed": 0.9, "move_cost": 300 }
  168. },
  169. {
  170. "id" : "bfipowder",
  171. "type" : "COMESTIBLE",
  172. "comestible_type" : "MED",
  173. "name" : "antiseptic powder",
  174. "name_plural" : "antiseptic powder",
  175. "description" : "A powdered form of chemical disinfectant, this bismuth formic iodide cleans wounds quickly and painlessly.",
  176. "weight" : 6,
  177. "volume" : 1,
  178. "price" : 900,
  179. "charges" : 4,
  180. "stack_size" : 40,
  181. "material" : "powder",
  182. "symbol" : "!",
  183. "color" : "white",
  184. "container" : "bottle_plastic_small",
  185. "use_action" : {
  186. "type" : "heal",
  187. "disinfectant_power" : 4,
  188. "bite" : 0.95,
  189. "move_cost" : 100
  190. }
  191. },
  192. {
  193. "id" : "caff_gum",
  194. "type" : "COMESTIBLE",
  195. "comestible_type" : "MED",
  196. "name" : "caffeinated chewing gum",
  197. "description" : "Chewing gum with added caffeine. Sugary and bad for your teeth, but it's a nice pick-me-up.",
  198. "category" : "food",
  199. "weight" : 3,
  200. "volume" : 1,
  201. "price" : 140,
  202. "charges" : 10,
  203. "stack_size" : 100,
  204. "material" : "junk",
  205. "symbol" : "*",
  206. "color" : "white",
  207. "stim" : 10,
  208. "fun" : 1,
  209. "use_action" : "CHEW"
  210. },
  211. {
  212. "id" : "caffeine",
  213. "type" : "COMESTIBLE",
  214. "comestible_type" : "MED",
  215. "name" : "caffeine pill",
  216. "description" : "No-doz brand caffeine pills, maximum strength. Useful in pulling an all-nighter, one pill is about equivalent to a strong cup of coffee.",
  217. "weight" : 1,
  218. "volume" : 1,
  219. "price" : 1000,
  220. "charges" : 10,
  221. "stack_size" : 200,
  222. "material" : "powder",
  223. "symbol" : "!",
  224. "color" : "cyan",
  225. "stim" : 12,
  226. "addiction_potential" : 3,
  227. "addiction_type" : "caffeine",
  228. "use_action" : "CAFF"
  229. },
  230. {
  231. "id" : "chaw",
  232. "type" : "COMESTIBLE",
  233. "comestible_type" : "MED",
  234. "name" : "chewing tobacco",
  235. "description" : "Mint flavored chewing tobacco. While still absolutely terrible for your health, it was once a favorite amongst baseball players, cowboys, and other macho types.",
  236. "weight" : 4,
  237. "volume" : 1,
  238. "price" : 2000,
  239. "charges" : 20,
  240. "stack_size" : 60,
  241. "symbol" : "*",
  242. "color" : "green",
  243. "container" : "wrapper",
  244. "quench" : 1,
  245. "stim" : 2,
  246. "healthy" : -1,
  247. "fun" : 4,
  248. "addiction_potential" : 40,
  249. "addiction_type" : "nicotine",
  250. "use_action" : "CHEW"
  251. },
  252. {
  253. "id" : "chem_hydrogen_peroxide",
  254. "type" : "COMESTIBLE",
  255. "comestible_type" : "MED",
  256. "name" : "hydrogen peroxide",
  257. "name_plural" : "hydrogen peroxide",
  258. "description" : "Dilute hydrogen peroxide, for use as a disinfectant and for bleaching hair or textiles. Foams a little when in contact with organic matter, but otherwise harmless.",
  259. "weight" : 275,
  260. "volume" : 1,
  261. "price" : 100,
  262. "symbol" : "~",
  263. "color" : "white",
  264. "phase" : "liquid",
  265. "container" : "bottle_plastic_small",
  266. "use_action" : {
  267. "type" : "heal",
  268. "disinfectant_power" : 4,
  269. "bite" : 0.95,
  270. "move_cost" : 100
  271. }
  272. },
  273. {
  274. "id" : "cig",
  275. "type" : "COMESTIBLE",
  276. "comestible_type" : "MED",
  277. "name" : "cigarette",
  278. "description" : "A mixture of dried tobacco leaf, pesticides, and chemical additives, rolled into a filtered paper tube. Stimulates mental acuity and reduces appetite. Highly addictive and hazardous to health.",
  279. "weight" : 1,
  280. "volume" : 1,
  281. "price" : 800,
  282. "charges" : 20,
  283. "stack_size" : 60,
  284. "symbol" : "!",
  285. "color" : "dark_gray",
  286. "container" : "box_cigarette",
  287. "stim" : 1,
  288. "healthy" : -2,
  289. "fun" : 5,
  290. "addiction_potential" : 50,
  291. "addiction_type" : "nicotine",
  292. "use_action" : "SMOKING"
  293. },
  294. {
  295. "id" : "cigar",
  296. "type" : "COMESTIBLE",
  297. "comestible_type" : "MED",
  298. "name" : "cigar",
  299. "description" : "Rolled, cured tobacco leaf, addictive and hazardous to health.\nA gentleman's vice, cigars set the civil man apart from the savage.",
  300. "weight" : 3,
  301. "volume" : 1,
  302. "price" : 1000,
  303. "charges" : 5,
  304. "symbol" : "!",
  305. "color" : "brown",
  306. "stim" : 1,
  307. "healthy" : -1,
  308. "fun" : 15,
  309. "addiction_potential" : 50,
  310. "addiction_type" : "nicotine",
  311. "use_action" : "SMOKING"
  312. },
  313. {
  314. "id" : "chloroform_rag",
  315. "type" : "COMESTIBLE",
  316. "comestible_type" : "MED",
  317. "name" : "chloroform soaked rag",
  318. "description" : "A debug item that lets you put NPCs (or yourself) to sleep.",
  319. "weight" : 240,
  320. "volume" : 1,
  321. "price" : 3000,
  322. "material" : "cotton",
  323. "symbol" : "!",
  324. "color" : "red",
  325. "use_action" : {
  326. "type" : "consume_drug",
  327. "move_cost" : 100,
  328. "effects" : [
  329. {
  330. "id" : "sleep",
  331. "duration" : 1000
  332. }
  333. ],
  334. "used_up_item" : "rag"
  335. }
  336. },
  337. {
  338. "id" : "codeine",
  339. "type" : "COMESTIBLE",
  340. "comestible_type" : "MED",
  341. "name" : "codeine",
  342. "name_plural" : "codeine",
  343. "description" : "A mild opiate used in the suppression of pain, cough, and other ailments. While relatively weak for a narcotic, it is still addictive, with a potential for overdose.",
  344. "weight" : 1,
  345. "volume" : 1,
  346. "price" : 1200,
  347. "charges" : 10,
  348. "stack_size" : 200,
  349. "symbol" : "!",
  350. "color" : "cyan",
  351. "stim" : -2,
  352. "fun" : 10,
  353. "addiction_potential" : 10,
  354. "addiction_type" : "opiate",
  355. "use_action" : {
  356. "type" : "consume_drug",
  357. "activation_message" : "You take some codeine.",
  358. "effects" : [
  359. { "id" : "pkill2", "duration" : 180 },
  360. { "id" : "cough_suppress", "duration" : 1000 }
  361. ]
  362. }
  363. },
  364. {
  365. "id" : "coke",
  366. "type" : "COMESTIBLE",
  367. "comestible_type" : "MED",
  368. "name" : "cocaine",
  369. "name_plural" : "cocaine",
  370. "description" : "Crystalline extract of the coca leaf, or at least, a white powder with some of that in it. A topical analgesic, it is more commonly used for its stimulatory properties. Highly addictive.",
  371. "weight" : 1,
  372. "volume" : 1,
  373. "price" : 10000,
  374. "charges" : 8,
  375. "stack_size" : 100,
  376. "material" : "powder",
  377. "symbol" : "!",
  378. "color" : "white",
  379. "container" : "bag_plastic",
  380. "stim" : 20,
  381. "healthy" : -2,
  382. "fun" : 25,
  383. "addiction_potential" : 50,
  384. "addiction_type" : "cocaine",
  385. "use_action" : "COKE"
  386. },
  387. {
  388. "id" : "contacts",
  389. "type" : "COMESTIBLE",
  390. "comestible_type" : "MED",
  391. "name" : "pair of contact lenses",
  392. "name_plural" : "pairs of contact lenses",
  393. "description" : "A pair of extended wear contacts with soft lenses designed to be discarded after a week of use. They are a great replacement to wearing glasses and sit comfortably on the surface of the eye.",
  394. "weight" : 1,
  395. "volume" : 1,
  396. "price" : 2600,
  397. "charges" : 6,
  398. "stack_size" : 36,
  399. "material" : "plastic",
  400. "symbol" : "[",
  401. "color" : "cyan",
  402. "use_action" : "CONTACTS",
  403. "flags" : "NPC_SAFE"
  404. },
  405. {
  406. "id" : "cotton_ball",
  407. "type" : "COMESTIBLE",
  408. "comestible_type" : "MED",
  409. "name" : "cotton balls",
  410. "name_plural" : "cotton balls",
  411. "description" : "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an emergency.",
  412. "category" : "spare_parts",
  413. "weight" : 22,
  414. "volume" : 1,
  415. "price" : 500,
  416. "charges" : 2,
  417. "material" : "cotton",
  418. "symbol" : "*",
  419. "color" : "white",
  420. "container" : "bag_plastic",
  421. "use_action" : {
  422. "type" : "heal",
  423. "bandages_power" : 2,
  424. "bleed" : 0.9,
  425. "move_cost" : 300
  426. }
  427. },
  428. {
  429. "id" : "crack",
  430. "type" : "COMESTIBLE",
  431. "comestible_type" : "MED",
  432. "name" : "crack",
  433. "name_plural" : "crack",
  434. "description" : "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain chemistry.",
  435. "weight" : 1,
  436. "volume" : 1,
  437. "price" : 72000,
  438. "charges" : 4,
  439. "stack_size" : 100,
  440. "material" : "powder",
  441. "symbol" : "!",
  442. "color" : "white",
  443. "container" : "bag_plastic",
  444. "stim" : 40,
  445. "healthy" : -2,
  446. "fun" : 50,
  447. "addiction_potential" : 80,
  448. "addiction_type" : "crack",
  449. "use_action" : {
  450. "type" : "consume_drug",
  451. "activation_message" : "You smoke your crack rocks. Mother would be proud.",
  452. "effects" : [ { "id" : "high", "duration" : 15 } ],
  453. "stat_adjustments" : {"hunger" : -10},
  454. "fields_produced" : {"fd_cracksmoke" : 2},
  455. "charges_needed" : { "fire" : 1 },
  456. "tools_needed" : { "apparatus" : -1 }
  457. }
  458. },
  459. {
  460. "id" : "dayquil",
  461. "type" : "COMESTIBLE",
  462. "comestible_type" : "MED",
  463. "name" : "non-drowsy cough syrup",
  464. "name_plural" : "non-drowsy cough syrup",
  465. "description" : "Daytime cold and flu medication. Non-drowsy formula. Will suppress coughing, aching, headaches and runny noses, but you'll still need lots of fluids and rest.",
  466. "weight" : 48,
  467. "volume" : 1,
  468. "price" : 800,
  469. "charges" : 5,
  470. "symbol" : "~",
  471. "color" : "yellow",
  472. "phase" : "liquid",
  473. "container" : "bottle_plastic_small",
  474. "use_action" : "FLUMED",
  475. "flags" : "NPC_SAFE"
  476. },
  477. {
  478. "id" : "disinfectant",
  479. "type" : "COMESTIBLE",
  480. "comestible_type" : "MED",
  481. "name" : "disinfectant",
  482. "description" : "A powerful disinfectant commonly used for contaminated wounds.",
  483. "weight" : 27,
  484. "volume" : 1,
  485. "price" : 1500,
  486. "charges" : 10,
  487. "symbol" : "~",
  488. "color" : "light_cyan",
  489. "phase" : "liquid",
  490. "container" : "bottle_plastic_small",
  491. "use_action" : {
  492. "type" : "heal",
  493. "disinfectant_power" : 4,
  494. "bite" : 0.95,
  495. "move_cost" : 100
  496. }
  497. },
  498. {
  499. "id": "disinfectant_makeshift",
  500. "type": "COMESTIBLE",
  501. "name": "makeshift disinfectant",
  502. "copy-from": "disinfectant",
  503. "description": "Makeshift disinfectant made from ethanol. Can be used to disinfect a wound.",
  504. "use_action": { "type": "heal", "disinfectant_power": 3, "bite" : 0.95, "move_cost": 100 }
  505. },
  506. {
  507. "id" : "diazepam",
  508. "type" : "COMESTIBLE",
  509. "comestible_type" : "MED",
  510. "name" : "diazepam",
  511. "name_plural" : "diazepam",
  512. "description" : "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures, and panic attacks.",
  513. "weight" : 1,
  514. "volume" : 1,
  515. "price" : 15000,
  516. "charges" : 10,
  517. "stack_size" : 100,
  518. "symbol" : "!",
  519. "color" : "white",
  520. "stim" : -8,
  521. "healthy" : -1,
  522. "fun" : 8,
  523. "addiction_potential" : 20,
  524. "addiction_type" : "diazepam",
  525. "use_action" : "ANTICONVULSANT"
  526. },
  527. {
  528. "id" : "ecig",
  529. "type" : "COMESTIBLE",
  530. "comestible_type" : "MED",
  531. "name" : "electronic cigarette",
  532. "description" : "This battery-operated device vaporizes a liquid that contains flavorings and nicotine. A less harmful alternative to traditional cigarettes, but it's still addictive. It can't be reused once it's empty.",
  533. "weight" : 1,
  534. "volume" : 1,
  535. "price" : 3000,
  536. "charges" : 40,
  537. "stack_size" : 40,
  538. "symbol" : "!",
  539. "color" : "dark_gray",
  540. "stim" : 1,
  541. "fun" : 8,
  542. "addiction_potential" : 50,
  543. "addiction_type" : "nicotine",
  544. "use_action" : "ECIG"
  545. },
  546. {
  547. "id" : "eyedrops",
  548. "type" : "COMESTIBLE",
  549. "comestible_type" : "MED",
  550. "name" : "saline eye drop",
  551. "name_plural" : "saline eye drops",
  552. "description" : "Sterile saline eye drops. Can be used to treat dry eyes, or to wash out contaminants.",
  553. "weight" : 18,
  554. "price" : 300,
  555. "charges" : 10,
  556. "symbol" : "!",
  557. "color" : "light_blue",
  558. "use_action" : "EYEDROPS",
  559. "flags" : "NPC_SAFE"
  560. },
  561. {
  562. "id" : "flu_shot",
  563. "type" : "COMESTIBLE",
  564. "comestible_type" : "MED",
  565. "name" : "flu shot",
  566. "description" : "Pharmaceutical flu shot designed for mass vaccinations, still in the packaging. Purported to provide immunity to influenza.",
  567. "weight" : 10,
  568. "volume" : 1,
  569. "price" : 5000, "//" : "Yeah, kinda guessing at these ones.",
  570. "stack_size" : 40,
  571. "material" : "plastic",
  572. "symbol" : "!",
  573. "color" : "magenta",
  574. "use_action" : "FLU_VACCINE",
  575. "flags" : "NPC_SAFE"
  576. },
  577. {
  578. "id" : "gum",
  579. "type" : "COMESTIBLE",
  580. "comestible_type" : "MED",
  581. "name" : "chewing gum",
  582. "name_plural" : "chewing gum",
  583. "description" : "Bright pink chewing gum. Sugary, sweet, and bad for your teeth.",
  584. "category" : "food",
  585. "weight" : 3,
  586. "volume" : 1,
  587. "price" : 100,
  588. "charges" : 10,
  589. "stack_size" : 100,
  590. "material" : "junk",
  591. "symbol" : "*",
  592. "color" : "pink",
  593. "stim" : 1,
  594. "fun" : 2,
  595. "use_action" : "CHEW"
  596. },
  597. {
  598. "id" : "handrolled_cig",
  599. "type" : "COMESTIBLE",
  600. "comestible_type" : "MED",
  601. "name" : "hand-rolled cigarette",
  602. "description" : "A roll-your-own made from tobacco and rolling paper. Stimulates mental acuity and reduces appetite. Despite being hand crafted, it's still highly addictive and hazardous to health.",
  603. "weight" : 1,
  604. "volume" : 1,
  605. "price" : 90, "//" : "Tougher to market a hand rolled, could be anything in there.",
  606. "stack_size" : 60,
  607. "symbol" : "!",
  608. "color" : "dark_gray",
  609. "stim" : 1,
  610. "healthy" : -2,
  611. "fun" : 5,
  612. "addiction_potential" : 50,
  613. "addiction_type" : "nicotine",
  614. "use_action" : "SMOKING"
  615. },
  616. {
  617. "id" : "heroin",
  618. "type" : "COMESTIBLE",
  619. "comestible_type" : "MED",
  620. "name" : "heroin",
  621. "name_plural" : "heroin",
  622. "description" : "An extremely strong opioid narcotic derived from morphine. Incredibly addictive, the risk of overdose is extreme, and the drug is contraindicated for nearly all medical purposes.",
  623. "weight" : 1,
  624. "volume" : 1,
  625. "price" : 14000,
  626. "charges" : 4,
  627. "stack_size" : 100,
  628. "material" : "powder",
  629. "symbol" : "!",
  630. "color" : "light_gray",
  631. "container" : "bag_plastic",
  632. "stim" : -10,
  633. "healthy" : -5,
  634. "fun" : 50,
  635. "addiction_potential" : 75,
  636. "addiction_type" : "opiate",
  637. "use_action" : {
  638. "type" : "consume_drug",
  639. "activation_message" : "You shoot up.",
  640. "tools_needed" : { "syringe" : 1 },
  641. "effects" : [
  642. { "id" : "pkill3", "duration" : 80 },
  643. { "id" : "pkill2", "duration" : 200 },
  644. { "id" : "cough_suppress", "duration" : 1000 }
  645. ]
  646. }
  647. },
  648. {
  649. "id" : "iodine",
  650. "type" : "COMESTIBLE",
  651. "comestible_type" : "MED",
  652. "name" : "potassium iodide tablet",
  653. "description" : "Potassium iodide tablets. If taken prior to exposure, they help to mitigate injury caused by radiation absorption.",
  654. "weight" : 1,
  655. "volume" : 1,
  656. "price" : 1000,
  657. "charges" : 10,
  658. "stack_size" : 200,
  659. "symbol" : "!",
  660. "color" : "white",
  661. "use_action" : {
  662. "type" : "consume_drug",
  663. "activation_message" : "You take some potassium iodide.",
  664. "effects" : [ { "id" : "iodine", "duration" : 7200 } ]
  665. }
  666. },
  667. {
  668. "id" : "joint",
  669. "type" : "COMESTIBLE",
  670. "comestible_type" : "MED",
  671. "name" : "joint",
  672. "description" : "Marijuana, cannabis, pot. Whatever you want to call it, it's rolled up in a piece of paper and ready for smokin'.",
  673. "weight" : 1,
  674. "volume" : 1,
  675. "price" : 500,
  676. "stack_size" : 100,
  677. "symbol" : "!",
  678. "color" : "green",
  679. "quench" : -5,
  680. "stim" : -10,
  681. "healthy" : -1,
  682. "fun" : 15,
  683. "addiction_potential" : 5,
  684. "use_action" : "SMOKING"
  685. },
  686. {
  687. "id" : "lsd",
  688. "type" : "COMESTIBLE",
  689. "comestible_type" : "MED",
  690. "name" : "pink tablet",
  691. "description" : "Tiny pink candies shaped like hearts, already dosed with some sort of drug. Really only useful for entertainment. Will cause hallucinations.",
  692. "weight" : 1,
  693. "volume" : 1,
  694. "price" : 10000,
  695. "charges" : 5,
  696. "stack_size" : 100,
  697. "symbol" : "!",
  698. "color" : "pink",
  699. "stim" : 20,
  700. "fun" : 25,
  701. "use_action" : {
  702. "type" : "consume_drug",
  703. "activation_message" : "You eat the pink tablet.",
  704. "effects" : [ { "id" : "hallu", "duration" : 3600 } ]
  705. }
  706. },
  707. {
  708. "id" : "medical_gauze",
  709. "type" : "COMESTIBLE",
  710. "comestible_type" : "MED",
  711. "name" : "medical gauze",
  712. "description" : "This is decent sized piece of cotton, sterilized and sealed. It's designed for medical purposes.",
  713. "weight" : 90,
  714. "price" : 350,
  715. "material" : "cotton",
  716. "symbol" : ",",
  717. "color" : "white",
  718. "use_action" : {
  719. "type" : "heal",
  720. "bandages_power" : 4,
  721. "bleed" : 0.5,
  722. "move_cost" : 200
  723. }
  724. },
  725. {
  726. "id" : "meth",
  727. "type" : "COMESTIBLE",
  728. "comestible_type" : "MED",
  729. "name" : "low-grade methamphetamine",
  730. "name_plural" : "low-grade methamphetamine",
  731. "description" : "A profoundly addictive and powerful stimulant. While extremely effective at enhancing alertness, it is hazardous to health and the risk of an adverse reaction is great.",
  732. "weight" : 1,
  733. "volume" : 1,
  734. "price" : 15000,
  735. "charges" : 6,
  736. "stack_size" : 100,
  737. "material" : "powder",
  738. "symbol" : "!",
  739. "color" : "light_cyan",
  740. "container" : "bag_plastic",
  741. "quench" : -2,
  742. "stim" : 20,
  743. "healthy" : -7,
  744. "fun" : 30,
  745. "addiction_potential" : 50,
  746. "addiction_type" : "amphetamine",
  747. "use_action" : "METH"
  748. },
  749. {
  750. "id" : "morphine",
  751. "type" : "COMESTIBLE",
  752. "comestible_type" : "MED",
  753. "name" : "morphine",
  754. "description" : "A very strong semi-synthetic narcotic used to treat intense pain in hospital settings. This injectable drug is very addictive.",
  755. "weight" : 1,
  756. "volume" : 1,
  757. "price" : 4000,
  758. "charges" : 4,
  759. "stack_size" : 100,
  760. "material" : "powder",
  761. "symbol" : "!",
  762. "color" : "light_gray",
  763. "stim" : -5,
  764. "healthy" : -3,
  765. "fun" : 25,
  766. "addiction_potential" : 25,
  767. "addiction_type" : "opiate",
  768. "use_action" : {
  769. "type" : "consume_drug",
  770. "activation_message" : "You shoot up.",
  771. "tools_needed" : { "syringe" : 1 },
  772. "effects" : [ { "id" : "pkill3", "duration" : 20 },
  773. { "id" : "pkill2", "duration" : 200 } ]
  774. }
  775. },
  776. {
  777. "id" : "mugwort_oil",
  778. "type" : "COMESTIBLE",
  779. "comestible_type" : "MED",
  780. "name" : "mugwort oil",
  781. "description" : "Some essential oil made from mugwort, which may kill parasites when ingested. Consume it with water!",
  782. "weight" : 40,
  783. "volume" : 1,
  784. "price" : 0,
  785. "material" : "oil",
  786. "symbol" : "~",
  787. "color" : "yellow",
  788. "phase" : "liquid",
  789. "quench" : -50,
  790. "fun" : -5,
  791. "spoils_in" : 672,
  792. "use_action" : "ANTIPARASITIC",
  793. "flags" : "NPC_SAFE"
  794. },
  795. {
  796. "id" : "nic_gum",
  797. "type" : "COMESTIBLE",
  798. "comestible_type" : "MED",
  799. "name" : "nicotine gum",
  800. "description" : "Mint flavored nicotine chewing gum. For smokers who desire to quit.",
  801. "weight" : 4,
  802. "volume" : 1,
  803. "price" : 1000,
  804. "charges" : 10,
  805. "stack_size" : 100,
  806. "symbol" : "*",
  807. "color" : "yellow",
  808. "stim" : 2,
  809. "fun" : 1,
  810. "addiction_type" : "nicotine",
  811. "use_action" : "CHEW"
  812. },
  813. {
  814. "id" : "nyquil",
  815. "type" : "COMESTIBLE",
  816. "comestible_type" : "MED",
  817. "name" : "cough syrup",
  818. "name_plural" : "cough syrup",
  819. "description" : "Nighttime cold and flu medication. Useful when trying to sleep with a head full of virions. Will cause drowsiness.",
  820. "weight" : 48,
  821. "volume" : 1,
  822. "price" : 800,
  823. "charges" : 5,
  824. "symbol" : "~",
  825. "color" : "blue",
  826. "phase" : "liquid",
  827. "container" : "bottle_plastic_small",
  828. "stim" : -7,
  829. "addiction_potential" : 20,
  830. "addiction_type" : "sleeping pill",
  831. "use_action" : "FLUSLEEP"
  832. },
  833. {
  834. "id" : "oxycodone",
  835. "type" : "COMESTIBLE",
  836. "comestible_type" : "MED",
  837. "name" : "oxycodone",
  838. "description" : "A strong semi-synthetic narcotic used in the treatment of intense pain. Highly addictive.",
  839. "weight" : 1,
  840. "volume" : 1,
  841. "price" : 55000,"//" : "Fairly controlled substance as they go.",
  842. "charges" : 10,
  843. "stack_size" : 200,
  844. "symbol" : "!",
  845. "color" : "light_green",
  846. "healthy" : -1,
  847. "stim" : -4,
  848. "fun" : 18,
  849. "addiction_potential" : 16,
  850. "addiction_type" : "opiate",
  851. "use_action" : {
  852. "type" : "consume_drug",
  853. "activation_message" : "You take some oxycodone.",
  854. "effects" : [ { "id" : "pkill3", "duration" : 20 },
  855. { "id" : "pkill2", "duration" : 200 } ]
  856. }
  857. },
  858. {
  859. "id" : "pills_sleep",
  860. "type" : "COMESTIBLE",
  861. "comestible_type" : "MED",
  862. "name" : "Ambien",
  863. "description" : "A habit-forming tranquilizer with a variety of psychoactive side effects. Used in the treatment of insomnia. Its generic name is zolpidem tartrate.",
  864. "weight" : 1,
  865. "volume" : 1,
  866. "price" : 3000,
  867. "charges" : 10,
  868. "stack_size" : 200,
  869. "material" : "powder",
  870. "symbol" : "!",
  871. "color" : "light_red",
  872. "stim" : -8,
  873. "fun" : 5,
  874. "addiction_potential" : 40,
  875. "addiction_type" : "sleeping pill",
  876. "use_action" : "SLEEP"
  877. },
  878. {
  879. "id" : "poppy_pain",
  880. "type" : "COMESTIBLE",
  881. "comestible_type" : "MED",
  882. "name" : "poppy painkiller",
  883. "description" : "Potent opioid palliative produced by the refining of the mutated poppy. Notably devoid of euphoric or sedative effects, as an opiate it may still be addictive.",
  884. "weight" : 1,
  885. "volume" : 1,
  886. "price" : 3000,
  887. "charges" : 10,
  888. "stack_size" : 100,
  889. "material" : "powder",
  890. "symbol" : "!",
  891. "color" : "pink",
  892. "healthy" : -2,
  893. "addiction_potential" : 10,
  894. "addiction_type" : "opiate",
  895. "use_action" : {
  896. "type" : "consume_drug",
  897. "activation_message" : "You take some poppy painkiller.",
  898. "effects" : [ { "id" : "pkill2", "duration" : 180 } ]
  899. }
  900. },
  901. {
  902. "id" : "poppy_sleep",
  903. "type" : "COMESTIBLE",
  904. "comestible_type" : "MED",
  905. "name" : "poppy sleep",
  906. "description" : "A potent sleep aid extracted from mutated poppy seeds. Effective, but as an opiate, it may be addictive.",
  907. "weight" : 1,
  908. "volume" : 1,
  909. "price" : 2000,
  910. "charges" : 10,
  911. "stack_size" : 100,
  912. "material" : "powder",
  913. "symbol" : "!",
  914. "color" : "magenta",
  915. "healthy" : -2,
  916. "addiction_type" : "opiate",
  917. "use_action" : "SLEEP"
  918. },
  919. {
  920. "id" : "poppysyrup",
  921. "type" : "COMESTIBLE",
  922. "comestible_type" : "MED",
  923. "name" : "poppy cough syrup",
  924. "name_plural" : "poppy cough syrup",
  925. "description" : "Cough syrup made from mutated poppy. Will make you sleepy.",
  926. "weight" : 48,
  927. "volume" : 1,
  928. "price" : 2500,
  929. "charges" : 5,
  930. "symbol" : "~",
  931. "color" : "magenta",
  932. "phase" : "liquid",
  933. "container" : "bottle_plastic_small",
  934. "stim" : -3,
  935. "healthy" : -1,
  936. "addiction_potential" : 15,
  937. "addiction_type" : "sleeping pill",
  938. "use_action" : "FLUSLEEP"
  939. },
  940. {
  941. "id" : "prozac",
  942. "type" : "COMESTIBLE",
  943. "comestible_type" : "MED",
  944. "name" : "Prozac",
  945. "description" : "A common and popular antidepressant. It will elevate mood, and can profoundly affect the action of other drugs. It is only rarely habit-forming, though adverse reactions are not uncommon. Its generic name is fluoxetine.",
  946. "weight" : 1,
  947. "volume" : 1,
  948. "price" : 9000, "//" : "Don't have a cite for this one.",
  949. "charges" : 15,
  950. "stack_size" : 200,
  951. "symbol" : "!",
  952. "color" : "light_green",
  953. "stim" : -5,
  954. "addiction_potential" : 5,
  955. "addiction_type" : "amphetamine",
  956. "use_action" : "PROZAC"
  957. },
  958. {
  959. "id" : "prussian_blue",
  960. "type" : "COMESTIBLE",
  961. "comestible_type" : "MED",
  962. "name" : "Prussian blue tablet",
  963. "description" : "Tablets containing oxidized ferrous ferrocyanide salts. Capable of purging nuclear contaminants from the body if taken after radiation exposure.",
  964. "weight" : 1,
  965. "volume" : 1,
  966. "price" : 3000,
  967. "charges" : 10,
  968. "stack_size" : 200,
  969. "material" : "powder",
  970. "flags" : "NPC_SAFE",
  971. "symbol" : "!",
  972. "color" : "blue",
  973. "use_action" : {
  974. "type" : "consume_drug",
  975. "activation_message" : "You take some Prussian blue.",
  976. "effects" : [ { "id" : "pblue", "duration" : 3600 } ]
  977. }
  978. },
  979. {
  980. "id" : "quikclot",
  981. "type" : "COMESTIBLE",
  982. "comestible_type" : "MED",
  983. "name" : "hemostatic powder",
  984. "name_plural" : "hemostatic powder",
  985. "description" : "A powdered antihemorrhagic compound that reacts with blood to immediately form a gel-like substance that stops bleeding.",
  986. "weight" : 5,
  987. "volume" : 1,
  988. "price" : 550,
  989. "charges" : 6,
  990. "stack_size" : 60,
  991. "material" : "powder",
  992. "symbol" : "!",
  993. "color" : "light_gray",
  994. "container" : "bag_plastic",
  995. "use_action" : {
  996. "type" : "heal",
  997. "bleed" : 0.9,
  998. "move_cost" : 100
  999. }
  1000. },
  1001. {
  1002. "id" : "saline",
  1003. "type" : "COMESTIBLE",
  1004. "comestible_type" : "MED",
  1005. "name" : "saline solution",
  1006. "description" : "A solution of sterilized water and salt for intravenous infusion or washing contaminants from one's eyes.",
  1007. "weight" : 51,
  1008. "volume" : 1,
  1009. "price" : 500,
  1010. "charges" : 5,
  1011. "symbol" : "~",
  1012. "color" : "light_cyan",
  1013. "phase" : "liquid",
  1014. "container" : "bottle_plastic_small",
  1015. "use_action" : "EYEDROPS",
  1016. "flags" : "NPC_SAFE"
  1017. },
  1018. {
  1019. "id" : "thorazine",
  1020. "type" : "COMESTIBLE",
  1021. "comestible_type" : "MED",
  1022. "name" : "Thorazine",
  1023. "description" : "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest hallucinations and other symptoms of psychosis. Carries a sedative effect. Its generic name is chlorpromazine.",
  1024. "weight" : 1,
  1025. "volume" : 1,
  1026. "price" : 5000,
  1027. "charges" : 10,
  1028. "stack_size" : 200,
  1029. "symbol" : "!",
  1030. "color" : "light_red",
  1031. "stim" : -30,
  1032. "use_action" : "THORAZINE"
  1033. },
  1034. {
  1035. "id" : "thyme_oil",
  1036. "type" : "COMESTIBLE",
  1037. "comestible_type" : "MED",
  1038. "name" : "thyme oil",
  1039. "description" : "Some essential oil made from thyme, which can act as a mildly irritating disinfectant.",
  1040. "weight" : 40,
  1041. "volume" : 1,
  1042. "price" : 0,
  1043. "material" : "oil",
  1044. "symbol" : "~",
  1045. "color" : "yellow",
  1046. "phase" : "liquid",
  1047. "spoils_in" : 672,
  1048. "use_action" : {
  1049. "type" : "heal",
  1050. "disinfectant_power" : 3,
  1051. "bite" : 0.95,
  1052. "move_cost" : 100
  1053. }
  1054. },
  1055. {
  1056. "id" : "tobacco",
  1057. "type" : "COMESTIBLE",
  1058. "comestible_type" : "MED",
  1059. "name" : "rolling tobacco",
  1060. "description" : "Loose, fine-cut tobacco leaves. Popular in Europe and among hipsters. Highly addictive and hazardous to health.\nCan either be rolled into a cigarette with some rolling papers or smoked through a pipe.",
  1061. "weight" : 1,
  1062. "volume" : 1,
  1063. "price" : 1100,
  1064. "charges" : 20,
  1065. "stack_size" : 60,
  1066. "symbol" : "!",
  1067. "color" : "brown",
  1068. "container" : "bag_plastic",
  1069. "stim" : 1,
  1070. "healthy" : -2,
  1071. "fun" : 5,
  1072. "addiction_potential" : 50,
  1073. "addiction_type" : "nicotine",
  1074. "use_action" : {
  1075. "type" : "consume_drug",
  1076. "activation_message" : "You smoke some tobacco.",
  1077. "effects" : [ { "id" : "cig", "duration" : 200 } ],
  1078. "stat_adjustments" : { "hunger" : -2, "thirst" : 1 },
  1079. "fields_produced" : { "fd_cigsmoke" : 2 },
  1080. "charges_needed" : { "fire" : 1 },
  1081. "tools_needed" : { "apparatus" : -1 },
  1082. "moves" : 250
  1083. }
  1084. },
  1085. {
  1086. "id" : "tramadol",
  1087. "type" : "COMESTIBLE",
  1088. "comestible_type" : "MED",
  1089. "name" : "tramadol",
  1090. "description" : "A painkiller used to manage moderate pain. The effects last for several hours, but are relatively subdued for an opioid.",
  1091. "weight" : 1,
  1092. "volume" : 1,
  1093. "price" : 24500,
  1094. "charges" : 10,
  1095. "stack_size" : 200,
  1096. "symbol" : "!",
  1097. "color" : "yellow",
  1098. "fun" : 6,
  1099. "addiction_potential" : 6,
  1100. "addiction_type" : "opiate",
  1101. "use_action" : {
  1102. "type" : "consume_drug",
  1103. "activation_message" : "You take some tramadol.",
  1104. "effects" : [ { "id" : "pkill_l", "duration" : 4500 } ]
  1105. }
  1106. },
  1107. {
  1108. "id" : "vaccine_shot",
  1109. "type" : "COMESTIBLE",
  1110. "comestible_type" : "MED",
  1111. "name" : "gamma globulin shot",
  1112. "description" : "This immunoglobulin booster contains concentrated antibodies prepared for intravenous injection to temporarily strengthen the immune system. It is still in its original packaging.",
  1113. "weight" : 10,
  1114. "volume" : 1,
  1115. "price" : 5000, "//" : "Yeah, kinda guessing at these ones.",
  1116. "stack_size" : 40,
  1117. "material" : "plastic",
  1118. "symbol" : "!",
  1119. "color" : "magenta",
  1120. "use_action" : "VACCINE",
  1121. "flags" : [ "NPC_SAFE", "TRADER_AVOID" ]
  1122. },
  1123. {
  1124. "id" : "vitamins",
  1125. "type" : "COMESTIBLE",
  1126. "comestible_type" : "MED",
  1127. "name" : "multivitamin",
  1128. "description" : "Essential dietary nutrients conveniently packaged in pill form. An option of last resort when a balanced diet is not possible. Excess use can cause hypervitaminosis.",
  1129. "weight" : 1,
  1130. "volume" : 1,
  1131. "price" : 500,
  1132. "price_postapoc": 5000,
  1133. "charges" : 20,
  1134. "stack_size" : 20,
  1135. "symbol" : "!",
  1136. "color" : "magenta",
  1137. "use_action" : {
  1138. "type" : "consume_drug",
  1139. "activation_message" : "You take the %s.",
  1140. "vitamins": [
  1141. [ "calcium", 24, 48 ],
  1142. [ "iron", 24, 48 ],
  1143. [ "vitA", 24, 48 ],
  1144. [ "vitB", 24, 48 ],
  1145. [ "vitC", 24, 48 ]
  1146. ]
  1147. }
  1148. },
  1149. {
  1150. "id" : "calcium_tablet",
  1151. "type" : "COMESTIBLE",
  1152. "comestible_type" : "MED",
  1153. "name" : "calcium tablet",
  1154. "description" : "White calcium tablets. Widely used by elderly people with osteoporosis as a method to supplement calcium before the apocalypse.",
  1155. "weight" : 1,
  1156. "volume" : 1,
  1157. "price" : 400,
  1158. "price_postapoc": 4000,
  1159. "charges" : 20,
  1160. "stack_size" : 20,
  1161. "symbol" : "!",
  1162. "color" : "magenta",
  1163. "use_action" : {
  1164. "type" : "consume_drug",
  1165. "activation_message" : "You take the %s.",
  1166. "vitamins": [
  1167. [ "calcium", 75 ]
  1168. ]
  1169. }
  1170. },
  1171. {
  1172. "id" : "bonemeal_tablet",
  1173. "type" : "COMESTIBLE",
  1174. "comestible_type" : "MED",
  1175. "name" : "bone meal tablet",
  1176. "description" : "Homemade calcium supplement made out of bone meal. Tastes horribly and is hard to swallow but it does its job.",
  1177. "weight" : 2,
  1178. "volume" : 2,
  1179. "price" : 10,
  1180. "fun" : -8,
  1181. "price_postapoc": 1000,
  1182. "charges" : 40,
  1183. "healthy" : -2,
  1184. "stack_size" : 40,
  1185. "symbol" : "!",
  1186. "color" : "white",
  1187. "looks_like" : "calcium_tablet",
  1188. "use_action" : {
  1189. "type" : "consume_drug",
  1190. "activation_message" : "You take the %s.",
  1191. "vitamins": [
  1192. [ "calcium", 24 ]
  1193. ]
  1194. }
  1195. },
  1196. {
  1197. "id" : "flavored_bonemeal_tablet",
  1198. "type" : "COMESTIBLE",
  1199. "comestible_type" : "MED",
  1200. "name" : "flavored bone meal tablet",
  1201. "description" : "Homemade calcium supplement made out of bone meal. Due to some sweetness mixed in to counteract the powdery texture and the taste of ash, almost as palatable as the pre-cataclysm tablets.",
  1202. "weight" : 2,
  1203. "volume" : 2,
  1204. "price" : 300,
  1205. "fun" : -2,
  1206. "price_postapoc": 3800,
  1207. "charges" : 42,
  1208. "healthy" : -2,
  1209. "stack_size" : 42,
  1210. "symbol" : "!",
  1211. "color" : "orange",
  1212. "looks_like" : "calcium_tablet",
  1213. "use_action" : {
  1214. "type" : "consume_drug",
  1215. "activation_message" : "You take the %s.",
  1216. "vitamins": [
  1217. [ "calcium", 23 ]
  1218. ]
  1219. }
  1220. },
  1221. {
  1222. "id" : "gummy_vitamins",
  1223. "copy-from": "vitamins",
  1224. "type" : "COMESTIBLE",
  1225. "name" : "gummy vitamin",
  1226. "description" : "Essential dietary nutrients conveniently packaged in a fruit-flavored chewy candy form. An option of last resort when a balanced diet is not possible. Excess use can cause hypervitaminosis.",
  1227. "fun" : 4,
  1228. "charges" : 10,
  1229. "stack_size" : 10
  1230. },
  1231. {
  1232. "id" : "inj_vitb",
  1233. "type" : "COMESTIBLE",
  1234. "comestible_type" : "MED",
  1235. "name" : "injectable vitamin B",
  1236. "description" : "Small vials of pale yellow liquid containing soluble vitamin B for injection.",
  1237. "weight" : 40,
  1238. "volume" : 1,
  1239. "price" : 150,
  1240. "price_postapoc": 1500,
  1241. "charges" : 2,
  1242. "stack_size" : 10,
  1243. "symbol" : "!",
  1244. "color" : "magenta",
  1245. "use_action" : {
  1246. "type" : "consume_drug",
  1247. "activation_message" : "You inject some vitamin B.",
  1248. "tools_needed" : { "syringe" : -1 },
  1249. "vitamins": [ [ "vitB", 100 ] ]
  1250. }
  1251. },
  1252. {
  1253. "id" : "inj_iron",
  1254. "type" : "COMESTIBLE",
  1255. "comestible_type" : "MED",
  1256. "name" : "injectable iron",
  1257. "description" : "Small vials of dark yellow liquid containing soluble iron for injection.",
  1258. "weight" : 40,
  1259. "volume" : 1,
  1260. "price" : 2000,
  1261. "price_postapoc": 2500,
  1262. "charges" : 2,
  1263. "stack_size" : 10,
  1264. "symbol" : "!",
  1265. "color" : "magenta",
  1266. "use_action" : {
  1267. "type" : "consume_drug",
  1268. "activation_message" : "You inject some iron.",
  1269. "tools_needed" : { "syringe" : -1 },
  1270. "vitamins": [ [ "iron", 100 ] ]
  1271. }
  1272. },
  1273. {
  1274. "id" : "weed",
  1275. "type" : "COMESTIBLE",
  1276. "comestible_type" : "MED",
  1277. "name" : "marijuana",
  1278. "name_plural" : "marijuana",
  1279. "description" : "The dried flower buds and leaves harvested from a psychoactive variety of hemp plant. Used to reduce nausea, stimulate appetite and elevate mood. It can be habit-forming, and adverse reactions are possible.",
  1280. "weight" : 1,
  1281. "volume" : 1,
  1282. "price" : 2500,
  1283. "charges" : 5,
  1284. "stack_size" : 100,
  1285. "symbol" : "!",
  1286. "color" : "green",
  1287. "quench" : -5,
  1288. "stim" : -10,
  1289. "healthy" : -1,
  1290. "fun" : 15,
  1291. "addiction_potential" : 5,
  1292. "use_action" : {
  1293. "type" : "consume_drug",
  1294. "activation_message" : "You smoke some weed. Good stuff, man!",
  1295. "effects" : [ { "id" : "weed_high", "duration" : 90 },
  1296. { "id" : "pkill1", "duration" : 60 } ],
  1297. "stat_adjustments" : { "hunger" : 4, "thirst" : 6 },
  1298. "fields_produced" : {"fd_weedsmoke" : 2},
  1299. "charges_needed" : { "fire" : 1 },
  1300. "tools_needed" : { "apparatus" : -1 },
  1301. "moves" : 40
  1302. }
  1303. },
  1304. {
  1305. "id" : "xanax",
  1306. "type" : "COMESTIBLE",
  1307. "comestible_type" : "MED",
  1308. "name" : "Xanax",
  1309. "name_plural" : "Xanax",
  1310. "description" : "Anti-anxiety agent with a powerful sedative effect. May cause dissociation and loss of memory. It is dangerously addictive, and withdrawal from regular use should be gradual. Its generic name is alprazolam.",
  1311. "weight" : 1,
  1312. "volume" : 1,
  1313. "price" : 6000, "//" : "Yeah, kinda guessing at these ones, but generic is cheaper.",
  1314. "charges" : 10,
  1315. "stack_size" : 200,
  1316. "symbol" : "!",
  1317. "color" : "cyan",
  1318. "stim" : -4,
  1319. "healthy" : -2,
  1320. "fun" : 20,
  1321. "addiction_potential" : 40,
  1322. "addiction_type" : "sleeping pill",
  1323. "use_action" : "XANAX"
  1324. },
  1325. {
  1326. "id" : "disinrag",
  1327. "type" : "COMESTIBLE",
  1328. "comestible_type" : "MED",
  1329. "name" : "disinfectant soaked rag",
  1330. "name_plural" : "disinfectant soaked rags",
  1331. "description" : "A rag soaked in disinfectant.",
  1332. "weight" : 80, "//" : "Can't copy-from rag, it breaks the stacking for some reason!",
  1333. "volume" : 1,
  1334. "price" : 250,
  1335. "material": "cotton",
  1336. "symbol": ",",
  1337. "color": "white",
  1338. "use_action" : {
  1339. "type" : "heal",
  1340. "disinfectant_power" : 4,
  1341. "bite" : 0.75,
  1342. "move_cost" : 200,
  1343. "used_up_item" : { "id": "rag", "quantity": 1, "flags": [ "FILTHY" ] }
  1344. }
  1345. },
  1346. {
  1347. "id" : "disincotton_ball",
  1348. "copy-from" : "cotton_ball",
  1349. "type" : "COMESTIBLE",
  1350. "name" : "disinfectant soaked cotton balls",
  1351. "name_plural" : "disinfectant soaked cotton balls",
  1352. "description" : "Fluffy balls of clean white cotton. Now soaked with disinfectant, they are useful to disinfect a wound.",
  1353. "category" : "drugs",
  1354. "price" : 1000,
  1355. "charges" : 1,
  1356. "use_action" : {
  1357. "type" : "heal",
  1358. "disinfectant_power" : 4,
  1359. "bite" : 0.95,
  1360. "move_cost" : 300,
  1361. "used_up_item" : { "id": "cotton_ball", "quantity": 1, "charges": 1, "flags": [ "FILTHY" ] }
  1362. }
  1363. },
  1364. {
  1365. "id" : "weak_antibiotic",
  1366. "type" : "COMESTIBLE",
  1367. "comestible_type" : "MED",
  1368. "name" : "Atreyupan",
  1369. "name_plural" : "Atreyupan",
  1370. "description" : "A broad-spectrum antibiotic used to suppress infections and prevent them from setting in. It isn't strong enough to purge infections outright, but it boosts the body's resistance against them. One dose lasts twelve hours.",
  1371. "weight" : 15,
  1372. "volume" : 1,
  1373. "price" : 1500,
  1374. "charges" : 5,
  1375. "stack_size" : 200,
  1376. "material" : "plastic",
  1377. "symbol" : "!",
  1378. "color" : "white",
  1379. "healthy" : -2,
  1380. "use_action" : "WEAK_ANTIBIOTIC",
  1381. "flags" : "NPC_SAFE"
  1382. },
  1383. {
  1384. "id" : "panacea",
  1385. "type" : "COMESTIBLE",
  1386. "comestible_type" : "MED",
  1387. "name" : "Panaceus",
  1388. "name_plural" : "Panaceii",
  1389. "description" : "An apple-red gel capsule the size of your thumbnail, filled with a thick oily liquid that shifts from black to purple at unpredictable intervals, flecked with tiny gray dots. Given the place you got it from, it's either very potent, or highly experimental. Holding it, all the little aches and pains seem to fade, just for a moment...",
  1390. "weight" : 15,
  1391. "volume" : 1,
  1392. "price" : 1000000,
  1393. "stack_size" : 5,
  1394. "material" : "plastic",
  1395. "symbol" : "!",
  1396. "color" : "red",
  1397. "healthy" : 25,
  1398. "use_action" : "PANACEA",
  1399. "flags" : "NPC_SAFE"
  1400. }
  1401. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement