From 55304d193c2a517473455f87056bc65ce8d6611d Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Thu, 9 Nov 2023 12:22:49 +0100 Subject: [PATCH 01/25] Introduced mi-go weakpoint/proficiencies+mi-go harvest --- data/json/harvest.json | 11 +++ data/json/items/comestibles/carnivore.json | 53 +++++++++++ data/json/materials.json | 33 +++++++ .../monster_weakpoints/migo_weakpoints.json | 90 +++++++++++++++++++ data/json/monsters/mi-go.json | 56 ++++++------ data/json/proficiencies/weakpoints.json | 23 +++++ data/json/snippets/mi-go_anatomy.json | 34 +++++++ 7 files changed, 272 insertions(+), 28 deletions(-) create mode 100644 data/json/monster_weakpoints/migo_weakpoints.json create mode 100644 data/json/snippets/mi-go_anatomy.json diff --git a/data/json/harvest.json b/data/json/harvest.json index e3077254b4e40..212747f738868 100644 --- a/data/json/harvest.json +++ b/data/json/harvest.json @@ -2603,5 +2603,16 @@ { "drop": "raw_fur", "type": "skin", "mass_ratio": 0.02 }, { "drop": "fat", "type": "flesh", "mass_ratio": 0.07 } ] + }, + { + "id": "mi-go", + "//": "The various mi-go variants", + "type": "harvest", + "message": "", + "entries": [ + { "drop": "meat_mi-go", "type": "flesh", "mass_ratio": 0.25 }, + { "drop": "blood_mi-go", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "bone_mi-go", "type": "bone", "mass_ratio": 0.1 } + ] } ] diff --git a/data/json/items/comestibles/carnivore.json b/data/json/items/comestibles/carnivore.json index fd389954a0522..976c4d5c0ae88 100644 --- a/data/json/items/comestibles/carnivore.json +++ b/data/json/items/comestibles/carnivore.json @@ -1898,5 +1898,58 @@ "fun": 6, "weight": "298 g", "flags": [ "EATEN_HOT" ] + }, + { + "type": "COMESTIBLE", + "id": "meat_mi-go", + "category": "other", + "name": { "str": "chunk of mi-go meat", "str_pl": "chunks of mi-go meat" }, + "weight": "238 g", + "color": "pink", + "spoils_in": "90 days", + "//": "It's so alien few micro organisms are able to degrade it.", + "use_action": [ "POISON" ], + "comestible_type": "FOOD", + "symbol": "%", + "calories": 0, + "description": "A piece of mi-go meat that's obviously alien, given its pink color, odd odor, and strange texture. It would not be advisable to try to eat it.", + "price": 0, + "price_postapoc": 0, + "material": [ "mi-go_flesh" ], + "volume": "250 ml", + "fun": -10, + "flags": [ "TRADER_AVOID", "NUTRIENT_OVERRIDE" ] + }, + { + "id": "blood_mi-go", + "type": "COMESTIBLE", + "copy-from": "meat_mi-go", + "name": { "str_sp": "mi-go blood" }, + "description": "Mi-go blood that's obviously alien, given its pink color and strange odor. It would not be advisable to try to eat it.", + "comestible_type": "DRINK", + "looks_like": "blood", + "symbol": "~", + "material": "mi-go_blood", + "charges": 1, + "phase": "liquid" + }, + { + "type": "COMESTIBLE", + "id": "bone_mi-go", + "category": "other", + "name": { "str": "mi-go bone" }, + "weight": "350 g", + "color": "light_green", + "use_action": [ "POISON" ], + "comestible_type": "FOOD", + "symbol": "%", + "calories": 0, + "description": "A bone from a mi-go. It's stronger than normal bone, so it might have some uses if you could figure one out, which you doubt you could, but it's unlikely it can replace any chemical usages for normal bone.", + "price": 0, + "price_postapoc": 0, + "material": [ "mi-go_bone" ], + "volume": "250 ml", + "fun": -10, + "flags": [ "NO_SALVAGE" ] } ] diff --git a/data/json/materials.json b/data/json/materials.json index 1cd22fdb7b86b..3ee8dd5a361cd 100644 --- a/data/json/materials.json +++ b/data/json/materials.json @@ -2890,5 +2890,38 @@ "soft": true, "burn_products": [ [ "corpse_ash", 0.035 ] ], "resist": { "bash": 2.2, "cut": 3.5, "acid": 7, "heat": 1, "bullet": 1.4 } + }, + { + "type": "material", + "id": "mi-go_flesh", + "name": "Mi-go Flesh", + "copy-from": "flesh", + "edible": false + }, + { + "type": "material", + "id": "mi-go_blood", + "name": "Mi-go Blood", + "copy-from": "water", + "edible": false + }, + { + "type": "material", + "id": "mi-go_bone", + "name": "Mi-go Bone", + "density": 2.0, + "specific_heat_liquid": 1.2, + "specific_heat_solid": 1.2, + "latent_heat": 200, + "edible": false, + "rotting": true, + "chip_resist": 12, + "wind_resist": 90, + "repaired_with": "bone_mi-go", + "dmg_adj": [ "scratched", "cut", "cracked", "shattered" ], + "bash_dmg_verb": "cracked", + "cut_dmg_verb": "chipped", + "resist": { "bash": 3, "cut": 4, "acid": 10, "heat": 2, "bullet": 2 }, + "repair_difficulty": 7 } ] diff --git a/data/json/monster_weakpoints/migo_weakpoints.json b/data/json/monster_weakpoints/migo_weakpoints.json new file mode 100644 index 0000000000000..5635626e597b5 --- /dev/null +++ b/data/json/monster_weakpoints/migo_weakpoints.json @@ -0,0 +1,90 @@ +[ + { + "type": "weakpoint_set", + "id": "wps_mi-go", + "weakpoints": [ + { + "id": "arm", + "name": "the arm", + "crit_mult": { "all": 0.75 }, + "difficulty": { "ranged": 4, "melee": 3 }, + "coverage_mult": { "point": 0.75 }, + "effects": [ + { "effect": "staggered", "chance": 15, "message": "The %s is knocked off-balance!", "damage_required": [ 10, 30 ] }, + { + "effect": "staggered", + "chance": 25, + "message": "The %s is knocked off-balance!", + "damage_required": [ 31, 100 ] + } + ], + "coverage": 6 + }, + { + "id": "leg", + "name": "the leg", + "crit_mult": { "all": 0.75 }, + "difficulty": { "ranged": 4, "melee": 3 }, + "coverage_mult": { "point": 0.75 }, + "effects": [ + { "effect": "staggered", "chance": 15, "message": "The %s is tripped off-balance!", "damage_required": [ 10, 30 ] }, + { + "effect": "staggered", + "chance": 25, + "message": "The %s is tripped off-balance!", + "damage_required": [ 31, 100 ] + } + ], + "coverage": 15 + }, + { + "id": "wing", + "name": "the wing", + "crit_mult": { "all": 0.75 }, + "difficulty": { "ranged": 4, "melee": 3 }, + "coverage_mult": { "point": 0.75 }, + "effects": [ + { "effect": "staggered", "chance": 15, "message": "The %s is pushed off-balance!", "damage_required": [ 10, 30 ] }, + { + "effect": "staggered", + "chance": 25, + "message": "The %s is pushed off-balance!", + "damage_required": [ 31, 100 ] + } + ], + "coverage": 2 + }, + { + "id": "head", + "name": "the head", + "coverage": 5, + "crit_mult": { "all": 1.1 }, + "armor_mult": { "physical": 0.75 }, + "difficulty": { "ranged": 5, "melee": 4 }, + "effects": [ + { + "effect": "stunned", + "duration": [ 1, 1 ], + "chance": 5, + "message": "The %s is stunned!", + "damage_required": [ 5, 10 ] + }, + { + "effect": "stunned", + "duration": [ 1, 1 ], + "chance": 25, + "message": "The %s is stunned!", + "damage_required": [ 11, 50 ] + }, + { + "effect": "stunned", + "duration": [ 1, 1 ], + "chance": 45, + "message": "The %s is stunned!", + "damage_required": [ 51, 100 ] + } + ] + } + ] + } +] diff --git a/data/json/monsters/mi-go.json b/data/json/monsters/mi-go.json index e96ceaafb5cfb..57ed0ade819b5 100644 --- a/data/json/monsters/mi-go.json +++ b/data/json/monsters/mi-go.json @@ -11,7 +11,7 @@ "weight": "120 kg", "hp": 210, "speed": 120, - "material": [ "flesh" ], + "material": [ "mi-go_flesh" ], "symbol": "&", "color": "pink", "aggression": 20, @@ -24,9 +24,9 @@ "bleed_rate": 75, "vision_day": 50, "vision_night": 20, - "weakpoint_sets": [ "wps_natural_armor" ], - "families": [ "prof_wp_nat_armored" ], - "harvest": "zombie_meatslug", + "weakpoint_sets": [ "wps_mi-go", "wps_natural_armor" ], + "families": [ "prof_wp_mi-go_basic", "prof_wp_mi-go_advanced", "prof_wp_nat_armored" ], + "harvest": "mi-go", "path_settings": { "max_dist": 50, "allow_open_doors": true, "avoid_traps": true, "avoid_sharp": true }, "scents_ignored": [ "sc_fetid" ], "special_attacks": [ @@ -63,7 +63,7 @@ "weight": "120 kg", "hp": 240, "speed": 120, - "material": [ "flesh" ], + "material": [ "mi-go_flesh" ], "symbol": "&", "color": "pink", "aggression": 20, @@ -76,9 +76,9 @@ "bleed_rate": 50, "vision_day": 50, "vision_night": 20, - "harvest": "zombie_meatslug", - "weakpoint_sets": [ "wps_natural_armor" ], - "families": [ "prof_wp_nat_armored" ], + "harvest": "mi-go", + "weakpoint_sets": [ "wps_mi-go", "wps_natural_armor" ], + "families": [ "prof_wp_mi-go_basic", "prof_wp_mi-go_advanced", "prof_wp_nat_armored" ], "path_settings": { "max_dist": 50, "allow_open_doors": true, "avoid_traps": true, "avoid_sharp": true }, "scents_ignored": [ "sc_fetid" ], "special_attacks": [ @@ -121,7 +121,7 @@ "weight": "110 kg", "hp": 160, "speed": 120, - "material": [ "flesh" ], + "material": [ "mi-go_flesh" ], "symbol": "&", "color": "red", "aggression": 20, @@ -134,9 +134,9 @@ "bleed_rate": 75, "vision_day": 50, "vision_night": 20, - "harvest": "zombie_meatslug", - "weakpoint_sets": [ "wps_natural_armor" ], - "families": [ "prof_wp_nat_armored" ], + "harvest": "mi-go", + "weakpoint_sets": [ "wps_mi-go", "wps_natural_armor" ], + "families": [ "prof_wp_mi-go_basic", "prof_wp_mi-go_advanced", "prof_wp_nat_armored" ], "path_settings": { "max_dist": 50, "allow_open_doors": true, "avoid_traps": true, "avoid_sharp": true }, "scents_ignored": [ "sc_fetid" ], "special_attacks": [ @@ -173,7 +173,7 @@ "weight": "190 kg", "hp": 350, "speed": 110, - "material": [ "flesh" ], + "material": [ "mi-go_flesh" ], "symbol": "&", "color": "pink", "aggression": 20, @@ -186,9 +186,9 @@ "bleed_rate": 50, "vision_day": 50, "vision_night": 20, - "harvest": "zombie_meatslug", - "weakpoint_sets": [ "wps_natural_armor" ], - "families": [ "prof_wp_nat_armored" ], + "harvest": "mi-go", + "weakpoint_sets": [ "wps_mi-go", "wps_natural_armor" ], + "families": [ "prof_wp_mi-go_basic", "prof_wp_mi-go_advanced", "prof_wp_nat_armored" ], "path_settings": { "max_dist": 50, "allow_open_doors": true, "avoid_traps": true, "avoid_sharp": true }, "scents_ignored": [ "sc_fetid" ], "special_attacks": [ @@ -234,7 +234,7 @@ "weight": "260 kg", "hp": 610, "speed": 80, - "material": [ "flesh" ], + "material": [ "mi-go_flesh" ], "symbol": "&", "color": "light_gray", "aggression": 20, @@ -247,9 +247,9 @@ "bleed_rate": 25, "vision_day": 50, "vision_night": 25, - "harvest": "zombie_meatslug", - "weakpoint_sets": [ "wps_natural_armor" ], - "families": [ "prof_wp_nat_armored" ], + "harvest": "mi-go", + "weakpoint_sets": [ "wps_mi-go", "wps_natural_armor" ], + "families": [ "prof_wp_mi-go_basic", "prof_wp_mi-go_advanced", "prof_wp_nat_armored" ], "path_settings": { "max_dist": 50, "allow_open_doors": true, "avoid_traps": true, "avoid_sharp": true }, "scents_ignored": [ "sc_fetid" ], "special_attacks": [ @@ -294,7 +294,7 @@ "volume": "875 L", "weight": "260 kg", "hp": 20, - "material": [ "flesh" ], + "material": [ "mi-go_flesh" ], "symbol": "&", "color": "light_gray", "aggression": 20, @@ -302,9 +302,9 @@ "bleed_rate": 25, "vision_day": 50, "vision_night": 25, - "harvest": "zombie_meatslug", - "weakpoint_sets": [ "wps_natural_armor" ], - "families": [ "prof_wp_nat_armored" ], + "harvest": "mi-go", + "weakpoint_sets": [ "wps_mi-go", "wps_natural_armor" ], + "families": [ "prof_wp_mi-go_basic", "prof_wp_mi-go_advanced", "prof_wp_nat_armored" ], "scents_ignored": [ "sc_fetid" ], "special_attacks": [ [ "PARROT", 4 ] ], "flags": [ @@ -333,7 +333,7 @@ "weight": "90 kg", "hp": 200, "speed": 120, - "material": [ "flesh" ], + "material": [ "mi-go_flesh" ], "symbol": "&", "color": "red", "aggression": 20, @@ -346,9 +346,9 @@ "bleed_rate": 25, "vision_day": 50, "vision_night": 25, - "harvest": "zombie_meatslug", - "weakpoint_sets": [ "wps_natural_armor" ], - "families": [ "prof_wp_nat_armored" ], + "harvest": "mi-go", + "weakpoint_sets": [ "wps_mi-go", "wps_natural_armor" ], + "families": [ "prof_wp_mi-go_basic", "prof_wp_mi-go_advanced", "prof_wp_nat_armored" ], "path_settings": { "max_dist": 50, "allow_open_doors": true, "avoid_traps": true, "avoid_sharp": true }, "scents_ignored": [ "sc_fetid" ], "special_attacks": [ diff --git a/data/json/proficiencies/weakpoints.json b/data/json/proficiencies/weakpoints.json index bc34cfe9ebc6e..35c8148741daf 100644 --- a/data/json/proficiencies/weakpoints.json +++ b/data/json/proficiencies/weakpoints.json @@ -229,5 +229,28 @@ "time_to_learn": "24 h", "default_weakpoint_bonus": 1, "default_weakpoint_penalty": -2 + }, + { + "type": "proficiency", + "id": "prof_wp_mi-go_basic", + "category": "prof_weakpoint", + "name": { "str": "Mi-go basic biology" }, + "description": "You have studied mi-go sufficiently to get a sense for where some sensitive points might be. However, it's biology remains too different from life originating on Earth to be understood to any extent.", + "can_learn": true, + "time_to_learn": "6 h", + "default_weakpoint_bonus": 1, + "default_weakpoint_penalty": -2 + }, + { + "type": "proficiency", + "id": "prof_wp_mi-go_advanced", + "category": "prof_weakpoint", + "name": { "str": "Mi-go physiology" }, + "description": "Your understanding of the mi-go physiology is advanced enough to have a decent idea of where it is more sensitive to harm. This does not mean you have any significant understanding of how it works internally however as it's just too alien in most respects.", + "can_learn": true, + "time_to_learn": "24 h", + "required_proficiencies": [ "prof_wp_mi-go_basic" ], + "default_weakpoint_bonus": 2, + "default_weakpoint_penalty": -2 } ] diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json new file mode 100644 index 0000000000000..83a739f825f41 --- /dev/null +++ b/data/json/snippets/mi-go_anatomy.json @@ -0,0 +1,34 @@ +[ + { + "type": "snippet", + "category": "", + "text": [ + "As you starts to cut through the thick skin if the mi-go, you note that it's tougher than you would have expected.", + "The smell emanating from the mi-go as you cut it open is pungent and very alien. You're forced to take short breaks to recover from nausea.", + "You note that the blood of this creature is unlike any other type of blood you've ever encountered or even heard of. It's not only the odd color, but also its viscosity and somewhat oily and sticky properties.", + "Nothing seems right with this creature. The texture of the muscles is off.", + "You note that the bones in this body have alien shapes and are joined up in ways unlike anything from Earth.", + "What should go for tendons in this creature aren't joined to the bones in any way you've seen before. Instead of a single tendon connecting two end points, there are instead a range of smaller connections between slightly different locations." + ] + }, + { + "type": "snippet", + "category": "", + "text": [ + "You cannot find a single heart in the mi-go. Instead, there seem to be multiple copies of something that presumably acts as a heart spread out all over the body. At least you think it acts as a heart, given how it is connected to what should be blood vessels.", + "Something that looks like it should be blood vessels, on account of containing the mi-go's blood, form a network that doesn't make much sense to you, as its structure is completely alien.", + "The creature contains a lot of tissue that probably are organs of one kind of another, but there is no guessing what function they are meant to perform.", + "The mi-go doesn't seem to have any known type of lungs, but there are a lot of small orifices all over the body connecting short sections of tubing to organs of spongy tissue, so it might take in air (or water?) through one orifice, extract oxygen from the medium, and \"exhale\" it through the tubing at the other side of the organ. However, you can not detect any means to actually drive such a process.", + "You think you have found the creature's voice box, but you cannot be sure, given its design which leaves you unable to figure out how it would actually work.", + "A nervous system of sort seems to exist in the creature, but its organization is confounding, with a connection that's more like a network than it is tree like.", + "You thought you found its brain, at least until you found another one, and then yet another one, of a different size and shape. Needless to say, the structure of these organs means nothing to you. Also, the one in the head is one of the smaller ones.", + "It does not seem to have anything resembling eyes, at least not any lense based design, unless the structure would be too tiny for you to see with the naked eye while everything is covered with blood.", + "The mi-go's antennae seem to be of different types, but you can't determine what the purpose of any of them is." + ] + }, + { + "type": "snippet", + "category": "", + "text": [ "", "", "" ] + } +] From 5797bb3246980279984bb0d0ebc0ee0119363c54 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Thu, 9 Nov 2023 12:50:41 +0100 Subject: [PATCH 02/25] lint --- data/json/monster_weakpoints/migo_weakpoints.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/monster_weakpoints/migo_weakpoints.json b/data/json/monster_weakpoints/migo_weakpoints.json index 5635626e597b5..3365dc5730e4a 100644 --- a/data/json/monster_weakpoints/migo_weakpoints.json +++ b/data/json/monster_weakpoints/migo_weakpoints.json @@ -60,7 +60,7 @@ "coverage": 5, "crit_mult": { "all": 1.1 }, "armor_mult": { "physical": 0.75 }, - "difficulty": { "ranged": 5, "melee": 4 }, + "difficulty": { "ranged": 5, "melee": 4 }, "effects": [ { "effect": "stunned", From d469143219ac71449c74550926c19cb694fe80ac Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:49:56 +0100 Subject: [PATCH 03/25] Update data/json/materials.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/materials.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/materials.json b/data/json/materials.json index 3ee8dd5a361cd..cb1d14529c1ea 100644 --- a/data/json/materials.json +++ b/data/json/materials.json @@ -2901,7 +2901,7 @@ { "type": "material", "id": "mi-go_blood", - "name": "Mi-go Blood", + "name": "Mi-go Ichor", "copy-from": "water", "edible": false }, From c7568fe63110d4597a6c14082c94cae775550a54 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:50:11 +0100 Subject: [PATCH 04/25] Update data/json/items/comestibles/carnivore.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/items/comestibles/carnivore.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/items/comestibles/carnivore.json b/data/json/items/comestibles/carnivore.json index 976c4d5c0ae88..e478382c2faff 100644 --- a/data/json/items/comestibles/carnivore.json +++ b/data/json/items/comestibles/carnivore.json @@ -1924,7 +1924,7 @@ "id": "blood_mi-go", "type": "COMESTIBLE", "copy-from": "meat_mi-go", - "name": { "str_sp": "mi-go blood" }, + "name": { "str_sp": "mi-go ichor" }, "description": "Mi-go blood that's obviously alien, given its pink color and strange odor. It would not be advisable to try to eat it.", "comestible_type": "DRINK", "looks_like": "blood", From 005333c4ea364f18022ae6cc6d27592345265fbe Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:50:26 +0100 Subject: [PATCH 05/25] Update data/json/items/comestibles/carnivore.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/items/comestibles/carnivore.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/items/comestibles/carnivore.json b/data/json/items/comestibles/carnivore.json index e478382c2faff..3d8a5b7dbbfcf 100644 --- a/data/json/items/comestibles/carnivore.json +++ b/data/json/items/comestibles/carnivore.json @@ -1925,7 +1925,7 @@ "type": "COMESTIBLE", "copy-from": "meat_mi-go", "name": { "str_sp": "mi-go ichor" }, - "description": "Mi-go blood that's obviously alien, given its pink color and strange odor. It would not be advisable to try to eat it.", + "description": "Goo from inside a mi-go, perhaps some kind of blood? It's obviously alien, given its pink color and strange, nostril-stinging odor. It would not be advisable to try to eat it.", "comestible_type": "DRINK", "looks_like": "blood", "symbol": "~", From d2787d9b1c68221a239f65e7bfd28a3738808943 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:56:28 +0100 Subject: [PATCH 06/25] Update data/json/monster_weakpoints/migo_weakpoints.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/monster_weakpoints/migo_weakpoints.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/monster_weakpoints/migo_weakpoints.json b/data/json/monster_weakpoints/migo_weakpoints.json index 3365dc5730e4a..852b6ce83c6ce 100644 --- a/data/json/monster_weakpoints/migo_weakpoints.json +++ b/data/json/monster_weakpoints/migo_weakpoints.json @@ -27,7 +27,7 @@ "difficulty": { "ranged": 4, "melee": 3 }, "coverage_mult": { "point": 0.75 }, "effects": [ - { "effect": "staggered", "chance": 15, "message": "The %s is tripped off-balance!", "damage_required": [ 10, 30 ] }, + { "effect": "staggered", "chance": 10, "message": "The %s is tripped off-balance!", "damage_required": [ 15, 30 ] }, { "effect": "staggered", "chance": 25, From ed8ed941360a8f6357acee50275cda1d3d8b0fb5 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:56:59 +0100 Subject: [PATCH 07/25] Update data/json/monster_weakpoints/migo_weakpoints.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/monster_weakpoints/migo_weakpoints.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/monster_weakpoints/migo_weakpoints.json b/data/json/monster_weakpoints/migo_weakpoints.json index 852b6ce83c6ce..d9736c669d877 100644 --- a/data/json/monster_weakpoints/migo_weakpoints.json +++ b/data/json/monster_weakpoints/migo_weakpoints.json @@ -30,7 +30,7 @@ { "effect": "staggered", "chance": 10, "message": "The %s is tripped off-balance!", "damage_required": [ 15, 30 ] }, { "effect": "staggered", - "chance": 25, + "chance": 20, "message": "The %s is tripped off-balance!", "damage_required": [ 31, 100 ] } From 41ab8a01c28b0bddecd2b317b0e36ba8284af3fd Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:57:28 +0100 Subject: [PATCH 08/25] Update data/json/monster_weakpoints/migo_weakpoints.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/monster_weakpoints/migo_weakpoints.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/monster_weakpoints/migo_weakpoints.json b/data/json/monster_weakpoints/migo_weakpoints.json index d9736c669d877..5a55cff29cbd7 100644 --- a/data/json/monster_weakpoints/migo_weakpoints.json +++ b/data/json/monster_weakpoints/migo_weakpoints.json @@ -44,7 +44,7 @@ "difficulty": { "ranged": 4, "melee": 3 }, "coverage_mult": { "point": 0.75 }, "effects": [ - { "effect": "staggered", "chance": 15, "message": "The %s is pushed off-balance!", "damage_required": [ 10, 30 ] }, + { "effect": "staggered", "chance": 15, "message": "The %s is pushed off-balance!", "damage_required": [ 20, 40 ] }, { "effect": "staggered", "chance": 25, From b69a09ce685da017bb56734fa23d138aba1ddf34 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:57:59 +0100 Subject: [PATCH 09/25] Update data/json/monster_weakpoints/migo_weakpoints.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/monster_weakpoints/migo_weakpoints.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/monster_weakpoints/migo_weakpoints.json b/data/json/monster_weakpoints/migo_weakpoints.json index 5a55cff29cbd7..823dfa1ac3fd2 100644 --- a/data/json/monster_weakpoints/migo_weakpoints.json +++ b/data/json/monster_weakpoints/migo_weakpoints.json @@ -49,7 +49,7 @@ "effect": "staggered", "chance": 25, "message": "The %s is pushed off-balance!", - "damage_required": [ 31, 100 ] + "damage_required": [ 51, 100 ] } ], "coverage": 2 From fa3af85d1414580c10ea9fe59ead0106822aeac9 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:58:30 +0100 Subject: [PATCH 10/25] Update data/json/proficiencies/weakpoints.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/proficiencies/weakpoints.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/proficiencies/weakpoints.json b/data/json/proficiencies/weakpoints.json index 35c8148741daf..c9cfd697a126d 100644 --- a/data/json/proficiencies/weakpoints.json +++ b/data/json/proficiencies/weakpoints.json @@ -235,7 +235,7 @@ "id": "prof_wp_mi-go_basic", "category": "prof_weakpoint", "name": { "str": "Mi-go basic biology" }, - "description": "You have studied mi-go sufficiently to get a sense for where some sensitive points might be. However, it's biology remains too different from life originating on Earth to be understood to any extent.", + "description": "You have studied mi-go sufficiently to get a sense for where some sensitive points might be. However, its biology remains too different from life originating on Earth to be understood to any extent.", "can_learn": true, "time_to_learn": "6 h", "default_weakpoint_bonus": 1, From 053087bbb46c306a884be678c5230529ab186e3b Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:59:05 +0100 Subject: [PATCH 11/25] Update data/json/proficiencies/weakpoints.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/proficiencies/weakpoints.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/proficiencies/weakpoints.json b/data/json/proficiencies/weakpoints.json index c9cfd697a126d..b955fb075defe 100644 --- a/data/json/proficiencies/weakpoints.json +++ b/data/json/proficiencies/weakpoints.json @@ -234,7 +234,7 @@ "type": "proficiency", "id": "prof_wp_mi-go_basic", "category": "prof_weakpoint", - "name": { "str": "Mi-go basic biology" }, + "name": { "str": "Mi-go basic anatomy" }, "description": "You have studied mi-go sufficiently to get a sense for where some sensitive points might be. However, its biology remains too different from life originating on Earth to be understood to any extent.", "can_learn": true, "time_to_learn": "6 h", From b60794255e4dd1d7b48703775abe8f9f1959d164 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 20:59:23 +0100 Subject: [PATCH 12/25] Update data/json/proficiencies/weakpoints.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/proficiencies/weakpoints.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/proficiencies/weakpoints.json b/data/json/proficiencies/weakpoints.json index b955fb075defe..6cd6ff6b19b8d 100644 --- a/data/json/proficiencies/weakpoints.json +++ b/data/json/proficiencies/weakpoints.json @@ -245,7 +245,7 @@ "type": "proficiency", "id": "prof_wp_mi-go_advanced", "category": "prof_weakpoint", - "name": { "str": "Mi-go physiology" }, + "name": { "str": "Mi-go detailed anatomy" }, "description": "Your understanding of the mi-go physiology is advanced enough to have a decent idea of where it is more sensitive to harm. This does not mean you have any significant understanding of how it works internally however as it's just too alien in most respects.", "can_learn": true, "time_to_learn": "24 h", From 2ced94a5fb864c7164d0caf865bc587a082f449c Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:00:00 +0100 Subject: [PATCH 13/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index 83a739f825f41..85263c27b2804 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -16,7 +16,7 @@ "category": "", "text": [ "You cannot find a single heart in the mi-go. Instead, there seem to be multiple copies of something that presumably acts as a heart spread out all over the body. At least you think it acts as a heart, given how it is connected to what should be blood vessels.", - "Something that looks like it should be blood vessels, on account of containing the mi-go's blood, form a network that doesn't make much sense to you, as its structure is completely alien.", + "Something that looks like it fills a role similar to blood vessels, assuming the pink ichor is in fact blood, form a central plexus that doesn't make much sense to you. It's impossibly complex, a tiny road map of shockingly tough tubules in a pattern that almost looks like it spells a word in some unknowable language.", "The creature contains a lot of tissue that probably are organs of one kind of another, but there is no guessing what function they are meant to perform.", "The mi-go doesn't seem to have any known type of lungs, but there are a lot of small orifices all over the body connecting short sections of tubing to organs of spongy tissue, so it might take in air (or water?) through one orifice, extract oxygen from the medium, and \"exhale\" it through the tubing at the other side of the organ. However, you can not detect any means to actually drive such a process.", "You think you have found the creature's voice box, but you cannot be sure, given its design which leaves you unable to figure out how it would actually work.", From 7d73378b79caa152789746c8ba27cb878582bfa5 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:00:44 +0100 Subject: [PATCH 14/25] Update data/json/proficiencies/weakpoints.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/proficiencies/weakpoints.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/proficiencies/weakpoints.json b/data/json/proficiencies/weakpoints.json index 6cd6ff6b19b8d..bcf9f7019892e 100644 --- a/data/json/proficiencies/weakpoints.json +++ b/data/json/proficiencies/weakpoints.json @@ -246,7 +246,7 @@ "id": "prof_wp_mi-go_advanced", "category": "prof_weakpoint", "name": { "str": "Mi-go detailed anatomy" }, - "description": "Your understanding of the mi-go physiology is advanced enough to have a decent idea of where it is more sensitive to harm. This does not mean you have any significant understanding of how it works internally however as it's just too alien in most respects.", + "description": "Your understanding of the mi-go body is advanced enough to have a decent idea of where it is more sensitive to harm. This does not mean you have any significant understanding of how it works internally; if anything, your dissections have just left you more confused.", "can_learn": true, "time_to_learn": "24 h", "required_proficiencies": [ "prof_wp_mi-go_basic" ], From 6ad4b1ff14b16cbc18d7a4057f1eaca233a4b969 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:01:31 +0100 Subject: [PATCH 15/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index 85263c27b2804..982237c525e6e 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -3,7 +3,7 @@ "type": "snippet", "category": "", "text": [ - "As you starts to cut through the thick skin if the mi-go, you note that it's tougher than you would have expected.", + "As you starts to cut through the thick outer crust if the mi-go, you note that it's even tougher than you would have expected.", "The smell emanating from the mi-go as you cut it open is pungent and very alien. You're forced to take short breaks to recover from nausea.", "You note that the blood of this creature is unlike any other type of blood you've ever encountered or even heard of. It's not only the odd color, but also its viscosity and somewhat oily and sticky properties.", "Nothing seems right with this creature. The texture of the muscles is off.", From 6b7aefee7ec2de95350bc16d8d0912262b44445b Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:02:23 +0100 Subject: [PATCH 16/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index 982237c525e6e..569234f57816d 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -4,7 +4,7 @@ "category": "", "text": [ "As you starts to cut through the thick outer crust if the mi-go, you note that it's even tougher than you would have expected.", - "The smell emanating from the mi-go as you cut it open is pungent and very alien. You're forced to take short breaks to recover from nausea.", + "The smell emanating from the mi-go as you cut it open is pungent, like a chemical factory gone horribly wrong. You're forced to take short breaks to recover from nausea.", "You note that the blood of this creature is unlike any other type of blood you've ever encountered or even heard of. It's not only the odd color, but also its viscosity and somewhat oily and sticky properties.", "Nothing seems right with this creature. The texture of the muscles is off.", "You note that the bones in this body have alien shapes and are joined up in ways unlike anything from Earth.", From 4e4634fa48b9bf5379b23b19860a244359eea3d6 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:03:19 +0100 Subject: [PATCH 17/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index 569234f57816d..ecfdd8738cfa6 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -5,7 +5,7 @@ "text": [ "As you starts to cut through the thick outer crust if the mi-go, you note that it's even tougher than you would have expected.", "The smell emanating from the mi-go as you cut it open is pungent, like a chemical factory gone horribly wrong. You're forced to take short breaks to recover from nausea.", - "You note that the blood of this creature is unlike any other type of blood you've ever encountered or even heard of. It's not only the odd color, but also its viscosity and somewhat oily and sticky properties.", + "You note that the ichorous blood of this creature is unlike any similar stuff you've ever encountered or even heard of. It's not only the odd color - pink like pepto bismol - but also its texture. Somehow it is both oily and sticky, and the viscosity seems to change as you work with it.", "Nothing seems right with this creature. The texture of the muscles is off.", "You note that the bones in this body have alien shapes and are joined up in ways unlike anything from Earth.", "What should go for tendons in this creature aren't joined to the bones in any way you've seen before. Instead of a single tendon connecting two end points, there are instead a range of smaller connections between slightly different locations." From 983c5e0e8b1e46b830c5fb5e142c735bc042b6f5 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:04:12 +0100 Subject: [PATCH 18/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index ecfdd8738cfa6..2be28cbd07172 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -6,7 +6,7 @@ "As you starts to cut through the thick outer crust if the mi-go, you note that it's even tougher than you would have expected.", "The smell emanating from the mi-go as you cut it open is pungent, like a chemical factory gone horribly wrong. You're forced to take short breaks to recover from nausea.", "You note that the ichorous blood of this creature is unlike any similar stuff you've ever encountered or even heard of. It's not only the odd color - pink like pepto bismol - but also its texture. Somehow it is both oily and sticky, and the viscosity seems to change as you work with it.", - "Nothing seems right with this creature. The texture of the muscles is off.", + "Nothing seems right with this creature. The texture of the muscles is off. Are these even muscles, or are they long stringy organs of some kind?", "You note that the bones in this body have alien shapes and are joined up in ways unlike anything from Earth.", "What should go for tendons in this creature aren't joined to the bones in any way you've seen before. Instead of a single tendon connecting two end points, there are instead a range of smaller connections between slightly different locations." ] From d1891c89a3251ccbaa51f94d5eded3b554ae4942 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:04:45 +0100 Subject: [PATCH 19/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index 2be28cbd07172..8fbed9d408e27 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -7,7 +7,7 @@ "The smell emanating from the mi-go as you cut it open is pungent, like a chemical factory gone horribly wrong. You're forced to take short breaks to recover from nausea.", "You note that the ichorous blood of this creature is unlike any similar stuff you've ever encountered or even heard of. It's not only the odd color - pink like pepto bismol - but also its texture. Somehow it is both oily and sticky, and the viscosity seems to change as you work with it.", "Nothing seems right with this creature. The texture of the muscles is off. Are these even muscles, or are they long stringy organs of some kind?", - "You note that the bones in this body have alien shapes and are joined up in ways unlike anything from Earth.", + "You note that what pass for bones in this body have alien shapes and are joined up in ways unlike anything from Earth. A few times you see intricate interlocking patterns that hold a strange beauty, though it's somewhat lessened by the incredibly terrible smell.", "What should go for tendons in this creature aren't joined to the bones in any way you've seen before. Instead of a single tendon connecting two end points, there are instead a range of smaller connections between slightly different locations." ] }, From f5262b1ca26f915448fcbf7f9de63675b886ee0d Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:05:26 +0100 Subject: [PATCH 20/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index 8fbed9d408e27..f164782aa1637 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -8,7 +8,7 @@ "You note that the ichorous blood of this creature is unlike any similar stuff you've ever encountered or even heard of. It's not only the odd color - pink like pepto bismol - but also its texture. Somehow it is both oily and sticky, and the viscosity seems to change as you work with it.", "Nothing seems right with this creature. The texture of the muscles is off. Are these even muscles, or are they long stringy organs of some kind?", "You note that what pass for bones in this body have alien shapes and are joined up in ways unlike anything from Earth. A few times you see intricate interlocking patterns that hold a strange beauty, though it's somewhat lessened by the incredibly terrible smell.", - "What should go for tendons in this creature aren't joined to the bones in any way you've seen before. Instead of a single tendon connecting two end points, there are instead a range of smaller connections between slightly different locations." + "What should go for tendons in this creature aren't joined to the bones in any way you've seen before. Instead of a single tendon connecting two end points, there are instead a range of smaller connections between slightly different locations. On further study you wonder if these are indeed tendons, or perhaps some kind of nerve or signalling structure. Later, you find similar things wrapped around what you think might be a sensory organ." ] }, { From 2afd663c83a5b1b9b5adf64bb6b3d8218f9c28e0 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:07:31 +0100 Subject: [PATCH 21/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index f164782aa1637..93c28b3070930 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -18,7 +18,7 @@ "You cannot find a single heart in the mi-go. Instead, there seem to be multiple copies of something that presumably acts as a heart spread out all over the body. At least you think it acts as a heart, given how it is connected to what should be blood vessels.", "Something that looks like it fills a role similar to blood vessels, assuming the pink ichor is in fact blood, form a central plexus that doesn't make much sense to you. It's impossibly complex, a tiny road map of shockingly tough tubules in a pattern that almost looks like it spells a word in some unknowable language.", "The creature contains a lot of tissue that probably are organs of one kind of another, but there is no guessing what function they are meant to perform.", - "The mi-go doesn't seem to have any known type of lungs, but there are a lot of small orifices all over the body connecting short sections of tubing to organs of spongy tissue, so it might take in air (or water?) through one orifice, extract oxygen from the medium, and \"exhale\" it through the tubing at the other side of the organ. However, you can not detect any means to actually drive such a process.", + "You think you've found something like a lung: a lot of small orifices all over the body connecting short sections of tubing to organs of spongy tissue, so it might take in air (or water?) through one orifice, extract oxygen from the medium, and \"exhale\" it through the tubing at the other side of the organ. Just as you feel a sense of understanding something at last, you realize that these organs aren't connected to the ichor system at all, and in fact seem to be drier and more leathery than the rest of the creature.", "You think you have found the creature's voice box, but you cannot be sure, given its design which leaves you unable to figure out how it would actually work.", "A nervous system of sort seems to exist in the creature, but its organization is confounding, with a connection that's more like a network than it is tree like.", "You thought you found its brain, at least until you found another one, and then yet another one, of a different size and shape. Needless to say, the structure of these organs means nothing to you. Also, the one in the head is one of the smaller ones.", From 4075df6e02c0e9ed790751688df9e035d59a5e30 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:08:15 +0100 Subject: [PATCH 22/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index 93c28b3070930..d7ce1eae2c721 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -19,7 +19,7 @@ "Something that looks like it fills a role similar to blood vessels, assuming the pink ichor is in fact blood, form a central plexus that doesn't make much sense to you. It's impossibly complex, a tiny road map of shockingly tough tubules in a pattern that almost looks like it spells a word in some unknowable language.", "The creature contains a lot of tissue that probably are organs of one kind of another, but there is no guessing what function they are meant to perform.", "You think you've found something like a lung: a lot of small orifices all over the body connecting short sections of tubing to organs of spongy tissue, so it might take in air (or water?) through one orifice, extract oxygen from the medium, and \"exhale\" it through the tubing at the other side of the organ. Just as you feel a sense of understanding something at last, you realize that these organs aren't connected to the ichor system at all, and in fact seem to be drier and more leathery than the rest of the creature.", - "You think you have found the creature's voice box, but you cannot be sure, given its design which leaves you unable to figure out how it would actually work.", + "You think you have found the creature's voice box, but you cannot be sure, given its design which leaves you unable to figure out how it would actually work. It reminds you a bit of an old-fashioned bellows, if a bellows were sky-blue, spongy, and smelled like rotten ammonia.", "A nervous system of sort seems to exist in the creature, but its organization is confounding, with a connection that's more like a network than it is tree like.", "You thought you found its brain, at least until you found another one, and then yet another one, of a different size and shape. Needless to say, the structure of these organs means nothing to you. Also, the one in the head is one of the smaller ones.", "It does not seem to have anything resembling eyes, at least not any lense based design, unless the structure would be too tiny for you to see with the naked eye while everything is covered with blood.", From 157c6195e5df5afe6dbe4746ba528ef4c1aa33d0 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:08:52 +0100 Subject: [PATCH 23/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index d7ce1eae2c721..6210b8ae9d47e 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -20,7 +20,7 @@ "The creature contains a lot of tissue that probably are organs of one kind of another, but there is no guessing what function they are meant to perform.", "You think you've found something like a lung: a lot of small orifices all over the body connecting short sections of tubing to organs of spongy tissue, so it might take in air (or water?) through one orifice, extract oxygen from the medium, and \"exhale\" it through the tubing at the other side of the organ. Just as you feel a sense of understanding something at last, you realize that these organs aren't connected to the ichor system at all, and in fact seem to be drier and more leathery than the rest of the creature.", "You think you have found the creature's voice box, but you cannot be sure, given its design which leaves you unable to figure out how it would actually work. It reminds you a bit of an old-fashioned bellows, if a bellows were sky-blue, spongy, and smelled like rotten ammonia.", - "A nervous system of sort seems to exist in the creature, but its organization is confounding, with a connection that's more like a network than it is tree like.", + "There are tough networks of fibers that could be nerves in this thing, but if so, you can't confirm that they lead to any centralized brain. On the other hand, they could be structural, or muscular. It's very hard to tell.", "You thought you found its brain, at least until you found another one, and then yet another one, of a different size and shape. Needless to say, the structure of these organs means nothing to you. Also, the one in the head is one of the smaller ones.", "It does not seem to have anything resembling eyes, at least not any lense based design, unless the structure would be too tiny for you to see with the naked eye while everything is covered with blood.", "The mi-go's antennae seem to be of different types, but you can't determine what the purpose of any of them is." From 152f847e42ec224930e77e919829b7b2c0bc0f20 Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 21:09:38 +0100 Subject: [PATCH 24/25] Update data/json/snippets/mi-go_anatomy.json Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/snippets/mi-go_anatomy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index 6210b8ae9d47e..ebf8bac2cf02c 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -29,6 +29,6 @@ { "type": "snippet", "category": "", - "text": [ "", "", "" ] + "text": [ "", "", " " ] } ] From 28d6dee0461041043928954e0ecc2fd51f0bd68d Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 10 Nov 2023 23:32:38 +0100 Subject: [PATCH 25/25] Snippet adjustment --- data/json/items/comestibles/carnivore.json | 2 +- data/json/snippets/mi-go_anatomy.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/json/items/comestibles/carnivore.json b/data/json/items/comestibles/carnivore.json index 3d8a5b7dbbfcf..22cfc3b549502 100644 --- a/data/json/items/comestibles/carnivore.json +++ b/data/json/items/comestibles/carnivore.json @@ -1944,7 +1944,7 @@ "comestible_type": "FOOD", "symbol": "%", "calories": 0, - "description": "A bone from a mi-go. It's stronger than normal bone, so it might have some uses if you could figure one out, which you doubt you could, but it's unlikely it can replace any chemical usages for normal bone.", + "description": "An unrecognized structural element from inside a mi-go. It's strong and springy, somewhat like cartilage, but a bit stiffer. It's also a deep green color, and might possibly serve a scaffolding role, like bone.", "price": 0, "price_postapoc": 0, "material": [ "mi-go_bone" ], diff --git a/data/json/snippets/mi-go_anatomy.json b/data/json/snippets/mi-go_anatomy.json index ebf8bac2cf02c..0b31c1e880d8f 100644 --- a/data/json/snippets/mi-go_anatomy.json +++ b/data/json/snippets/mi-go_anatomy.json @@ -3,7 +3,7 @@ "type": "snippet", "category": "", "text": [ - "As you starts to cut through the thick outer crust if the mi-go, you note that it's even tougher than you would have expected.", + "As you starts to cut through the thick outer crust of the mi-go, you note that it's even tougher than you would have expected.", "The smell emanating from the mi-go as you cut it open is pungent, like a chemical factory gone horribly wrong. You're forced to take short breaks to recover from nausea.", "You note that the ichorous blood of this creature is unlike any similar stuff you've ever encountered or even heard of. It's not only the odd color - pink like pepto bismol - but also its texture. Somehow it is both oily and sticky, and the viscosity seems to change as you work with it.", "Nothing seems right with this creature. The texture of the muscles is off. Are these even muscles, or are they long stringy organs of some kind?",