1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
--- a/data/json/bionics.json
+++ b/data/json/bionics.json
@@ -338,7 +338,7 @@
"name": { "str": "Enhanced Hearing" },
"description": "When this bionic is active, your hearing will be drastically improved, allowing you to hear ten times better than the average person. Additionally, high-intensity sounds will be automatically dampened before they can damage your hearing.",
"occupied_bodyparts": [ [ "head", 3 ] ],
- "flags": [ "BIONIC_TOGGLED" ],
+ "flags": [ "BIONIC_TOGGLED", "BIONIC_NPC_USABLE" ],
"included_bionics": [ "bio_earplugs" ]
},
{
@@ -1200,6 +1200,6 @@
"name": { "str": "Soporific Induction" },
"description": "An electrode has been implanted into your brain's ventrolateral preoptic nucleus. It turns on whenever you're trying to fall asleep, creating an artificial but effective sensation of fatigue.",
"occupied_bodyparts": [ [ "head", 1 ] ],
- "flags": [ "BIONIC_TOGGLED" ]
+ "flags": [ "BIONIC_TOGGLED", "BIONIC_NPC_USABLE" ]
},
{
"id": "bn_bio_solar",
--- a/data/json/items/bionics.json
+++ b/data/json/items/bionics.json
@@ -268,7 +268,7 @@
},
{
"id": "bio_ears",
- "copy-from": "bionic_general",
+ "copy-from": "bionic_general_npc_usable",
"type": "BIONIC_ITEM",
"name": { "str": "Enhanced Hearing CBM" },
"looks_like": "bio_int_enhancer",
@@ -743,7 +743,7 @@
},
{
"id": "bio_fuel_cell_gasoline",
- "copy-from": "bionic_general",
+ "copy-from": "bionic_general_npc_usable",
"type": "BIONIC_ITEM",
"name": { "str": "Gasoline Fuel Cell CBM" },
"looks_like": "bio_int_enhancer",
@@ -841,7 +841,7 @@
},
{
"id": "bio_surgical_razor",
- "copy-from": "bionic_general",
+ "copy-from": "bionic_general_npc_usable",
"type": "BIONIC_ITEM",
"name": { "str": "Autonomous Surgical Scalpels CBM" },
"looks_like": "bio_int_enhancer",
|