├── .gitignore ├── README.MD ├── secronom ├── Modification_Files │ ├── Items │ │ ├── -Essentials │ │ │ ├── secro_item_groups.json │ │ │ ├── secro_mat.json │ │ │ └── secro_recipe.json │ │ ├── corpses.json │ │ ├── eggs.json │ │ ├── petfood.json │ │ ├── secro_flesh.json │ │ └── secro_guns.json │ ├── Maps │ │ ├── -Essentials │ │ │ ├── city_buildings.json │ │ │ ├── fields.json │ │ │ ├── flesh_ter_furn.json │ │ │ ├── map_extras.json │ │ │ ├── overmap_land_codes.json │ │ │ ├── overmap_locations.json │ │ │ ├── overmap_specials.json │ │ │ ├── overmap_terrain_overrides.json │ │ │ ├── overmap_terrains.json │ │ │ ├── ter_furn.json │ │ │ └── ter_furn_trans.json │ │ ├── Flesh │ │ │ ├── city_buildings.json │ │ │ ├── flesh_buildings.json │ │ │ ├── flesh_caverns.json │ │ │ ├── flesh_city.json │ │ │ ├── flesh_forest.json │ │ │ ├── flesh_island.json │ │ │ └── misc.json │ │ ├── Misc.json │ │ └── saddler_extras.json │ ├── Monsters │ │ ├── -Essentials │ │ │ ├── secro_ammo_zombie.json │ │ │ ├── secro_attacks.json │ │ │ ├── secro_dialogue.json │ │ │ ├── secro_effects.json │ │ │ ├── secro_effects_check.json │ │ │ ├── secro_effects_limit_cost.json │ │ │ ├── secro_effects_self.json │ │ │ ├── secro_emit.json │ │ │ ├── secro_faction.json │ │ │ ├── secro_gun_zombie.json │ │ │ ├── secro_harvest.json │ │ │ ├── secro_magic.json │ │ │ ├── secro_magic_eoc.json │ │ │ ├── secro_magic_eoc_limit_cost.json │ │ │ ├── secro_magic_eoc_onspawn.json │ │ │ ├── secro_magic_large.json │ │ │ ├── secro_magic_ondeath.json │ │ │ ├── secro_magic_smol.json │ │ │ ├── secro_magic_trans.json │ │ │ ├── secro_magic_trans_eoc.json │ │ │ ├── secro_mondrops.json │ │ │ ├── secro_monitem.json │ │ │ ├── secro_spawns.json │ │ │ ├── secro_species.json │ │ │ ├── secro_speech.json │ │ │ └── secro_upgrade.json │ │ ├── Abberations │ │ │ ├── Ayenel.json │ │ │ ├── Maneater.json │ │ │ ├── Shapeshifter.json │ │ │ └── Weaver.json │ │ ├── Bots │ │ │ ├── SecronomDragon.json │ │ │ └── SecronomDragon_spawns.json │ │ ├── Crimson Horrors │ │ │ ├── Amalgam.json │ │ │ ├── Amalgam_spawns.json │ │ │ ├── Flesh.json │ │ │ ├── FleshVeins.json │ │ │ ├── Flesh_biome.json │ │ │ ├── Flesh_spawns.json │ │ │ ├── Flesh_undead.json │ │ │ ├── Fleshlings.json │ │ │ ├── Misc │ │ │ │ └── Flesh_feral_human.json │ │ │ ├── Wildlife │ │ │ │ ├── Flesh_bird.json │ │ │ │ ├── Flesh_insect_spider.json │ │ │ │ └── Flesh_mammal.json │ │ │ └── Zombies │ │ │ │ ├── Flesh_z_acid.json │ │ │ │ ├── Flesh_z_animal.json │ │ │ │ ├── Flesh_z_burned.json │ │ │ │ ├── Flesh_z_children.json │ │ │ │ ├── Flesh_z_classic.json │ │ │ │ ├── Flesh_z_command.json │ │ │ │ ├── Flesh_z_electric.json │ │ │ │ ├── Flesh_z_explosive.json │ │ │ │ ├── Flesh_z_ferrous.json │ │ │ │ ├── Flesh_z_lab.json │ │ │ │ ├── Flesh_z_military.json │ │ │ │ ├── Flesh_z_misc.json │ │ │ │ ├── Flesh_z_pupating.json │ │ │ │ ├── Flesh_z_radiation.json │ │ │ │ ├── Flesh_z_skeletal.json │ │ │ │ ├── Flesh_z_survivor.json │ │ │ │ └── Flesh_z_winged.json │ │ ├── Insects │ │ │ ├── Saddler.json │ │ │ ├── Worms.json │ │ │ └── ZombieParasiteWorms.json │ │ ├── Unknown │ │ │ ├── Carrion.json │ │ │ ├── Vector.json │ │ │ └── ___.json │ │ └── Zombies │ │ │ ├── +BOWs.json │ │ │ ├── +Failed.json │ │ │ ├── +Misc.json │ │ │ ├── BO Turrets.json │ │ │ ├── Bladed.json │ │ │ ├── Charger.json │ │ │ ├── Grubby.json │ │ │ ├── Licker.json │ │ │ ├── Lying.json │ │ │ ├── Mouth.json │ │ │ ├── Revenant.json │ │ │ ├── Scourge.json │ │ │ ├── Snatcher.json │ │ │ ├── Spider.json │ │ │ ├── Swarmer.json │ │ │ ├── Tendrils.json │ │ │ ├── Titan.json │ │ │ ├── Translucent.json │ │ │ ├── Unifier.json │ │ │ ├── Weaver.json │ │ │ └── Zombie.json │ └── Others │ │ ├── secro_achievements.json │ │ ├── secro_ammo_effects.json │ │ ├── secro_eoc.json │ │ ├── secro_event_trans_stats.json │ │ └── secro_veh.json ├── README.MD ├── mod_tileset.json ├── modinfo.json ├── region_overlay.json ├── secronom_large.png ├── secronom_normal.png └── secronom_normal_offset.png └── secronom_lore_expansion ├── Modification Files ├── Items │ ├── -Essentials │ │ ├── secro_ammo_types.json │ │ ├── secro_clothing_mods.json │ │ ├── secro_item_categories.json │ │ ├── secro_item_effects.json │ │ ├── secro_item_ench.json │ │ ├── secro_item_eoc.json │ │ ├── secro_item_flags.json │ │ ├── secro_item_groups.json │ │ ├── secro_item_magic.json │ │ ├── secro_item_magic_armaments.json │ │ ├── secro_item_magic_bionics.json │ │ ├── secro_item_qualities.json │ │ ├── secro_item_requirements.json │ │ ├── secro_mat.json │ │ ├── secro_qualities.json │ │ ├── secro_recipe_ammo_pouch.json │ │ ├── secro_recipe_cloak.json │ │ ├── secro_recipe_holster.json │ │ ├── secro_recipe_resource.json │ │ ├── secro_recipe_sheath.json │ │ ├── secro_recipe_storage.json │ │ └── secro_recipes.json │ ├── Armors │ │ ├── secro_ammo_pouch.json │ │ ├── secro_cloak.json │ │ ├── secro_holster.json │ │ ├── secro_power_armor_flesh.json │ │ ├── secro_power_armor_flesh_addons.json │ │ ├── secro_power_armor_modules.json │ │ ├── secro_power_armors.json │ │ ├── secro_sheath.json │ │ └── secro_storage.json │ ├── Weapons │ │ ├── secro_BOW_armaments_melee.json │ │ └── secro_BOW_armaments_ranged.json │ ├── secro_BOWs.json │ ├── secro_amalgam.json │ ├── secro_ammo_mags.json │ ├── secro_bionics.json │ ├── secro_books.json │ ├── secro_bots.json │ ├── secro_corpses.json │ ├── secro_dna_cc.json │ ├── secro_flesh.json │ ├── secro_fleshcamp_marks.json │ ├── secro_key.json │ └── secro_tools.json ├── Maps │ ├── -Essentials │ │ ├── fields.json │ │ ├── flesh_ter_furn_camp.json │ │ ├── flesh_ter_furn_camp_marks.json │ │ ├── map_extras.json │ │ ├── oms.json │ │ ├── omt.json │ │ └── palettes.json │ ├── FleshResearchLab.json │ ├── MilitaryBunker.json │ ├── Misc.json │ ├── SecronomResearchLab.json │ └── obsolete.txt ├── Monsters │ ├── -Essentials │ │ ├── secro_magic.json │ │ ├── secro_mech_weapons.json │ │ └── secro_mondrops.json │ ├── Bots │ │ ├── SecronomTurrets.json │ │ └── SecronomTurrets_modded.json │ └── Crimson Horrors │ │ ├── Flesh_experimental.json │ │ └── Flesh_mech.json ├── NPCs │ ├── +Essentials │ │ ├── secro_dialogue_effects.json │ │ ├── secro_fleshcamp_turret_mapgens.json │ │ ├── secro_fleshcamp_wall_mapgens.json │ │ └── secro_mapgens.json │ ├── Dialogues │ │ ├── secro_flesh.txt │ │ ├── secro_flesh_build_campexpansions.txt │ │ ├── secro_flesh_build_defenses.txt │ │ ├── secro_flesh_build_interior.txt │ │ ├── secro_flesh_builds.txt │ │ ├── secro_flesh_services.txt │ │ ├── secro_flesh_spawn_artifice.txt │ │ ├── secro_flesh_spawn_hatchery.txt │ │ ├── secro_flesh_spawn_hivemind.txt │ │ ├── secro_flesh_spawn_modifier.txt │ │ ├── secro_flesh_spawn_splicer.txt │ │ ├── secro_flesh_upgrades.txt │ │ ├── secro_guard.json │ │ ├── secro_miliguard.json │ │ ├── secro_researcher.json │ │ ├── secro_s1.json │ │ ├── secro_scientist.json │ │ └── secro_scientist_repairs.json │ ├── secro_mission_items.json │ ├── secro_missiondef.json │ ├── secro_npc_classes_facs.json │ └── secro_npcs.json └── Others │ ├── secro_bionics.json │ ├── secro_components.json │ ├── secro_eoc.json │ ├── secro_flags.json │ ├── secro_ma_tec.json │ ├── secro_ma_tec_effects.json │ ├── secro_ma_tec_eoc.json │ ├── secro_ma_tec_items.json │ ├── secro_ma_tec_magic.json │ ├── secro_mutation.json │ ├── secro_mutation_dreams.json │ ├── secro_mutation_effects.json │ ├── secro_mutation_ench.json │ ├── secro_mutation_items.json │ ├── secro_mutation_magic.json │ ├── secro_prof.json │ ├── secro_proficiency.json │ ├── secro_recipe_practice.json │ ├── secro_requirements.json │ ├── secro_scen.json │ ├── secro_skills.json │ ├── secro_start_locs.json │ └── secro_vehicleparts.txt ├── modinfo.json └── region_overlay.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | mods - Shortcut.lnk 3 | secronom 1.4.rar 4 | CDDA MODDING - Shortcut.lnk 5 | secronom/scraps.aseprite 6 | -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | # Secronom-Zombies 2 | **Axema's GREAT and LEGENDARY mod!My personally maintained and forked version** 3 | 4 | ### How to install the mod: 5 | 1. Extract **Secronom-Zombies-master**. 6 | 2. Put the _secronom_ into the mod folder of CDDA. 7 | 3. Done. Enjoy the mod! 8 | 9 | ### How to update your existing mod: 10 | 1. Delete the _secronom_ mod from mod folder of CDDA. 11 | 2. Extract the latest **Secronom-Zombies-master**. 12 | 3. Put the _secronom_ mod into the mod folder of CDDA. 13 | 4. Done. 14 | 15 | ###### Do this everytime you update. It is done to avoid errors. 16 | 17 | ### Discord Links 18 | Discord servers the maintainer/author of this mod actively participates. 19 | 20 | #### CDDA Modding Community 21 | * https://discord.gg/PuMsXMPwaU 22 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Items/-Essentials/secro_item_groups.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "item_group", 4 | "id": "bionics_op", 5 | "subtype": "distribution", 6 | "//": "What the commandos get.", 7 | "items": [ 8 | [ "bio_power_storage_mkII", 10 ], 9 | [ "bio_batteries", 10 ], 10 | [ "bio_metabolics", 20 ], 11 | [ "bio_torsionratchet", 20 ], 12 | [ "bio_ups", 10 ], 13 | [ "bio_ears", 10 ], 14 | [ "bio_sunglasses", 10 ], 15 | [ "bio_eye_optic", 10 ], 16 | [ "bio_eye_enhancer", 10 ], 17 | [ "bio_dex_enhancer", 10 ], 18 | [ "bio_str_enhancer", 10 ], 19 | [ "bio_night_vision", 15 ], 20 | [ "bio_infrared", 15 ], 21 | [ "bio_recycler", 20 ], 22 | [ "bio_digestion", 15 ], 23 | [ "bio_evap", 15 ], 24 | [ "bio_water_extractor", 10 ], 25 | [ "bio_armor_head", 10 ], 26 | [ "bio_armor_torso", 10 ], 27 | [ "bio_armor_arms", 10 ], 28 | [ "bio_armor_legs", 10 ], 29 | [ "bio_armor_eyes", 10 ], 30 | [ "bio_targeting", 20 ], 31 | [ "bio_ground_sonar", 10 ], 32 | [ "bio_face_mask", 10 ], 33 | [ "bio_scent_mask", 10 ], 34 | [ "bio_cloak", 10 ], 35 | [ "bio_fingerhack", 15 ], 36 | [ "bio_lockpick", 20 ], 37 | [ "bio_night", 5 ], 38 | [ "bio_nanobots", 20 ], 39 | [ "bio_blood_anal", 10 ], 40 | [ "bio_geiger", 10 ], 41 | [ "bio_radscrubber", 15 ], 42 | [ "bio_ads", 10 ], 43 | [ "bio_ods", 10 ], 44 | [ "bio_uncanny_dodge", 10 ], 45 | [ "bio_laser", 15 ], 46 | [ "bio_emp", 10 ], 47 | [ "bio_emp_armgun", 10 ], 48 | [ "bio_flashbang", 15 ], 49 | [ "bio_chain_lightning", 10 ], 50 | [ "bio_time_freeze", 5 ], 51 | [ "bio_teleport", 5 ], 52 | [ "bio_probability_travel", 5 ], 53 | [ "bio_cqb", 5 ], 54 | [ "bio_blade", 5 ], 55 | [ "bio_speed", 5 ], 56 | [ "bio_adrenaline", 15 ], 57 | [ "bio_watch", 10 ], 58 | [ "bio_meteorologist", 10 ], 59 | [ "bio_cable", 10 ], 60 | [ "bio_jointservo", 20 ], 61 | [ "bio_shotgun", 10 ] 62 | ] 63 | } 64 | ] 65 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Items/-Essentials/secro_mat.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "material", 4 | "id": "secro_null", 5 | "name": "Unknown", 6 | "density": 1, 7 | "chip_resist": 0, 8 | "resist": { "bash": 0, "cut": 0, "acid": 0, "heat": 0, "electric": 0, "bullet": 0 }, 9 | "dmg_adj": [ "lightly damaged", "damaged", "very damaged", "thoroughly damaged" ], 10 | "bash_dmg_verb": "damaged", 11 | "cut_dmg_verb": "damaged" 12 | } 13 | 14 | 15 | ] 16 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Items/-Essentials/secro_recipe.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "result": "secro_fweaverfood", 4 | "type": "recipe", 5 | "activity_level": "LIGHT_EXERCISE", 6 | "category": "CC_CHEM", 7 | "subcategory": "CSC_CHEM_CHEMICALS", 8 | "skill_used": "chemistry", 9 | "difficulty": 1, 10 | "skills_required": [ "chemistry", 6 ], 11 | "time": "4 minutes", 12 | "autolearn": true, 13 | "components": [ 14 | [ [ "slime_scrap", 30 ] ], 15 | [ 16 | [ "meat", 1 ], 17 | [ "mutant_meat", 1 ], 18 | [ "human_flesh", 1 ], 19 | [ "mutant_human_flesh", 1 ], 20 | [ "demihuman_flesh", 1 ], 21 | [ "meat_tainted", 4 ] 22 | ] 23 | ], 24 | "flags": [ "BLIND_EASY" ] 25 | } 26 | ] 27 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Items/corpses.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "GENERIC", 4 | "id": "corpse_saddler_used", 5 | "copy-from": "corpse", 6 | "name": { "str": "corpse" }, 7 | "description": "A headless dead body of a person. Its wound looks deep and hollow...", 8 | "looks_like": "corpse_generic_human", 9 | "volume": "33 L", 10 | "weight": "47 kg", 11 | "material": [ "hflesh" ], 12 | "delete": { "flags": [ "CORPSE" ] } 13 | } 14 | ] -------------------------------------------------------------------------------- /secronom/Modification_Files/Items/eggs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "COMESTIBLE", 4 | "id": "saddler_egg", 5 | "name": { "str": "saddler egg" }, 6 | "weight": "110 g", 7 | "color": "green", 8 | "comestible_type": "FOOD", 9 | "symbol": "%", 10 | "quench": -5, 11 | "nutrition": -30, 12 | "description": "Dreadful hairy egg. Dare to eat this!", 13 | "price": "0 cent", 14 | "material": [ "egg" ], 15 | "volume": "250 ml", 16 | "fun": -50 17 | }, 18 | { 19 | "type": "TOOL", 20 | "id": "hatchingsaddleregg", 21 | "name": { "str": "cracked saddler egg" }, 22 | "weight": "110 g", 23 | "color": "green", 24 | "symbol": "o", 25 | "description": "Dreadful hairy egg. Use to break it.", 26 | "price": "0 cent", 27 | "material": [ "egg" ], 28 | "volume": "250 ml", 29 | "flags": [ "NO_DROP" ], 30 | "use_action": { 31 | "type": "place_monster", 32 | "monster_id": "mon_insect_saddler_baby", 33 | "difficulty": 2, 34 | "friendly_msg": "A baby saddler skitters!", 35 | "hostile_msg": "Turns out to be a bad egg!", 36 | "place_randomly": true, 37 | "skills": [ "survival", "melee" ] 38 | } 39 | }, 40 | { 41 | "type": "GENERIC", 42 | "id": "saddler_egg_hatched", 43 | "looks_like": "hatchingsaddleregg", 44 | "symbol": ",", 45 | "color": "green", 46 | "name": { "str": "hatched saddler egg" }, 47 | "description": "A hatched egg of a saddler. It's still covered in slimy green goo, but you see nothing of use of it but to throw away.", 48 | "material": [ "egg" ], 49 | "flags": [ "NO_SALVAGE" ], 50 | "weight": "2 g", 51 | "volume": "250 ml", 52 | "category": "spare_parts" 53 | } 54 | ] 55 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Items/petfood.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "secro_fweaverfood", 3 | "type": "COMESTIBLE", 4 | "comestible_type": "FOOD", 5 | "name": { "str_sp": "flesh weaver petfood" }, 6 | "description": "A mixture of questionable substances that seem to attract a particular specimen.", 7 | "weight": "730 g", 8 | "spoils_in": "5 days", 9 | "volume": "500 ml", 10 | "material": [ "flesh" ], 11 | "symbol": ";", 12 | "quench": 1, 13 | "calories": 333, 14 | "vitamins": [ [ "iron", 3 ] ], 15 | "fun": -25, 16 | "color": "magenta", 17 | "use_action": [ "PETFOOD" ], 18 | "petfood": [ "SECRO_FWEAVERFOOD" ] 19 | } -------------------------------------------------------------------------------- /secronom/Modification_Files/Items/secro_flesh.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "GENERIC", 4 | "id": "secro_flesh_core", 5 | "looks_like": "secro_flesh", 6 | "symbol": "o", 7 | "color": "red", 8 | "name": { "str": "flesh core" }, 9 | "description": "A membranous core of the flesh. Very soft and slimy, and seems to not decay on its own.", 10 | "material": [ "flesh" ], 11 | "flags": [ "NO_SALVAGE" ], 12 | "weight": "150 g", 13 | "volume": "200 ml", 14 | "category": "spare_parts" 15 | } 16 | ] -------------------------------------------------------------------------------- /secronom/Modification_Files/Maps/-Essentials/city_buildings.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "city_building", 4 | "id": "secronom_house_flesh", 5 | "locations": [ "land" ], 6 | "overmaps": [ 7 | { "point": [ 0, 0, 0 ], "overmap": "secro_house_flesh_north" }, 8 | { "point": [ 0, 0, -1 ], "overmap": "secro_basement_flesh" } 9 | ] 10 | } 11 | ] 12 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Maps/-Essentials/map_extras.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mx_secro_carrion_spawn", 4 | "type": "map_extra", 5 | "name": { "str": "Carrions" }, 6 | "description": "Carrions are here.", 7 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_carrion" } 8 | }, 9 | { 10 | "id": "mx_secro_carrion_massacre_spawn", 11 | "type": "map_extra", 12 | "name": { "str": "Carrions" }, 13 | "description": "Carrions have invaded here.", 14 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_carrion_massacre" } 15 | }, 16 | { 17 | "id": "mx_secro_carrion_massacre_smol_spawn", 18 | "type": "map_extra", 19 | "name": { "str": "Carrions" }, 20 | "description": "Carrions have invaded here.", 21 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_carrion_massacre_smol" } 22 | }, 23 | { 24 | "id": "mx_secro_vector_spawn", 25 | "type": "map_extra", 26 | "name": { "str": "Vectors" }, 27 | "description": "A vector cluster is here.", 28 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_vector" } 29 | }, 30 | { 31 | "id": "mx_secro_fleshweaver_spawn", 32 | "type": "map_extra", 33 | "name": { "str": "Flesh Weaver" }, 34 | "description": "A flesh weaver was here.", 35 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_fleshweaver" } 36 | }, 37 | { 38 | "id": "mx_flesh_biome_extra_spawn", 39 | "type": "map_extra", 40 | "name": { "str": "Flesh Tumours" }, 41 | "description": "Odd fleshy structures are here.", 42 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_flesh_biome_extra" } 43 | }, 44 | { 45 | "id": "mx_secro_saddler_victims_spawn", 46 | "type": "map_extra", 47 | "name": { "str": "Corpses" }, 48 | "description": "Headless corpses are here.", 49 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_saddler_victims" }, 50 | "sym": "S", 51 | "color": "green", 52 | "autonote": true 53 | }, 54 | { 55 | "id": "mx_secro_saddler_infest_spawn", 56 | "type": "map_extra", 57 | "name": { "str": "Saddlers" }, 58 | "description": "Saddlers have infested this area.", 59 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_saddler_infest" } 60 | }, 61 | { 62 | "id": "mx_secro_fleshbuilding_spawn", 63 | "type": "map_extra", 64 | "name": { "str": "Flesh" }, 65 | "description": "It is overrun by flesh.", 66 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_fleshbuilding" }, 67 | "sym": "&", 68 | "color": "light_red", 69 | "autonote": true 70 | }, 71 | { 72 | "id": "mx_secro_ssf_carrier", 73 | "type": "map_extra", 74 | "name": { "str": "SS Carrier" }, 75 | "description": "Secronom Project's specimen trailer was left here.", 76 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_ssf" } 77 | }, 78 | { 79 | "id": "mx_secro_ssb_carrier", 80 | "type": "map_extra", 81 | "name": { "str": "SS Carrier" }, 82 | "description": "Secronom Project's specimen trailer was left here.", 83 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_ssb" } 84 | }, 85 | { 86 | "id": "mx_secro_flesh_core", 87 | "type": "map_extra", 88 | "name": { "str": "The Flesh" }, 89 | "description": "The flesh has overrun this city.", 90 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_flesh_core_extra" }, 91 | "sym": "&", 92 | "color": "light_red", 93 | "autonote": true 94 | }, 95 | { 96 | "id": "mx_secro_flesh_random", 97 | "type": "map_extra", 98 | "name": { "str": "Crimson Horrors" }, 99 | "description": "Crimson horrors are here.", 100 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_flesh_random_extra" } 101 | } 102 | ] 103 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Maps/-Essentials/overmap_land_codes.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "overmap_land_use_code", 4 | "id": "secro_flesh_biome", 5 | "name": "Flesh", 6 | "detailed_definition": "An area infected with crimson horrors.", 7 | "sym": "F", 8 | "color": "red_red" 9 | } 10 | ] 11 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Maps/-Essentials/overmap_locations.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "overmap_location", 4 | "id": "flesh_forest_dp", 5 | "terrains": [ "flesh_forest_mid", "flesh_forest_near" ] 6 | } 7 | ] 8 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Maps/-Essentials/overmap_terrain_overrides.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Maps/saddler_extras.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "mapgen", 4 | "method": "json", 5 | "nested_mapgen_id": "saddler_usedbody", 6 | "object": { 7 | "mapgensize": [ 3, 3 ], 8 | "rotation": [ 0, 3 ], 9 | "place_item": [ 10 | { "chance": 100, "item": "corpse_saddler_used", "x": 1, "y": 1 }, 11 | { "chance": 75, "item": "saddler_egg_hatched", "x": [ 0, 2 ], "y": [ 0, 2 ], "repeat": [ 1, 4 ] } 12 | ], 13 | "place_items": [ { "chance": 100, "item": "default_zombie_death_drops", "x": 1, "y": 1 } ], 14 | "place_fields": [ { "field": "fd_blood", "x": [ 0, 2 ], "y": [ 0, 2 ], "repeat": [ 2, 4 ] } ] 15 | } 16 | }, 17 | { 18 | "type": "mapgen", 19 | "method": "json", 20 | "update_mapgen_id": "mx_secro_saddler_victims", 21 | "object": { 22 | "place_monsters": [ { "monster": "GROUP_SADDLER_USED", "x": [ 8, 16 ], "y": [ 8, 16 ], "density": 0.03 } ], 23 | "place_nested": [ { "chunks": [ "saddler_usedbody" ], "x": [ 5, 18 ], "y": [ 5, 18 ], "repeat": [ 4, 10 ] } ] 24 | } 25 | }, 26 | { 27 | "type": "mapgen", 28 | "method": "json", 29 | "update_mapgen_id": "mx_secro_saddler_infest", 30 | "object": { 31 | "place_monsters": [ 32 | { "monster": "GROUP_SADDLER", "x": [ 0, 23 ], "y": [ 0, 23 ], "density": 0.12, "repeat": [ 2, 4 ] }, 33 | { "monster": "GROUP_SADDLER_CONTROLLED", "x": [ 8, 16 ], "y": [ 8, 16 ], "density": 0.04, "repeat": [ 1, 2 ] } 34 | ], 35 | "place_monster": [ { "monster": "mon_insect_saddler_brood", "x": [ 10, 14 ], "y": [ 10, 14 ] } ] 36 | } 37 | } 38 | ] 39 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_dialogue.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "talk_topic", 4 | "id": [ "TALK_SECRO_FWEAVER_main", "TALK_SECRO_FWEAVER_justhealed" ], 5 | "dynamic_line": "*doesn't seem like it can talk, but somehow is able to understand you.", 6 | "responses": [ 7 | { 8 | "text": "Fix my wounds.", 9 | "topic": "TALK_SECRO_FWEAVER_heal", 10 | "condition": { "not": { "npc_has_effect": "eff_fleshweaver_justhealed" } } 11 | }, 12 | { 13 | "text": "Fix my wounds.", 14 | "topic": "TALK_SECRO_FWEAVER_justhealed", 15 | "condition": { "npc_has_effect": "eff_fleshweaver_justhealed" } 16 | }, 17 | { "text": "Bye.", "topic": "TALK_DONE" } 18 | ] 19 | }, 20 | { 21 | "type": "talk_topic", 22 | "id": "TALK_SECRO_FWEAVER_heal", 23 | "dynamic_line": "*readies its appendages and weavers. Are you sure about this?", 24 | "responses": [ 25 | { "text": "No.", "topic": "TALK_SECRO_FWEAVER_main" }, 26 | { 27 | "text": "Yes.", 28 | "topic": "TALK_DONE", 29 | "effect": [ 30 | { "u_message": "The flesh weaver injects you with a numbing substance!", "type": "warning" }, 31 | { "npc_cast_spell": { "id": "mon_fleshweaver_operate", "hit_self": true } }, 32 | { "u_cast_spell": { "id": "mon_fleshweaver_operate", "hit_self": true } }, 33 | { 34 | "queue_eocs": [ 35 | { 36 | "id": "eoc_secro_TALK_SECRO_FWEAVER_healed", 37 | "effect": [ { "u_cast_spell": { "id": "mon_fleshweaver_operate_heal", "hit_self": true } } ] 38 | } 39 | ], 40 | "time_in_future": [ "180 turns", "180 turns" ] 41 | }, 42 | { "u_add_effect": "blind", "duration": "180 turns", "force": true }, 43 | { "u_add_effect": "downed", "duration": "180 turns", "force": true }, 44 | { "u_add_effect": "eff_fleshweaver_healing", "duration": "180 turns" }, 45 | { "npc_add_effect": "eff_fleshweaver_justhealed", "duration": "16 hours" } 46 | ] 47 | }, 48 | { "text": "Back away.", "topic": "TALK_DONE" } 49 | ] 50 | }, 51 | { 52 | "type": "talk_topic", 53 | "id": "TALK_SECRO_FWEAVER_justhealed", 54 | "dynamic_line": "*recently performed an operation on you." 55 | } 56 | ] 57 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_effects_check.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "effect_type", 4 | "id": "secro_zombie_swarmer_alpha_death" 5 | }, 6 | { 7 | "type": "effect_type", 8 | "id": "secro_zombie_swarmer_alpha_passive", 9 | "max_duration": "11 seconds", 10 | "enchantments": [ { "values": [ { "value": "SPEED", "add": 10 } ] } ] 11 | }, 12 | { 13 | "type": "effect_type", 14 | "id": "secro_zombie_uruxis_passive" 15 | }, 16 | { 17 | "type": "effect_type", 18 | "id": "secro_maneater_stack", 19 | "max_intensity": 300 20 | }, 21 | { 22 | "type": "effect_type", 23 | "id": "mon_sflesh_flesh_swing_recently" 24 | }, 25 | { 26 | "type": "effect_type", 27 | "id": "mon_sflesh_flesh_slam_recently" 28 | }, 29 | { 30 | "type": "effect_type", 31 | "id": "eff_zombie_gorepit_spawnmore_rage" 32 | }, 33 | { 34 | "type": "effect_type", 35 | "id": "eff_zombie_gorepit_spawnmore_stop" 36 | }, 37 | { 38 | "type": "effect_type", 39 | "id": "eff_zombie_gorepit_tent_massive_cd" 40 | }, 41 | { 42 | "type": "effect_type", 43 | "id": "eff_fleshweaver_justhealed" 44 | }, 45 | { 46 | "type": "effect_type", 47 | "id": "eff_carrion_alpha_rally_atk_cmd", 48 | "max_duration": 100, 49 | "removes_effects": [ "controlled" ], 50 | "blocks_effects": [ "controlled" ] 51 | }, 52 | { 53 | "type": "effect_type", 54 | "id": "sflesh_infect_checked" 55 | }, 56 | { 57 | "type": "effect_type", 58 | "id": "eff_fleshling_splitcheck" 59 | }, 60 | { 61 | "type": "effect_type", 62 | "id": "eff_fleshling_growthreset", 63 | "removes_effects": [ "controlled" ], 64 | "blocks_effects": [ "controlled" ] 65 | }, 66 | { 67 | "type": "effect_type", 68 | "id": "sflesh_fleshling_growth", 69 | "max_intensity": 999 70 | }, 71 | { 72 | "type": "effect_type", 73 | "id": "sflesh_fleshling_huge_limit", 74 | "max_intensity": 999 75 | }, 76 | { 77 | "type": "effect_type", 78 | "id": "sflesh_fleshling_huge_curlimit", 79 | "max_intensity": 999 80 | }, 81 | { 82 | "type": "effect_type", 83 | "id": "sflesh_fleshling_huge_spawned", 84 | "enchantments": [ { "values": [ { "value": "SPEED", "multiply": -0.25 } ] } ] 85 | } 86 | ] 87 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_effects_limit_cost.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "effect_type", 4 | "id": "secro_veinstalk_limit", 5 | "base_mods": { "hurt_min": [ 1 ], "hurt_max": [ 2 ] } 6 | }, 7 | { 8 | "type": "effect_type", 9 | "id": "mon_shifter_illu_limit", 10 | "base_mods": { "hurt_min": [ 5 ], "hurt_max": [ 10 ] } 11 | }, 12 | { 13 | "type": "effect_type", 14 | "id": "eff_bot_secromissile_limit", 15 | "base_mods": { "hurt_min": [ 1 ], "hurt_tick": [ 3 ] } 16 | }, 17 | { 18 | "type": "effect_type", 19 | "id": "eff_bot_secroinforcer_deploy_cost", 20 | "base_mods": { "hurt_min": [ 15 ] } 21 | }, 22 | { 23 | "type": "effect_type", 24 | "id": "eff_bot_secromissile_slow", 25 | "base_mods": { "speed_mod": [ -150 ] } 26 | }, 27 | { 28 | "type": "effect_type", 29 | "id": "eff_grubbyworm_limit", 30 | "base_mods": { "hurt_min": [ 1 ], "hurt_tick": [ 3 ], "hurt_chance": [ 3 ] } 31 | }, 32 | { 33 | "type": "effect_type", 34 | "id": "mon_sflesh_fleshling_huge_limit", 35 | "rating": "bad", 36 | "base_mods": { "hurt_min": [ 30 ], "hurt_max": [ 60 ] } 37 | }, 38 | { 39 | "type": "effect_type", 40 | "id": "mon_sflesh_fleshling_scavengy_spawnlimits", 41 | "base_mods": { "hurt_min": [ 1 ], "hurt_tick": [ 10 ] } 42 | }, 43 | { 44 | "type": "effect_type", 45 | "id": "mon_sflesh_fleshling_ravagy_fburst_pay", 46 | "rating": "bad", 47 | "base_mods": { "hurt_min": [ 5 ], "hurt_max": [ 15 ] } 48 | }, 49 | { 50 | "type": "effect_type", 51 | "id": "mon_sflesh_fleshling_ravagy_outb_pay", 52 | "rating": "bad", 53 | "base_mods": { "hurt_min": [ 20 ], "hurt_max": [ 40 ] } 54 | } 55 | ] -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_effects_self.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "effect_type", 4 | "id": "secro_down_immune", 5 | "max_duration": 1, 6 | "removes_effects": [ "downed" ], 7 | "blocks_effects": [ "downed" ] 8 | }, 9 | { 10 | "type": "effect_type", 11 | "id": "secro_sacrifice_effect", 12 | "base_mods": { "hurt_min": [ 100000000 ], "speed_mod": [ -1000 ] } 13 | }, 14 | { 15 | "type": "effect_type", 16 | "id": "secro_magic_target", 17 | "name": [ "Target" ], 18 | "desc": [ "An ally or foe locks its line of sight onto you!" ] 19 | }, 20 | { 21 | "type": "effect_type", 22 | "id": "secro_fleshmonger_fleshed_immune", 23 | "removes_effects": [ "secro_fleshmonger_fleshed" ], 24 | "blocks_effects": [ "secro_fleshmonger_fleshed" ] 25 | }, 26 | { 27 | "type": "effect_type", 28 | "id": "secro_akin_death", 29 | "max_duration": 1, 30 | "removes_effects": [ "secro_akin_constrict", "secro_akin_siphon_foe", "secro_akin_siphon_ally" ] 31 | }, 32 | { 33 | "type": "effect_type", 34 | "id": "secro_revenant_trigger_immune", 35 | "max_duration": 12, 36 | "removes_effects": [ "secro_revenant_trigger" ], 37 | "blocks_effects": [ "secro_revenant_trigger" ] 38 | }, 39 | { 40 | "type": "effect_type", 41 | "id": "secro_revenant_allure_induce_immune", 42 | "max_duration": 1, 43 | "removes_effects": [ "secro_revenant_allure_induce" ], 44 | "blocks_effects": [ "secro_revenant_allure_induce" ] 45 | }, 46 | { 47 | "type": "effect_type", 48 | "id": "secro_zombie_spider_cripple", 49 | "name": [ "Crippled" ], 50 | "max_intensity": 8, 51 | "int_add_val": 1, 52 | "show_in_info": true, 53 | "scaling_mods": { "speed_mod": [ -20 ] } 54 | }, 55 | { 56 | "type": "effect_type", 57 | "id": "eff_bot_secrolauncher_slow", 58 | "base_mods": { "speed_mod": [ -70 ] } 59 | }, 60 | { 61 | "type": "effect_type", 62 | "id": "secro_maneater_healing", 63 | "max_duration": "6 seconds", 64 | "enchantments": [ { "values": [ { "value": "REGEN_HP", "add": 5 } ] } ] 65 | }, 66 | { 67 | "type": "effect_type", 68 | "id": "secro_maneater_evo_healing", 69 | "max_duration": "6 seconds", 70 | "enchantments": [ { "values": [ { "value": "REGEN_HP", "add": 15 } ] } ] 71 | }, 72 | { 73 | "type": "effect_type", 74 | "id": "secro_maneater_healing_more", 75 | "max_duration": "6 seconds", 76 | "enchantments": [ { "values": [ { "value": "REGEN_HP", "add": 35 } ] } ] 77 | }, 78 | { 79 | "type": "effect_type", 80 | "id": "secro_maneater_evo_healing_more", 81 | "max_duration": "6 seconds", 82 | "enchantments": [ { "values": [ { "value": "REGEN_HP", "add": 105 } ] } ] 83 | }, 84 | { 85 | "type": "effect_type", 86 | "id": "secro_maneater_bloodexp_eff", 87 | "enchantments": [ 88 | { 89 | "values": [ 90 | { "value": "ARMOR_BASH", "multiply": -0.66 }, 91 | { "value": "ARMOR_CUT", "multiply": -0.66 }, 92 | { "value": "ARMOR_STAB", "multiply": -0.66 }, 93 | { "value": "ARMOR_BULLET", "multiply": -0.66 } 94 | ] 95 | } 96 | ], 97 | "removes_effects": [ "stunned", "grabbed", "downed" ], 98 | "blocks_effects": [ "stunned", "grabbed", "downed" ] 99 | }, 100 | { 101 | "type": "effect_type", 102 | "id": "secro_zombie_fleshysnaky_coiling", 103 | "enchantments": [ 104 | { 105 | "values": [ 106 | { "value": "ARMOR_BASH", "multiply": -0.25 }, 107 | { "value": "ARMOR_CUT", "multiply": -0.25 }, 108 | { "value": "ARMOR_STAB", "multiply": -0.25 }, 109 | { "value": "ARMOR_BULLET", "multiply": -0.25 } 110 | ] 111 | } 112 | ], 113 | "removes_effects": [ "stunned", "grabbed", "downed" ], 114 | "blocks_effects": [ "stunned", "grabbed", "downed" ], 115 | "name": [ "Crippled" ], 116 | "show_in_info": true 117 | } 118 | ] 119 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_faction.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "MONSTER_FACTION", 4 | "name": "unknown" 5 | }, 6 | { 7 | "type": "MONSTER_FACTION", 8 | "name": "saddler", 9 | "neutral": [ "bot" ] 10 | }, 11 | { 12 | "type": "MONSTER_FACTION", 13 | "name": "ayenel" 14 | }, 15 | { 16 | "type": "MONSTER_FACTION", 17 | "name": "fleshweaver", 18 | "//": "Only befriends natural (those who are composed of pure flesh) lifeforms like you and wild animals.", 19 | "friendly": [ "human", "animal", "insect" ], 20 | "neutral": [ "zombie", "zombie_aquatic", "blob", "nether", "bot", "plant" ] 21 | }, 22 | { 23 | "type": "MONSTER_FACTION", 24 | "name": "human", 25 | "friendly": [ "fleshweaver" ] 26 | }, 27 | { 28 | "type": "MONSTER_FACTION", 29 | "name": "animal", 30 | "friendly": [ "fleshweaver" ], 31 | "neutral": [ "small_animal" ] 32 | }, 33 | { 34 | "type": "MONSTER_FACTION", 35 | "name": "insect", 36 | "friendly": [ "fleshweaver" ], 37 | "neutral": [ "military", "defense_bot", "utility_bot", "zombie" ], 38 | "by_mood": "insect" 39 | }, 40 | { 41 | "type": "MONSTER_FACTION", 42 | "name": "maneater" 43 | }, 44 | { 45 | "type": "MONSTER_FACTION", 46 | "name": "carrion" 47 | }, 48 | { 49 | "type": "MONSTER_FACTION", 50 | "name": "carrion2", 51 | "friendly": [ "carrion" ] 52 | }, 53 | { 54 | "type": "MONSTER_FACTION", 55 | "name": "vector" 56 | }, 57 | { 58 | "type": "MONSTER_FACTION", 59 | "name": "secro_flesh", 60 | "friendly": [ "secro_flesh2", "secro_flesh3" ] 61 | }, 62 | { 63 | "//": "For crimson horrors like a fleshling, which are pacifists and only attack with abilities.", 64 | "type": "MONSTER_FACTION", 65 | "name": "secro_flesh2", 66 | "by_mood": "secro_flesh", 67 | "friendly": [ "secro_flesh3" ] 68 | }, 69 | { 70 | "//": "Given faction to a monster to prevent them from being attacked by #2.", 71 | "type": "MONSTER_FACTION", 72 | "name": "secro_flesh3", 73 | "friendly": [ "secro_flesh", "secro_flesh2" ] 74 | }, 75 | { 76 | "type": "MONSTER_FACTION", 77 | "name": "shifter" 78 | }, 79 | { 80 | "type": "MONSTER_FACTION", 81 | "name": "secro_defense_bot", 82 | "base_faction": "bot", 83 | "neutral": [ "cop_bot", "defense_bot", "military", "utility_bot", "science", "small_animal" ], 84 | "friendly": [ "human" ] 85 | }, 86 | { 87 | "type": "MONSTER_FACTION", 88 | "name": "zombie_weaver", 89 | "base_faction": "zombie", 90 | "hate": [ "zombie", "zombie_aquatic" ] 91 | } 92 | ] 93 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_harvest.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secrodragon_harvest", 4 | "//": "Choosing dissection is worthless, since it has a huge amount of edible meat, unless you aim to get it.", 5 | "message": "With effort, you attempt to collect some worthy byproducts out of the dragon.", 6 | "type": "harvest", 7 | "entries": [ 8 | { "drop": "bio_power_storage_mkII", "type": "bionic" }, 9 | { "drop": "bionics_op", "type": "bionic_group" }, 10 | { "drop": "meat", "type": "flesh", "mass_ratio": 0.35 }, 11 | { "drop": "meat_scrap", "type": "flesh", "mass_ratio": 0.02 }, 12 | { "drop": "lung", "type": "flesh", "mass_ratio": 0.004 }, 13 | { "drop": "liver", "type": "offal", "mass_ratio": 0.01 }, 14 | { "drop": "brain", "type": "flesh", "mass_ratio": 0.005 }, 15 | { "drop": "sweetbread", "type": "flesh", "mass_ratio": 0.002 }, 16 | { "drop": "kidney", "type": "offal", "mass_ratio": 0.002 }, 17 | { "drop": "stomach_large", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, 18 | { "drop": "bone", "type": "bone", "mass_ratio": 0.15 }, 19 | { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, 20 | { "drop": "fat", "type": "flesh", "mass_ratio": 0.07 } 21 | ] 22 | }, 23 | { 24 | "id": "CBM_SCI", 25 | "type": "harvest", 26 | "entries": [ 27 | { "drop": "meat_tainted", "type": "flesh", "mass_ratio": 0.25 }, 28 | { "drop": "fat_tainted", "type": "flesh", "mass_ratio": 0.08 }, 29 | { "drop": "bone_tainted", "type": "bone", "mass_ratio": 0.1 } 30 | ] 31 | }, 32 | { 33 | "id": "CBM_OP", 34 | "type": "harvest", 35 | "entries": [ 36 | { "drop": "bio_power_storage_mkII", "type": "bionic" }, 37 | { "drop": "bionics_op", "type": "bionic_group" }, 38 | { "drop": "meat_tainted", "type": "flesh", "mass_ratio": 0.25 }, 39 | { "drop": "fat_tainted", "type": "flesh", "mass_ratio": 0.08 }, 40 | { "drop": "bone_tainted", "type": "bone", "mass_ratio": 0.1 } 41 | ] 42 | } 43 | ] 44 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_magic_eoc_limit_cost.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "effect_on_condition", 4 | "id": "eoc_secro_mon_maneater_bloodspray_cost", 5 | "effect": [ 6 | { 7 | "u_add_effect": "secro_maneater_stack", 8 | "duration": "PERMANENT", 9 | "intensity": { "math": [ "u_effect_intensity('secro_maneater_stack') - 40" ] } 10 | } 11 | ] 12 | }, 13 | { 14 | "type": "effect_on_condition", 15 | "id": "eoc_secro_mon_maneater_bloodexp_cost", 16 | "effect": [ 17 | { 18 | "u_add_effect": "secro_maneater_stack", 19 | "duration": "PERMANENT", 20 | "intensity": { "math": [ "u_effect_intensity('secro_maneater_stack') - 120" ] } 21 | } 22 | ] 23 | }, 24 | { 25 | "type": "effect_on_condition", 26 | "id": "eoc_secro_mon_maneater_bloodexp_loseeff", 27 | "effect": [ { "u_lose_effect": "secro_maneater_bloodexp_eff" } ] 28 | } 29 | ] 30 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_magic_eoc_onspawn.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "effect_on_condition", 4 | "id": "eoc_secro_veinstalk_initial", 5 | "effect": [ { "u_add_effect": "secro_veinstalk_limit", "duration": "PERMANENT" } ] 6 | }, 7 | { 8 | "type": "effect_on_condition", 9 | "id": "eoc_secro_flesh_wall_initial", 10 | "effect": [ { "u_add_effect": "secro_flesh_wall_limit", "duration": "PERMANENT" } ] 11 | }, 12 | { 13 | "type": "effect_on_condition", 14 | "id": "eoc_secro_mon_sflesh_fleshling_scavengy_limit", 15 | "effect": [ { "u_add_effect": "mon_sflesh_fleshling_scavengy_spawnlimits", "duration": "PERMANENT" } ] 16 | }, 17 | { 18 | "type": "effect_on_condition", 19 | "id": "eoc_secro_mon_sflesh_fleshling_ex_initial", 20 | "effect": [ { "u_add_effect": "eff_fleshling_splitcheck", "duration": "PERMANENT" } ] 21 | } 22 | ] 23 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_mondrops.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "item_group", 4 | "subtype": "collection", 5 | "id": "mon_zombie_relinquish_death_drop", 6 | "entries": [ { "item": "relinquish_revive" } ] 7 | }, 8 | { 9 | "type": "item_group", 10 | "subtype": "collection", 11 | "id": "mon_sflesh_flesh_death_drop", 12 | "entries": [ { "item": "sflesh_bio", "count": [ 2, 5 ] }, { "item": "secro_flesh_core", "count": [ 2, 4 ] } ] 13 | }, 14 | { 15 | "type": "item_group", 16 | "subtype": "collection", 17 | "id": "mon_sflesh_flesh_weak_death_drop", 18 | "entries": [ { "item": "sflesh_bio", "count": [ 1, 2 ] }, { "item": "secro_flesh_core", "count": [ 1, 3 ] } ] 19 | }, 20 | { 21 | "type": "item_group", 22 | "subtype": "collection", 23 | "id": "mon_shifter_fakeform_death_drop", 24 | "entries": [ { "item": "shifter_shift" } ] 25 | } 26 | ] 27 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_species.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Common secronom zeds such as tendril and spider zombies.", 4 | "type": "SPECIES", 5 | "id": "SECROZED_1", 6 | "description": "a secronom mutant" 7 | }, 8 | { 9 | "//": "Rare secronom zeds such as nautilus, nix and dissonant screamer.", 10 | "type": "SPECIES", 11 | "id": "SECROZED_2", 12 | "description": "an elite secronom mutant" 13 | }, 14 | { 15 | "//": "Exceptional secronom zeds. Titan, nocturne and final formed zed such as wraith fall to this specie.", 16 | "type": "SPECIES", 17 | "id": "SECROZED_3", 18 | "description": "a deadly secronom mutant" 19 | }, 20 | { 21 | "//": "End-game secronom zeds. Few fall to this specie, as they are nearly impossible to kill w/o high dps weapons.", 22 | "type": "SPECIES", 23 | "id": "SECROZED_ULTIMATE", 24 | "description": "a catastrophic secronom mutant" 25 | }, 26 | { 27 | "type": "SPECIES", 28 | "id": "SECROSPEC", 29 | "description": "a secronom specimen" 30 | }, 31 | { 32 | "type": "SPECIES", 33 | "id": "SECROWORM", 34 | "description": "a secronom worm mutant" 35 | }, 36 | { 37 | "type": "SPECIES", 38 | "id": "SECRODRAG", 39 | "description": "a cyber-dragon" 40 | }, 41 | { 42 | "type": "SPECIES", 43 | "id": "SECROSWARMER", 44 | "description": "a secronom mutant" 45 | }, 46 | { 47 | "type": "SPECIES", 48 | "id": "SECROSWARMER_ALPHA", 49 | "description": "a secronom mutant" 50 | }, 51 | { 52 | "type": "SPECIES", 53 | "id": "SFLESH", 54 | "anger_triggers": [ "HURT", "FRIEND_ATTACKED", "FRIEND_DIED", "HOSTILE_SEEN", "PLAYER_CLOSE" ], 55 | "description": "a crimson horror" 56 | }, 57 | { 58 | "type": "SPECIES", 59 | "id": "SFLESH_FLESHLING", 60 | "anger_triggers": [ "HURT", "FRIEND_ATTACKED", "FRIEND_DIED", "HOSTILE_SEEN", "PLAYER_CLOSE" ], 61 | "description": "a crimson horror", 62 | "footsteps": "plop." 63 | }, 64 | { 65 | "type": "SPECIES", 66 | "id": "SFLESH_FLESHLING_EX", 67 | "anger_triggers": [ "HURT", "FRIEND_ATTACKED", "FRIEND_DIED", "HOSTILE_SEEN", "PLAYER_CLOSE" ], 68 | "description": "a crimson horror", 69 | "footsteps": "plop." 70 | }, 71 | { 72 | "type": "SPECIES", 73 | "id": "SSADDLER", 74 | "description": "an insectoid" 75 | } 76 | ] 77 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/-Essentials/secro_speech.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "speech", 4 | "speaker": "mon_fleshweaver", 5 | "sound": "claws grinding!", 6 | "volume": 20 7 | }, 8 | { 9 | "type": "speech", 10 | "speaker": "mon_fleshweaver", 11 | "sound": "screeches of claws!", 12 | "volume": 20 13 | }, 14 | { 15 | "type": "speech", 16 | "speaker": "mon_fleshweaver", 17 | "sound": "a harsh, screeching voice!", 18 | "volume": 30 19 | }, 20 | { 21 | "//": "In half-life, scientists with head crabs beg for help, but they speak backwards (heard only when near them). It was an easter egg too!", 22 | "type": "speech", 23 | "speaker": [ "mon_saddler_infected", "mon_saddler_infected_brute", "mon_saddler_infected_scout" ], 24 | "sound": "\"…em pleh\"", 25 | "volume": 2 26 | }, 27 | { 28 | "type": "speech", 29 | "speaker": [ "mon_saddler_infected", "mon_saddler_infected_brute", "mon_saddler_infected_scout" ], 30 | "sound": "\"…efil ym dne\"", 31 | "volume": 2 32 | }, 33 | { 34 | "type": "speech", 35 | "speaker": [ "mon_saddler_infected", "mon_saddler_infected_brute", "mon_saddler_infected_scout" ], 36 | "sound": "\"…efil ym ot dne na tup esaelp\"", 37 | "volume": 2 38 | }, 39 | { 40 | "type": "speech", 41 | "speaker": [ "mon_saddler_infected", "mon_saddler_infected_brute", "mon_saddler_infected_scout" ], 42 | "sound": "\"…resolc pets tnod\"", 43 | "volume": 2 44 | }, 45 | { 46 | "type": "speech", 47 | "speaker": [ "mon_saddler_infected", "mon_saddler_infected_brute", "mon_saddler_infected_scout" ], 48 | "sound": "\"…ti llik\"", 49 | "volume": 2 50 | }, 51 | { 52 | "type": "speech", 53 | "speaker": [ "mon_saddler_infected", "mon_saddler_infected_brute", "mon_saddler_infected_scout" ], 54 | "sound": "\"…ouy geb I\"", 55 | "volume": 2 56 | }, 57 | { 58 | "type": "speech", 59 | "speaker": [ "mon_saddler_infected", "mon_saddler_infected_brute", "mon_saddler_infected_scout" ], 60 | "sound": "inaudible mumbling.", 61 | "volume": 5 62 | }, 63 | { 64 | "type": "speech", 65 | "speaker": [ "mon_saddler_infected", "mon_saddler_infected_brute", "mon_saddler_infected_scout" ], 66 | "sound": "inaudible screeching voice.", 67 | "volume": 5 68 | } 69 | ] 70 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Abberations/Ayenel.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "A jabberwock, much like that.", 4 | "id": "mon_ayenel", 5 | "type": "MONSTER", 6 | "name": { "str": "ayenel" }, 7 | "description": "A walking flesh sentinel, with huge, sharp blade hanging from its predominant eye. Its extra appendages hang without a certain function.", 8 | "default_faction": "ayenel", 9 | "species": [ "ABERRATION", "SECROSPEC" ], 10 | "diff": 10, 11 | "volume": "875000 ml", 12 | "weight": "200000 g", 13 | "hp": 535, 14 | "speed": 75, 15 | "material": [ "flesh", "bone" ], 16 | "symbol": "⒪", 17 | "color": "light_red", 18 | "aggression": 100, 19 | "morale": 100, 20 | "melee_skill": 8, 21 | "melee_dice": 4, 22 | "melee_dice_sides": 8, 23 | "attack_cost": 200, 24 | "dodge": 2, 25 | "harvest": "zombie", 26 | "melee_damage": [ { "damage_type": "cut", "amount": 15 } ], 27 | "armor": { "bash": 8, "cut": 13, "bullet": 13, "stab": 13, "acid": 1 }, 28 | "vision_day": 42, 29 | "vision_night": 16, 30 | "special_attacks": [ 31 | [ "secro_ayenel_swing", 18 ], 32 | [ "secro_ayenel_bitedown", 26 ], 33 | { 34 | "id": "monspell_ayenel_lockon_check", 35 | "type": "spell", 36 | "spell_data": { "id": "mon_ayenel_lockon_check" }, 37 | "cooldown": 80, 38 | "condition": { "math": [ "distance('u', 'npc')", ">=", "5" ] }, 39 | "monster_message": "%1$s glares at %3$s!" 40 | } 41 | ], 42 | "flags": [ "SEES", "WARM", "BASHES", "POISON", "ATTACKMON", "NO_BREATHE", "PUSH_MON" ] 43 | } 44 | ] 45 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Abberations/Weaver.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_fleshweaver", 4 | "looks_like": "mon_kreck", 5 | "type": "MONSTER", 6 | "name": { "str": "flesh weaver" }, 7 | "description": "A large, beetle-like creature with broad set of claws and appendages, odd to its vile yet pacifistic nature.", 8 | "default_faction": "fleshweaver", 9 | "species": [ "ABERRATION", "SECROSPEC" ], 10 | "volume": "62500 ml", 11 | "weight": "81500 g", 12 | "hp": 160, 13 | "speed": 85, 14 | "material": [ "flesh", "bone" ], 15 | "symbol": "⨣", 16 | "color": "light_blue", 17 | "aggression": -100, 18 | "morale": 100, 19 | "melee_skill": 4, 20 | "melee_dice": 2, 21 | "melee_dice_sides": 4, 22 | "melee_damage": [ { "damage_type": "cut", "amount": 6 } ], 23 | "attack_cost": 115, 24 | "dodge": 1, 25 | "harvest": "arachnid", 26 | "armor": { "bash": 6, "cut": 12, "bullet": 10, "stab": 10, "acid": 1, "heat": 1 }, 27 | "vision_day": 24, 28 | "vision_night": 8, 29 | "petfood": { 30 | "food": [ "SECRO_FWEAVERFOOD" ], 31 | "feed": "The %s consumes the \"petfood\".", 32 | "pet": "The %s's antennae flicks rapidly." 33 | }, 34 | "chat_topics": [ "TALK_SECRO_FWEAVER_main" ], 35 | "special_attacks": [ 36 | [ "PARROT_AT_DANGER", 10 ], 37 | { 38 | "type": "spell", 39 | "spell_data": { "id": "mon_fleshweaver_vscratch" }, 40 | "cooldown": 33, 41 | "monster_message": "%1$s injects %3$s with a volatile fluid!" 42 | } 43 | ], 44 | "placate_triggers": [ "PLAYER_CLOSE" ], 45 | "anger_triggers": [ "HURT", "HOSTILE_SEEN" ], 46 | "flags": [ "HEARS", "SEES", "SMELLS", "WARM", "CAN_OPEN_DOORS", "CLIMBS", "PATH_AVOID_DANGER" ] 47 | } 48 | ] 49 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Amalgam_spawns.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_fleshling_scavengy_explosive", 4 | "copy-from": "mon_sflesh_fleshling_tiny", 5 | "looks_like": "mon_sflesh_fleshling_tiny", 6 | "type": "MONSTER", 7 | "description": "A tiny slab of meat that moves by either hopping or slithering through the ground. It throbs faster as it gets closer.", 8 | "default_faction": "secro_flesh3", 9 | "species": [ "SFLESH", "ABERRATION" ], 10 | "relative": { "speed": 10 }, 11 | "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, 12 | "special_attacks": [ 13 | { 14 | "id": "monspell_sflesh_fleshling_scavengy_limit", 15 | "type": "spell", 16 | "spell_data": { "id": "mon_sflesh_fleshling_scavengy_limit" }, 17 | "cooldown": 1, 18 | "monster_message": "", 19 | "condition": { "not": { "u_has_effect": "mon_sflesh_fleshling_scavengy_spawnlimits" } }, 20 | "allow_no_target": true 21 | }, 22 | { 23 | "id": "monspell_sflesh_fleshling_scavengy_explosive_pop_target", 24 | "type": "spell", 25 | "spell_data": { "id": "mon_sflesh_fleshling_scavengy_explosive_pop_target" }, 26 | "cooldown": 5, 27 | "monster_message": "%1$s explodes into gore!" 28 | } 29 | ] 30 | }, 31 | { 32 | "id": "mon_sflesh_fleshling_scavengy_tent", 33 | "copy-from": "mon_sflesh_fleshling_tiny", 34 | "looks_like": "mon_sflesh_fleshling_tiny", 35 | "type": "MONSTER", 36 | "description": "A tiny slab of meat that moves by either hopping or slithering through the ground. It throbs faster as it gets closer.", 37 | "default_faction": "secro_flesh3", 38 | "species": [ "SFLESH", "ABERRATION" ], 39 | "relative": { "speed": 10 }, 40 | "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, 41 | "special_attacks": [ 42 | { 43 | "id": "monspell_sflesh_fleshling_scavengy_limit", 44 | "type": "spell", 45 | "spell_data": { "id": "mon_sflesh_fleshling_scavengy_limit" }, 46 | "cooldown": 1, 47 | "monster_message": "", 48 | "condition": { "not": { "u_has_effect": "mon_sflesh_fleshling_scavengy_spawnlimits" } }, 49 | "allow_no_target": true 50 | }, 51 | { 52 | "id": "monspell_sflesh_fleshling_scavengy_tent_tentsurprise", 53 | "type": "spell", 54 | "spell_data": { "id": "mon_sflesh_fleshling_scavengy_tent_tentsurprise" }, 55 | "cooldown": 5, 56 | "monster_message": "%1$s explodes into a heap of bladed tentacles!" 57 | } 58 | ] 59 | }, 60 | { 61 | "id": "mon_sflesh_fleshling_scavengy_sticky", 62 | "copy-from": "mon_sflesh_fleshling_tiny", 63 | "looks_like": "mon_sflesh_fleshling_tiny", 64 | "type": "MONSTER", 65 | "description": "A tiny slab of meat that moves by either hopping or slithering through the ground. It throbs faster as it gets closer.", 66 | "default_faction": "secro_flesh3", 67 | "species": [ "SFLESH", "ABERRATION" ], 68 | "relative": { "speed": 10 }, 69 | "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, 70 | "special_attacks": [ 71 | { 72 | "id": "monspell_sflesh_fleshling_scavengy_limit", 73 | "type": "spell", 74 | "spell_data": { "id": "mon_sflesh_fleshling_scavengy_limit" }, 75 | "cooldown": 1, 76 | "monster_message": "", 77 | "condition": { "not": { "u_has_effect": "mon_sflesh_fleshling_scavengy_spawnlimits" } }, 78 | "allow_no_target": true 79 | }, 80 | { 81 | "id": "monspell_sflesh_fleshling_scavengy_sticky_sg", 82 | "type": "spell", 83 | "spell_data": { "id": "mon_sflesh_fleshling_scavengy_sticky_sg" }, 84 | "cooldown": 5, 85 | "monster_message": "%1$s sticks on %3$s!" 86 | } 87 | ] 88 | } 89 | ] -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/FleshVeins.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Vein that deals cutting damage.", 4 | "id": "mon_sflesh_vbeast", 5 | "type": "MONSTER", 6 | "name": { "str": "vein beast" }, 7 | "description": "A cluster of veins formed into a horrendous creeping abomination. Thick strands of membranous vine-like tendrils reaches out of its beating core.", 8 | "default_faction": "secro_flesh", 9 | "bodytype": "migo", 10 | "species": [ "SFLESH", "ABERRATION" ], 11 | "volume": "92500 ml", 12 | "weight": "120000 g", 13 | "hp": 140, 14 | "speed": 85, 15 | "material": [ "flesh" ], 16 | "symbol": "⨳", 17 | "color": "light_red", 18 | "aggression": 100, 19 | "morale": 100, 20 | "melee_skill": 6, 21 | "melee_dice": 0, 22 | "melee_dice_sides": 4, 23 | "melee_damage": [ { "damage_type": "cut", "amount": 6 } ], 24 | "armor": { "bash": 10, "cut": 3, "bullet": 3, "stab": 8 }, 25 | "vision_day": 10, 26 | "vision_night": 10, 27 | "weakpoints": [ 28 | { 29 | "name": "its core", 30 | "difficulty": { "melee": 3 }, 31 | "coverage": 5, 32 | "damage_mult": { "all": 2.0 } 33 | } 34 | ], 35 | "special_attacks": [ [ "secro_sflesh_vbeast_wlace", 18 ] ], 36 | "harvest": "exempt", 37 | "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, 38 | "flags": [ "SEES", "WARM", "POISON", "NO_BREATHE", "STUN_IMMUNE", "CLIMBS" ] 39 | }, 40 | { 41 | "//": "Vein that deals bashing damage.", 42 | "id": "mon_sflesh_vrumbler", 43 | "type": "MONSTER", 44 | "name": { "str": "rumbler" }, 45 | "description": "A thick group of veins unified into a crawling nightmare. Large, amalgous core is visible to its predominant limb, and tendrils seemingly gathers around it.", 46 | "default_faction": "secro_flesh", 47 | "bodytype": "migo", 48 | "species": [ "SFLESH", "ABERRATION" ], 49 | "volume": "92500 ml", 50 | "weight": "120000 g", 51 | "hp": 185, 52 | "speed": 85, 53 | "material": [ "flesh" ], 54 | "symbol": "⩮", 55 | "color": "light_red", 56 | "aggression": 100, 57 | "morale": 100, 58 | "melee_skill": 6, 59 | "melee_dice": 6, 60 | "melee_dice_sides": 4, 61 | "armor": { "bash": 10, "cut": 3, "bullet": 3, "stab": 8 }, 62 | "vision_day": 10, 63 | "vision_night": 10, 64 | "weakpoints": [ 65 | { 66 | "name": "its core", 67 | "difficulty": { "melee": 3 }, 68 | "coverage": 15, 69 | "damage_mult": { "all": 1.66 } 70 | } 71 | ], 72 | "special_attacks": [ [ "secro_flesh_vrumbler_thrash", 24 ] ], 73 | "harvest": "exempt", 74 | "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, 75 | "flags": [ "SEES", "WARM", "POISON", "NO_BREATHE", "STUN_IMMUNE", "CLIMBS" ] 76 | } 77 | ] -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Flesh_undead.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_zombie_turret", 4 | "type": "MONSTER", 5 | "name": { "str": "flesh heap" }, 6 | "description": "An enormous outgrowth of flesh with numerous putrid corpses unified in its edges. Dribbling blood seeps from the mouth of the zombies.", 7 | "default_faction": "secro_flesh", 8 | "species": [ "SFLESH", "ABERRATION", "ZOMBIE" ], 9 | "diff": 2, 10 | "volume": "300 L", 11 | "weight": "3125 kg", 12 | "hp": 300, 13 | "speed": 105, 14 | "material": [ "flesh" ], 15 | "symbol": "⧻", 16 | "color": "red", 17 | "aggression": 80, 18 | "morale": 100, 19 | "melee_skill": 4, 20 | "melee_dice": 3, 21 | "melee_dice_sides": 8, 22 | "melee_damage": [ { "damage_type": "cut", "amount": 2 } ], 23 | "grab_strength": 2, 24 | "armor": { "bash": 14 }, 25 | "harvest": "zombie", 26 | "special_attacks": [ 27 | { "id": "grab", "cooldown": 1 }, 28 | { 29 | "type": "spell", 30 | "spell_data": { "id": "mon_sflesh_zombie_turret_target" }, 31 | "cooldown": 12, 32 | "monster_message": "%1$s pulsates…" 33 | } 34 | ], 35 | "death_function": { 36 | "corpse_type": "NO_CORPSE", 37 | "message": "The %s splits!", 38 | "effect": { "id": "mon_sflesh_zombie_turret_death", "hit_self": true } 39 | }, 40 | "flags": [ "SEES", "HEARS", "SMELLS", "WARM", "POISON", "NO_BREATHE", "IMMOBILE", "PACIFIST", "FILTHY" ] 41 | } 42 | ] 43 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_acid.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_zombie_spitter", 4 | "copy-from": "mon_zombie_spitter", 5 | "burn_into": "mon_zombie_spitter", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] }, 11 | "upgrades": { } 12 | }, 13 | { 14 | "id": "mon_sflesh_zombie_acidic", 15 | "copy-from": "mon_zombie_acidic", 16 | "burn_into": "mon_zombie_acidic", 17 | "type": "MONSTER", 18 | "default_faction": "secro_flesh3", 19 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 20 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 21 | "extend": { "species": [ "SFLESH" ] }, 22 | "upgrades": { } 23 | }, 24 | { 25 | "id": "mon_sflesh_zombie_corrosive", 26 | "copy-from": "mon_zombie_corrosive", 27 | "burn_into": "mon_zombie_corrosive", 28 | "type": "MONSTER", 29 | "default_faction": "secro_flesh3", 30 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 31 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 32 | "extend": { "species": [ "SFLESH" ] } 33 | }, 34 | { 35 | "id": "mon_sflesh_zombie_wretched", 36 | "copy-from": "mon_zombie_wretched", 37 | "burn_into": "mon_zombie_wretched", 38 | "type": "MONSTER", 39 | "default_faction": "secro_flesh3", 40 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 41 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 42 | "extend": { "species": [ "SFLESH" ] }, 43 | "upgrades": { } 44 | }, 45 | { 46 | "id": "mon_sflesh_zombie_dog_acidic", 47 | "copy-from": "mon_zombie_dog_acidic", 48 | "burn_into": "mon_zombie_dog_acidic", 49 | "type": "MONSTER", 50 | "default_faction": "secro_flesh3", 51 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 52 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 53 | "extend": { "species": [ "SFLESH" ] }, 54 | "upgrades": { } 55 | }, 56 | { 57 | "id": "mon_sflesh_zombie_dog_brute_acidic", 58 | "copy-from": "mon_zombie_dog_brute_acidic", 59 | "burn_into": "mon_zombie_dog_brute_acidic", 60 | "type": "MONSTER", 61 | "default_faction": "secro_flesh3", 62 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 63 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 64 | "extend": { "species": [ "SFLESH" ] } 65 | } 66 | ] 67 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_burned.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_zombie_child_scorched", 4 | "copy-from": "mon_zombie_child_scorched", 5 | "burn_into": "mon_zombie_child_scorched", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] }, 11 | "upgrades": false 12 | }, 13 | { 14 | "id": "mon_sflesh_zombie_fiend", 15 | "copy-from": "mon_zombie_fiend", 16 | "burn_into": "mon_zombie_fiend", 17 | "type": "MONSTER", 18 | "default_faction": "secro_flesh3", 19 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 20 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 21 | "extend": { "species": [ "SFLESH" ] }, 22 | "upgrades": false 23 | }, 24 | { 25 | "id": "mon_sflesh_zombie_scorched", 26 | "copy-from": "mon_zombie_scorched", 27 | "burn_into": "mon_zombie_scorched", 28 | "type": "MONSTER", 29 | "default_faction": "secro_flesh3", 30 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 31 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 32 | "extend": { "species": [ "SFLESH" ] }, 33 | "upgrades": false 34 | } 35 | ] 36 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_children.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_zombie_anklebiter", 4 | "copy-from": "mon_zombie_anklebiter", 5 | "burn_into": "mon_zombie_anklebiter", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] } 11 | }, 12 | { 13 | "id": "mon_sflesh_zombie_child", 14 | "copy-from": "mon_zombie_child", 15 | "burn_into": "mon_zombie_child", 16 | "type": "MONSTER", 17 | "default_faction": "secro_flesh3", 18 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 19 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 20 | "extend": { "species": [ "SFLESH" ] }, 21 | "upgrades": false 22 | }, 23 | { 24 | "id": "mon_sflesh_zombie_creepy", 25 | "copy-from": "mon_zombie_creepy", 26 | "burn_into": "mon_zombie_creepy", 27 | "type": "MONSTER", 28 | "default_faction": "secro_flesh3", 29 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 30 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 31 | "extend": { "species": [ "SFLESH" ] } 32 | }, 33 | { 34 | "id": "mon_sflesh_zombie_shriekling", 35 | "copy-from": "mon_zombie_shriekling", 36 | "burn_into": "mon_zombie_shriekling", 37 | "type": "MONSTER", 38 | "default_faction": "secro_flesh3", 39 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 40 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 41 | "extend": { "species": [ "SFLESH" ] } 42 | }, 43 | { 44 | "id": "mon_sflesh_zombie_snotgobbler", 45 | "copy-from": "mon_zombie_snotgobbler", 46 | "burn_into": "mon_zombie_snotgobbler", 47 | "type": "MONSTER", 48 | "default_faction": "secro_flesh3", 49 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 50 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 51 | "extend": { "species": [ "SFLESH" ] } 52 | }, 53 | { 54 | "id": "mon_sflesh_zombie_sproglodyte", 55 | "copy-from": "mon_zombie_sproglodyte", 56 | "burn_into": "mon_zombie_sproglodyte", 57 | "type": "MONSTER", 58 | "default_faction": "secro_flesh3", 59 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 60 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 61 | "extend": { "species": [ "SFLESH" ] } 62 | }, 63 | { 64 | "id": "mon_sflesh_zombie_waif", 65 | "copy-from": "mon_zombie_waif", 66 | "burn_into": "mon_zombie_waif", 67 | "type": "MONSTER", 68 | "default_faction": "secro_flesh3", 69 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 70 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 71 | "extend": { "species": [ "SFLESH" ] } 72 | }, 73 | { 74 | "id": "mon_sflesh_zombie_wretch", 75 | "copy-from": "mon_zombie_wretch", 76 | "burn_into": "mon_zombie_wretch", 77 | "type": "MONSTER", 78 | "default_faction": "secro_flesh3", 79 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 80 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 81 | "extend": { "species": [ "SFLESH" ] } 82 | } 83 | ] 84 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_command.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_electric.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_zombie_brute_shocker", 4 | "copy-from": "mon_zombie_brute_shocker", 5 | "burn_into": "mon_zombie_brute_shocker", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] } 11 | }, 12 | { 13 | "id": "mon_sflesh_zombie_electric", 14 | "copy-from": "mon_zombie_electric", 15 | "burn_into": "mon_zombie_electric", 16 | "type": "MONSTER", 17 | "default_faction": "secro_flesh3", 18 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 19 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 20 | "extend": { "species": [ "SFLESH" ] }, 21 | "upgrades": false 22 | }, 23 | { 24 | "id": "mon_sflesh_zombie_nullfield", 25 | "copy-from": "mon_zombie_nullfield", 26 | "burn_into": "mon_zombie_nullfield", 27 | "type": "MONSTER", 28 | "default_faction": "secro_flesh3", 29 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 30 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 31 | "extend": { "species": [ "SFLESH" ] } 32 | }, 33 | { 34 | "id": "mon_sflesh_zombie_static", 35 | "copy-from": "mon_zombie_static", 36 | "burn_into": "mon_zombie_static", 37 | "type": "MONSTER", 38 | "default_faction": "secro_flesh3", 39 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 40 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 41 | "extend": { "species": [ "SFLESH" ] }, 42 | "upgrades": false 43 | } 44 | ] 45 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_explosive.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_boomer", 4 | "copy-from": "mon_boomer", 5 | "burn_into": "mon_boomer", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] }, 11 | "upgrades": false 12 | }, 13 | { 14 | "id": "mon_sflesh_boomer_huge", 15 | "copy-from": "mon_boomer_huge", 16 | "burn_into": "mon_boomer_huge", 17 | "type": "MONSTER", 18 | "default_faction": "secro_flesh3", 19 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 20 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 21 | "extend": { "species": [ "SFLESH" ] } 22 | }, 23 | { 24 | "id": "mon_sflesh_gas_zombie", 25 | "copy-from": "mon_gas_zombie", 26 | "burn_into": "mon_gas_zombie", 27 | "type": "MONSTER", 28 | "default_faction": "secro_flesh3", 29 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 30 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 31 | "extend": { "species": [ "SFLESH" ] } 32 | }, 33 | { 34 | "id": "mon_sflesh_zombie_gasbag", 35 | "copy-from": "mon_zombie_gasbag", 36 | "burn_into": "mon_zombie_gasbag", 37 | "type": "MONSTER", 38 | "default_faction": "secro_flesh3", 39 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 40 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 41 | "extend": { "species": [ "SFLESH" ] } 42 | }, 43 | { 44 | "id": "mon_sflesh_zombie_relax_gasbag", 45 | "copy-from": "mon_zombie_relax_gasbag", 46 | "burn_into": "mon_zombie_relax_gasbag", 47 | "type": "MONSTER", 48 | "default_faction": "secro_flesh3", 49 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 50 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 51 | "extend": { "species": [ "SFLESH" ] } 52 | }, 53 | { 54 | "id": "mon_sflesh_zombie_tear_gasbag", 55 | "copy-from": "mon_zombie_tear_gasbag", 56 | "burn_into": "mon_zombie_tear_gasbag", 57 | "type": "MONSTER", 58 | "default_faction": "secro_flesh3", 59 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 60 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 61 | "extend": { "species": [ "SFLESH" ] } 62 | }, 63 | { 64 | "id": "mon_sflesh_boomer_glutton", 65 | "copy-from": "mon_boomer_glutton", 66 | "burn_into": "mon_boomer_glutton", 67 | "type": "MONSTER", 68 | "default_faction": "secro_flesh3", 69 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 70 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 71 | "extend": { "species": [ "SFLESH" ] } 72 | }, 73 | { 74 | "id": "mon_sflesh_boomer_claymore", 75 | "copy-from": "mon_boomer_claymore", 76 | "burn_into": "mon_boomer_claymore", 77 | "type": "MONSTER", 78 | "default_faction": "secro_flesh3", 79 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 80 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 81 | "extend": { "species": [ "SFLESH" ] } 82 | } 83 | ] 84 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_ferrous.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_zombie_rust", 4 | "copy-from": "mon_zombie_rust", 5 | "burn_into": "mon_zombie_rust", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] }, 11 | "upgrades": false 12 | }, 13 | { 14 | "id": "mon_sflesh_zombie_shell", 15 | "copy-from": "mon_zombie_shell", 16 | "burn_into": "mon_zombie_shell", 17 | "type": "MONSTER", 18 | "default_faction": "secro_flesh3", 19 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 20 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 21 | "extend": { "species": [ "SFLESH" ] } 22 | }, 23 | { 24 | "id": "mon_sflesh_zombie_plated", 25 | "copy-from": "mon_zombie_plated", 26 | "burn_into": "mon_zombie_plated", 27 | "type": "MONSTER", 28 | "default_faction": "secro_flesh3", 29 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 30 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 31 | "extend": { "species": [ "SFLESH" ] } 32 | }, 33 | { 34 | "id": "mon_sflesh_zombie_urchin", 35 | "copy-from": "mon_zombie_urchin", 36 | "burn_into": "mon_zombie_urchin", 37 | "type": "MONSTER", 38 | "default_faction": "secro_flesh3", 39 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 40 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 41 | "extend": { "species": [ "SFLESH" ] } 42 | }, 43 | { 44 | "id": "mon_sflesh_zombie_hammer_hands", 45 | "copy-from": "mon_zombie_hammer_hands", 46 | "burn_into": "mon_zombie_hammer_hands", 47 | "type": "MONSTER", 48 | "default_faction": "secro_flesh3", 49 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 50 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 51 | "extend": { "species": [ "SFLESH" ] } 52 | } 53 | ] 54 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_lab.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_zombie_scientist", 4 | "copy-from": "mon_zombie_scientist", 5 | "burn_into": "mon_zombie_scientist", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] }, 11 | "upgrades": false 12 | }, 13 | { 14 | "id": "mon_sflesh_zombie_labsecurity", 15 | "copy-from": "mon_zombie_labsecurity", 16 | "burn_into": "mon_zombie_labsecurity", 17 | "type": "MONSTER", 18 | "default_faction": "secro_flesh3", 19 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 20 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 21 | "extend": { "species": [ "SFLESH" ] }, 22 | "upgrades": false 23 | }, 24 | { 25 | "id": "mon_sflesh_zombie_phase_skulker", 26 | "copy-from": "mon_zombie_phase_skulker", 27 | "burn_into": "mon_zombie_phase_skulker", 28 | "type": "MONSTER", 29 | "default_faction": "secro_flesh3", 30 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 31 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 32 | "extend": { "species": [ "SFLESH" ] }, 33 | "upgrades": false 34 | }, 35 | { 36 | "id": "mon_sflesh_zombie_phase_shrike", 37 | "copy-from": "mon_zombie_phase_shrike", 38 | "burn_into": "mon_zombie_phase_shrike", 39 | "type": "MONSTER", 40 | "default_faction": "secro_flesh3", 41 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 42 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 43 | "extend": { "species": [ "SFLESH" ] }, 44 | "upgrades": false 45 | } 46 | ] 47 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_radiation.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_skeletal.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_skeleton", 4 | "copy-from": "mon_skeleton", 5 | "burn_into": "mon_skeleton", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] }, 11 | "upgrades": false 12 | }, 13 | { 14 | "id": "mon_sflesh_skeleton_brute", 15 | "copy-from": "mon_skeleton_brute", 16 | "burn_into": "mon_skeleton_brute", 17 | "type": "MONSTER", 18 | "default_faction": "secro_flesh3", 19 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 20 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 21 | "extend": { "species": [ "SFLESH" ] }, 22 | "upgrades": false 23 | }, 24 | { 25 | "id": "mon_sflesh_skeleton_hulk", 26 | "copy-from": "mon_skeleton_hulk", 27 | "burn_into": "mon_skeleton_hulk", 28 | "type": "MONSTER", 29 | "default_faction": "secro_flesh3", 30 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 31 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 32 | "extend": { "species": [ "SFLESH" ] } 33 | }, 34 | { 35 | "id": "mon_sflesh_skeleton_electric", 36 | "copy-from": "mon_skeleton_electric", 37 | "burn_into": "mon_skeleton_electric", 38 | "type": "MONSTER", 39 | "default_faction": "secro_flesh3", 40 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 41 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 42 | "extend": { "species": [ "SFLESH" ] } 43 | } 44 | ] 45 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_survivor.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_zombie_survivor", 4 | "copy-from": "mon_zombie_survivor", 5 | "burn_into": "mon_zombie_survivor", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] } 11 | }, 12 | { 13 | "id": "mon_sflesh_zombie_paramilitary", 14 | "copy-from": "mon_zombie_paramilitary", 15 | "burn_into": "mon_zombie_paramilitary", 16 | "type": "MONSTER", 17 | "default_faction": "secro_flesh3", 18 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 19 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 20 | "extend": { "species": [ "SFLESH" ] } 21 | }, 22 | { 23 | "id": "mon_sflesh_zombie_survivor_elite", 24 | "copy-from": "mon_zombie_survivor_elite", 25 | "burn_into": "mon_zombie_survivor_elite", 26 | "type": "MONSTER", 27 | "default_faction": "secro_flesh3", 28 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 29 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 30 | "extend": { "species": [ "SFLESH" ] } 31 | } 32 | ] 33 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Crimson Horrors/Zombies/Flesh_z_winged.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_sflesh_zombie_winged", 4 | "copy-from": "mon_zombie_winged", 5 | "burn_into": "mon_zombie_winged", 6 | "type": "MONSTER", 7 | "default_faction": "secro_flesh3", 8 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 9 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 10 | "extend": { "species": [ "SFLESH" ] }, 11 | "upgrades": false 12 | }, 13 | { 14 | "id": "mon_sflesh_zombie_brute_winged", 15 | "copy-from": "mon_zombie_brute_winged", 16 | "burn_into": "mon_zombie_brute_winged", 17 | "type": "MONSTER", 18 | "default_faction": "secro_flesh3", 19 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 20 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 21 | "extend": { "species": [ "SFLESH" ] } 22 | }, 23 | { 24 | "id": "mon_sflesh_spawn_raptor", 25 | "copy-from": "mon_spawn_raptor", 26 | "burn_into": "mon_spawn_raptor", 27 | "type": "MONSTER", 28 | "default_faction": "secro_flesh3", 29 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 30 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 31 | "extend": { "species": [ "SFLESH" ] }, 32 | "upgrades": false 33 | }, 34 | { 35 | "id": "mon_sflesh_spawn_raptor_shady", 36 | "copy-from": "mon_spawn_raptor_shady", 37 | "burn_into": "mon_spawn_raptor_shady", 38 | "type": "MONSTER", 39 | "default_faction": "secro_flesh3", 40 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 41 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 42 | "extend": { "species": [ "SFLESH" ] }, 43 | "upgrades": false 44 | }, 45 | { 46 | "id": "mon_sflesh_spawn_raptor_unstable", 47 | "copy-from": "mon_spawn_raptor_unstable", 48 | "burn_into": "mon_spawn_raptor_unstable", 49 | "type": "MONSTER", 50 | "default_faction": "secro_flesh3", 51 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 52 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 53 | "extend": { "species": [ "SFLESH" ] }, 54 | "upgrades": false 55 | }, 56 | { 57 | "id": "mon_sflesh_spawn_raptor_electric", 58 | "copy-from": "mon_spawn_raptor_electric", 59 | "burn_into": "mon_spawn_raptor_electric", 60 | "type": "MONSTER", 61 | "default_faction": "secro_flesh3", 62 | "relative": { "melee_skill": 1, "armor": { "bash": 3 } }, 63 | "proportional": { "hp": 1.25, "speed": 0.85, "bleed_rate": 0.33 }, 64 | "extend": { "species": [ "SFLESH" ] }, 65 | "upgrades": false 66 | } 67 | ] 68 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Insects/ZombieParasiteWorms.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_insect_parasiteworm", 4 | "type": "MONSTER", 5 | "name": { "str": "parasitic swarm" }, 6 | "description": "Slithering parasite worms of unknown origin, still coated in fresh zombie blood.", 7 | "default_faction": "zombie", 8 | "species": [ "INSECT", "ZOMBIE" ], 9 | "volume": "750 ml", 10 | "weight": "1000 g", 11 | "harvest": "exempt", 12 | "hp": 10, 13 | "speed": 75, 14 | "material": [ "iflesh" ], 15 | "bleed_rate": 0, 16 | "symbol": "~", 17 | "color": "yellow_green", 18 | "aggression": 100, 19 | "morale": 100, 20 | "melee_skill": 2, 21 | "melee_dice": 1, 22 | "melee_dice_sides": 2, 23 | "special_attacks": [ 24 | { 25 | "type": "spell", 26 | "spell_data": { "id": "mon_insect_parasiteworm_limit_initial" }, 27 | "cooldown": 1, 28 | "allow_no_target": true, 29 | "condition": { "not": { "u_has_effect": "eff_grubbyworm_limit" } }, 30 | "monster_message": "" 31 | } 32 | ], 33 | "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, 34 | "flags": [ "SEES", "HEARS", "SMELLS", "NO_BREATHE", "HARDTOSHOOT", "POISON", "ATTACK_LOWER", "PACIFIST" ] 35 | }, 36 | { 37 | "id": "mon_insect_parasiteworm_pain", 38 | "copy-from": "mon_insect_parasiteworm", 39 | "type": "MONSTER", 40 | "default_faction": "zombie", 41 | "extend": { "special_attacks": [ [ "secro_insect_parasiteworm_pain", 1 ] ] } 42 | }, 43 | { 44 | "id": "mon_insect_parasiteworm_int", 45 | "copy-from": "mon_insect_parasiteworm", 46 | "type": "MONSTER", 47 | "default_faction": "zombie", 48 | "extend": { "special_attacks": [ [ "secro_insect_parasiteworm_int", 1 ] ] } 49 | }, 50 | { 51 | "id": "mon_insect_parasiteworm_move", 52 | "copy-from": "mon_insect_parasiteworm", 53 | "type": "MONSTER", 54 | "default_faction": "zombie", 55 | "extend": { "special_attacks": [ [ "secro_insect_parasiteworm_move", 1 ] ] } 56 | }, 57 | { 58 | "id": "mon_insect_parasiteworm_stomach", 59 | "copy-from": "mon_insect_parasiteworm", 60 | "type": "MONSTER", 61 | "default_faction": "zombie", 62 | "extend": { "special_attacks": [ [ "secro_insect_parasiteworm_stomach", 1 ] ] } 63 | }, 64 | { 65 | "id": "mon_insect_parasiteworm_weaken", 66 | "copy-from": "mon_insect_parasiteworm", 67 | "type": "MONSTER", 68 | "default_faction": "zombie", 69 | "extend": { "special_attacks": [ [ "secro_insect_parasiteworm_weaken", 1 ] ] } 70 | }, 71 | { 72 | "id": "mon_insect_parasiteworm_big", 73 | "copy-from": "mon_insect_parasiteworm", 74 | "type": "MONSTER", 75 | "default_faction": "zombie", 76 | "extend": { "special_attacks": [ [ "secro_insect_parasiteworm_weaken", 1 ] ] } 77 | } 78 | ] 79 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Unknown/___.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Ey, its a surprise monster. It'll deliver the finest challengers for you!", 4 | "id": "mon_unknown_unknown", 5 | "looks_like": "mon_vortex", 6 | "type": "MONSTER", 7 | "name": { "str": "Unknown" }, 8 | "description": "A ripple of time and space, transparent and emits a gravitational force field, like that of a black hole's surrounding. Unidentified, it leaves you uncomfortable as if it is a threat or not.", 9 | "default_faction": "unknown", 10 | "species": [ "UNKNOWN" ], 11 | "volume": "3 ml", 12 | "weight": "3 g", 13 | "hp": 999999, 14 | "speed": 10, 15 | "material": [ "secro_null" ], 16 | "symbol": "O", 17 | "color": "black", 18 | "phase": "GAS", 19 | "aggression": 100, 20 | "morale": 100, 21 | "melee_skill": 0, 22 | "melee_dice": 0, 23 | "melee_dice_sides": 0, 24 | "attack_cost": 999, 25 | "harvest": "exempt", 26 | "armor": { "bash": 999, "cut": 999, "stab": 999, "heat": 999, "acid": 999 }, 27 | "vision_day": 10, 28 | "vision_night": 10, 29 | "death_function": { "message": "The %s disintegrates!", "corpse_type": "NO_CORPSE" }, 30 | "flags": [ "FLIES", "STUN_IMMUNE", "NOHEAD", "PACIFIST" ] 31 | }, 32 | { 33 | "id": "mon_unknown_unknown_carrion", 34 | "copy-from": "mon_unknown_unknown", 35 | "looks_like": "mon_vortex", 36 | "type": "MONSTER", 37 | "name": { "str": "???", "str_pl": "???" }, 38 | "special_attacks": [ { "type": "spell", "spell_data": { "id": "mon_unknown_unknown_carrion_target" }, "cooldown": 10 } ] 39 | }, 40 | { 41 | "id": "mon_unknown_unknown_vector", 42 | "copy-from": "mon_unknown_unknown", 43 | "looks_like": "mon_vortex", 44 | "type": "MONSTER", 45 | "name": { "str": "???", "str_pl": "???" }, 46 | "special_attacks": [ { "type": "spell", "spell_data": { "id": "mon_unknown_unknown_vector_target" }, "cooldown": 10 } ] 47 | } 48 | ] 49 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Zombies/Bladed.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "This zombie type has slow attack speed.", 4 | "aggression": 100, 5 | "armor": { "bash": 2, "cut": 4, "bullet": 4, "heat": 1, "acid": 1 }, 6 | "attack_cost": 150, 7 | "color": "light_green", 8 | "death_drops": "default_zombie_death_drops", 9 | "default_faction": "zombie", 10 | "description": "A normal corpse, with one of its arms mutated into a bone blade. Its not that sharp to slice a skin, but enough to leave a bruise.", 11 | "diff": 1, 12 | "dodge": 1, 13 | "flags": [ "SEES", "HEARS", "SMELLS", "WARM", "BASHES", "STUMBLES", "POISON", "NO_BREATHE", "REVIVES", "FILTHY" ], 14 | "harvest": "zombie", 15 | "hp": 85, 16 | "id": "mon_zombie_blade", 17 | "material": [ "flesh" ], 18 | "melee_damage": [ { "amount": 4, "damage_type": "bash" } ], 19 | "melee_dice": 3, 20 | "melee_dice_sides": 4, 21 | "melee_skill": 4, 22 | "morale": 100, 23 | "name": { "str": "blade zombie" }, 24 | "special_attacks": [ [ "secro_swordbash", 25 ], [ "secro_swordbashlow", 50 ] ], 25 | "species": [ "ZOMBIE", "SECROZED_1", "HUMAN" ], 26 | "speed": 95, 27 | "symbol": "⫰", 28 | "type": "MONSTER", 29 | "upgrades": { "half_life": 12, "into_group": "GROUP_BLADED_UPGRADE" }, 30 | "volume": "62500 ml", 31 | "weight": "81500 g" 32 | }, 33 | { 34 | "id": "mon_zombie_sharpblade", 35 | "copy-from": "mon_zombie_blade", 36 | "type": "MONSTER", 37 | "description": "A corpse induced in rotten smell, with a noticable bone sword that glimmers when struck by a source of light.", 38 | "default_faction": "zombie", 39 | "melee_damage": [ { "damage_type": "cut", "amount": 10 } ], 40 | "relative": { "hp": 35, "speed": -5, "melee_dice": 2, "melee_skill": 3, "armor": { "bash": 3, "cut": 3, "stab": 1, "bullet": 2 } }, 41 | "special_attacks": [ [ "secro_swordslash_sharp", 20 ], [ "secro_swordslashlow", 30 ] ], 42 | "upgrades": false, 43 | "color": "green", 44 | "symbol": "⚸" 45 | }, 46 | { 47 | "id": "mon_zombie_serratedblade", 48 | "copy-from": "mon_zombie_blade", 49 | "type": "MONSTER", 50 | "description": "Dragging its serrated bone sword around, the sheer weight of its \"weapon\" burdens the pitiful deceased.", 51 | "default_faction": "zombie", 52 | "melee_damage": [ { "amount": 7, "damage_type": "cut" }, { "amount": 5, "damage_type": "stab" } ], 53 | "relative": { 54 | "hp": 50, 55 | "speed": -20, 56 | "attack_cost": 50, 57 | "melee_dice": 2, 58 | "melee_dice_sides": 1, 59 | "melee_skill": 2, 60 | "armor": { "bash": 4, "cut": 4, "bullet": 4, "heat": 2, "acid": 1 } 61 | }, 62 | "special_attacks": [ [ "secro_swordslash_serrated", 22 ], [ "secro_swordslashlow", 30 ] ], 63 | "upgrades": false, 64 | "color": "green", 65 | "symbol": "⚷" 66 | }, 67 | { 68 | "aggression": 100, 69 | "armor": { "bash": 4, "cut": 12, "bullet": 10, "stab": 10, "heat": 2, "acid": 1 }, 70 | "attack_cost": 175, 71 | "color": "light_green_white", 72 | "death_drops": "default_zombie_death_drops", 73 | "default_faction": "zombie", 74 | "description": "A staggering corpse, accompanied with an outright bladed arm with the length similar to that of a medieval sword. Nimble and seemingly a talented striker, its eyes affixed in one point, as if it takes advantage in seeking the weakness of its ill-fated victim.", 75 | "dodge": 3, 76 | "flags": [ "SEES", "HEARS", "SMELLS", "WARM", "BASHES", "POISON", "NO_BREATHE", "REVIVES", "FILTHY" ], 77 | "harvest": "zombie", 78 | "hp": 200, 79 | "id": "mon_zombie_razor", 80 | "material": [ "flesh" ], 81 | "melee_damage": [ { "damage_type": "cut", "amount": 14 } ], 82 | "diff": 15, 83 | "melee_dice": 1, 84 | "melee_dice_sides": 6, 85 | "melee_skill": 8, 86 | "morale": 100, 87 | "name": { "str": "razor" }, 88 | "special_attacks": [ [ "secro_swordslash_sharp", 10 ] ], 89 | "species": [ "ZOMBIE", "SECROZED_3", "HUMAN" ], 90 | "speed": 90, 91 | "symbol": "⫰", 92 | "type": "MONSTER", 93 | "vision_day": 30, 94 | "volume": "62500 ml", 95 | "weight": "81500 g" 96 | } 97 | ] 98 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Zombies/Revenant.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Support-type zed that manipulates the stats of targeted creatures.", 4 | "id": "mon_zombie_revenant", 5 | "type": "MONSTER", 6 | "name": { "str": "revenant" }, 7 | "description": "Enveloped in odd stench, this severely diluted corpse became an overseer for its fiendish undeads.", 8 | "default_faction": "zombie", 9 | "species": [ "ZOMBIE", "SECROZED_2", "HUMAN" ], 10 | "volume": "62500 ml", 11 | "weight": "81500 g", 12 | "harvest": "zombie", 13 | "hp": 65, 14 | "diff": 1, 15 | "speed": 60, 16 | "material": [ "flesh" ], 17 | "symbol": "♀", 18 | "color": "magenta", 19 | "aggression": 50, 20 | "morale": 50, 21 | "melee_skill": 0, 22 | "melee_dice": 0, 23 | "melee_dice_sides": 0, 24 | "tracking_distance": 5, 25 | "special_attacks": [ 26 | { 27 | "type": "spell", 28 | "spell_data": { "id": "mon_zombie_revenant_target" }, 29 | "cooldown": 12, 30 | "condition": { "math": [ "u_monsters_nearby('radius': 5)", ">=", "2" ] }, 31 | "monster_message": "%1$s shrieks!" 32 | } 33 | ], 34 | "upgrades": { "half_life": 12, "into_group": "GROUP_REVENANT_UPGRADE" }, 35 | "death_drops": "default_zombie_death_drops", 36 | "flags": [ "SEES", "HEARS", "SMELLS", "WARM", "POISON", "NO_BREATHE", "REVIVES", "FILTHY", "KEEP_DISTANCE" ] 37 | }, 38 | { 39 | "id": "mon_zombie_revenant_forsaken", 40 | "type": "MONSTER", 41 | "name": { "str": "forsaken revenant" }, 42 | "description": "Filled with dread and hatred, a gloomy aura enshrouds this corpse's fragile body, as its eyes glare wickedly into the void.", 43 | "default_faction": "zombie", 44 | "species": [ "ZOMBIE", "SECROZED_2", "HUMAN" ], 45 | "volume": "62500 ml", 46 | "weight": "81500 g", 47 | "harvest": "zombie", 48 | "diff": 15, 49 | "hp": 75, 50 | "speed": 45, 51 | "material": [ "flesh" ], 52 | "symbol": "♁", 53 | "color": "dark_gray", 54 | "aggression": 50, 55 | "morale": 50, 56 | "melee_skill": 0, 57 | "melee_dice": 0, 58 | "melee_dice_sides": 0, 59 | "tracking_distance": 8, 60 | "special_attacks": [ 61 | { 62 | "type": "spell", 63 | "spell_data": { "id": "mon_zombie_revenant_forsaken_target" }, 64 | "cooldown": 12, 65 | "monster_message": "%1$s glares at %3$s…" 66 | } 67 | ], 68 | "death_drops": "default_zombie_death_drops", 69 | "flags": [ "SEES", "HEARS", "SMELLS", "WARM", "POISON", "NO_BREATHE", "REVIVES", "FILTHY", "KEEP_DISTANCE" ] 70 | }, 71 | { 72 | "id": "mon_zombie_revenant_allure", 73 | "type": "MONSTER", 74 | "name": { "str": "alluring revenant" }, 75 | "description": "Concealed beneath a thick, eerie fog, a slim, humanoid figure stands firm. Mischievous, its claws drip with peculiar black goo.", 76 | "default_faction": "zombie", 77 | "species": [ "ZOMBIE", "SECROZED_2", "HUMAN" ], 78 | "volume": "62500 ml", 79 | "weight": "81500 g", 80 | "harvest": "zombie", 81 | "hp": 70, 82 | "diff": 15, 83 | "speed": 50, 84 | "material": [ "flesh" ], 85 | "symbol": "♂", 86 | "color": "red", 87 | "aggression": 50, 88 | "morale": 50, 89 | "melee_skill": 0, 90 | "melee_dice": 0, 91 | "melee_dice_sides": 0, 92 | "tracking_distance": 6, 93 | "special_attacks": [ 94 | { 95 | "type": "spell", 96 | "spell_data": { "id": "mon_zombie_revenant_allure_target" }, 97 | "cooldown": 12, 98 | "condition": { "math": [ "u_monsters_nearby('radius': 6)", ">=", "2" ] }, 99 | "monster_message": "%1$s spreads its goo at %3$s!" 100 | } 101 | ], 102 | "death_drops": "default_zombie_death_drops", 103 | "flags": [ 104 | "SEES", 105 | "HEARS", 106 | "SMELLS", 107 | "WARM", 108 | "POISON", 109 | "NO_BREATHE", 110 | "REVIVES", 111 | "FILTHY", 112 | "HARDTOSHOOT", 113 | "KEEP_DISTANCE" 114 | ] 115 | } 116 | ] 117 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Zombies/Scourge.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "This is notable for being infectious.", 4 | "id": "mon_zombie_scourge", 5 | "type": "MONSTER", 6 | "name": { "str": "scourge zombie" }, 7 | "description": "A vessel of oozing pus staggering as it walks, dripping filthy liquid on its path.", 8 | "default_faction": "zombie", 9 | "species": [ "ZOMBIE", "SECROZED_1", "HUMAN" ], 10 | "volume": "62500 ml", 11 | "weight": "81500 g", 12 | "hp": 50, 13 | "speed": 70, 14 | "diff": 1, 15 | "material": [ "flesh" ], 16 | "symbol": "⚴", 17 | "color": "yellow", 18 | "aggression": 100, 19 | "morale": 100, 20 | "melee_skill": 2, 21 | "melee_dice": 2, 22 | "melee_dice_sides": 2, 23 | "armor": { "bash": 2, "cut": 2, "bullet": 2, "acid": 4 }, 24 | "vision_day": 22, 25 | "vision_night": 5, 26 | "harvest": "zombie", 27 | "special_attacks": [ { "id": "grab", "cooldown": 10 }, { "type": "bite", "infection_chance": 5, "cooldown": 18 } ], 28 | "upgrades": { "half_life": 12, "into": "mon_zombie_defile" }, 29 | "flags": [ "SEES", "HEARS", "SMELLS", "STUMBLES", "POISON", "NO_BREATHE", "REVIVES", "FILTHY" ] 30 | }, 31 | { 32 | "id": "mon_zombie_defile", 33 | "type": "MONSTER", 34 | "name": { "str": "zombie defiler" }, 35 | "description": "A heavily deformed corpse, constantly vomiting dark ooze from its swollen cheeks and an endless explosion of pus germinates the surroundings.", 36 | "default_faction": "zombie", 37 | "species": [ "ZOMBIE", "SECROZED_1", "HUMAN" ], 38 | "volume": "62500 ml", 39 | "weight": "81500 g", 40 | "hp": 70, 41 | "speed": 65, 42 | "diff": 5, 43 | "material": [ "flesh" ], 44 | "symbol": "⚴", 45 | "color": "i_yellow", 46 | "aggression": 100, 47 | "morale": 100, 48 | "melee_skill": 2, 49 | "melee_dice": 2, 50 | "melee_dice_sides": 3, 51 | "armor": { "bash": 2, "cut": 3, "bullet": 3, "acid": 6 }, 52 | "vision_day": 25, 53 | "vision_night": 6, 54 | "harvest": "zombie", 55 | "special_attacks": [ { "id": "grab", "cooldown": 10 }, { "type": "bite", "infection_chance": 20, "cooldown": 15 } ], 56 | "upgrades": { "half_life": 16, "into_group": "GROUP_SCOURGE_UPGRADEX" }, 57 | "flags": [ "SEES", "HEARS", "SMELLS", "STUMBLES", "POISON", "NO_BREATHE", "REVIVES", "FILTHY" ] 58 | }, 59 | { 60 | "id": "mon_zombie_leptiosa", 61 | "type": "MONSTER", 62 | "name": { "str": "lepotitsa" }, 63 | "description": "A corpse of swollen ichor, as its whole body is embraced in necrotic tissue. Aside from its huge hump lying on its back, its skin is full of fleshy holes, each emits a subtle gas.", 64 | "default_faction": "zombie", 65 | "species": [ "ZOMBIE", "SECROZED_3", "HUMAN" ], 66 | "volume": "62500 ml", 67 | "weight": "81500 g", 68 | "hp": 330, 69 | "speed": 65, 70 | "diff": 15, 71 | "material": [ "flesh" ], 72 | "symbol": "⚵", 73 | "color": "red_yellow", 74 | "aggression": 100, 75 | "morale": 100, 76 | "melee_skill": 4, 77 | "melee_dice": 2, 78 | "melee_dice_sides": 4, 79 | "melee_damage": [ { "damage_type": "cut", "amount": 2 } ], 80 | "armor": { "bash": 10, "cut": 18, "bullet": 12, "acid": 10 }, 81 | "vision_day": 25, 82 | "vision_night": 6, 83 | "harvest": "zombie", 84 | "special_attacks": [ 85 | { "id": "grab", "cooldown": 10 }, 86 | { "type": "bite", "infection_chance": 100, "cooldown": 15 }, 87 | { 88 | "type": "spell", 89 | "spell_data": { "id": "mon_zombie_leptiosa_ngas_check" }, 90 | "cooldown": 44, 91 | "monster_message": "%1$s is accumulating noxious gas!" 92 | } 93 | ], 94 | "death_function": { 95 | "effect": { "id": "mon_zombie_leptiosa_death", "hit_self": true }, 96 | "corpse_type": "NO_CORPSE", 97 | "message": "A %s explodes!" 98 | }, 99 | "flags": [ "SEES", "HEARS", "SMELLS", "STUMBLES", "POISON", "NO_BREATHE", "REVIVES", "FILTHY", "ACIDPROOF", "ACID_BLOOD" ] 100 | } 101 | ] 102 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Zombies/Snatcher.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Support zed that immobilizes targets from far ranges with precise accuracy.", 4 | "id": "mon_zombie_bootlegsmoker", 5 | "type": "MONSTER", 6 | "name": { "str": "snatcher zombie" }, 7 | "description": "A writhing corpse with an unnervingly sly and cautious nature. Its pair of menacingly black eyes greedily seek the living with a predominant set of four protruding fangs. These inhumane teeth furiously gnash away while idle, creating a maddening and repetitive \"clack\".", 8 | "default_faction": "zombie", 9 | "species": [ "ZOMBIE", "SECROZED_2" ], 10 | "volume": "62500 ml", 11 | "weight": "81500 g", 12 | "harvest": "zombie", 13 | "hp": 100, 14 | "speed": 70, 15 | "material": [ "flesh" ], 16 | "symbol": "✑", 17 | "color": "light_red", 18 | "aggression": 100, 19 | "morale": 100, 20 | "melee_skill": 6, 21 | "melee_dice": 6, 22 | "melee_dice_sides": 6, 23 | "melee_damage": [ { "damage_type": "cut", "amount": 4 } ], 24 | "dodge": 2, 25 | "vision_day": 35, 26 | "vision_night": 10, 27 | "path_settings": { "max_dist": 8, "avoid_traps": true, "avoid_dangerous_fields": true }, 28 | "tracking_distance": 10, 29 | "special_attacks": [ 30 | [ "SHRIEK_ALERT", 10 ], 31 | { 32 | "type": "gun", 33 | "cooldown": 150, 34 | "move_cost": 100, 35 | "gun_type": "snatcher_mouth", 36 | "fake_skills": [ [ "gun", 10 ], [ "rifle", 10 ] ], 37 | "ranges": [ [ 0, 25, "DEFAULT" ] ], 38 | "require_targeting_player": false, 39 | "require_targeting_npc": false, 40 | "require_targeting_monster": false, 41 | "description": "The snatcher zombie sends off its tongue!" 42 | }, 43 | { 44 | "type": "spell", 45 | "spell_data": { "id": "mon_zombie_bootlegsmoker_snatch_check" }, 46 | "cooldown": 70, 47 | "monster_message": "The snatcher zombie launches its tongue at %3$s!" 48 | } 49 | ], 50 | "upgrades": { "half_life": 14, "into": "mon_zombie_bootlegsmoker_mode" }, 51 | "death_drops": "default_zombie_clothes", 52 | "flags": [ 53 | "SEES", 54 | "HEARS", 55 | "SMELLS", 56 | "WARM", 57 | "BASHES", 58 | "GROUP_BASH", 59 | "FILTHY", 60 | "POISON", 61 | "NO_BREATHE", 62 | "REVIVES", 63 | "PATH_AVOID_DANGER", 64 | "KEEP_DISTANCE", 65 | "RANGED_ATTACKER" 66 | ] 67 | }, 68 | { 69 | "id": "mon_zombie_bootlegsmoker_mode", 70 | "copy-from": "mon_zombie_bootlegsmoker", 71 | "type": "MONSTER", 72 | "name": { "str": "snatcher zombie" }, 73 | "description": "A writhing corpse with an unnervingly sly and cautious nature. Its pair of menacingly black eyes greedily seek the living with a predominant set of four protruding fangs. These inhumane teeth furiously gnash away while idle, creating a maddening and repetitive \"clack\".", 74 | "hp": 125, 75 | "speed": 75, 76 | "color": "red", 77 | "special_attacks": [ 78 | [ "SHRIEK_ALERT", 10 ], 79 | { 80 | "type": "gun", 81 | "cooldown": 110, 82 | "move_cost": 100, 83 | "gun_type": "snatcher_mouth", 84 | "fake_skills": [ [ "gun", 10 ], [ "rifle", 10 ] ], 85 | "ranges": [ [ 0, 25, "DEFAULT" ] ], 86 | "require_targeting_player": false, 87 | "require_targeting_npc": false, 88 | "require_targeting_monster": false, 89 | "description": "The snatcher zombie sends off its tongue!" 90 | }, 91 | { 92 | "type": "spell", 93 | "spell_data": { "id": "mon_zombie_bootlegsmoker_snatch_check" }, 94 | "cooldown": 66, 95 | "monster_message": "The snatcher zombie launches its tongue at %3$s" 96 | } 97 | ], 98 | "upgrades": { } 99 | } 100 | ] 101 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Zombies/Translucent.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_zombie_translucent", 4 | "type": "MONSTER", 5 | "name": { "str": "translucent zombie" }, 6 | "description": "With acid covering its whole body, this raging corpse sways in every step, vomiting filthy waste as its green, tinted eyes stare submissively out of nowhere.", 7 | "default_faction": "zombie", 8 | "species": [ "ZOMBIE", "SECROZED_1", "HUMAN" ], 9 | "volume": "62500 ml", 10 | "weight": "81500 g", 11 | "hp": 70, 12 | "diff": 1, 13 | "speed": 100, 14 | "material": [ "flesh" ], 15 | "symbol": "⩀", 16 | "color": "green", 17 | "aggression": 100, 18 | "morale": 100, 19 | "melee_skill": 2, 20 | "melee_dice": 1, 21 | "melee_dice_sides": 2, 22 | "luminance": 2, 23 | "harvest": "zombie", 24 | "melee_damage": [ { "damage_type": "cut", "amount": 1 }, { "damage_type": "acid", "amount": 2 } ], 25 | "armor": { "bash": 2, "cut": 1, "heat": 1 }, 26 | "special_attacks": [ [ "ACID_BARF", 30 ] ], 27 | "death_drops": "default_zombie_death_drops", 28 | "upgrades": { "half_life": 14, "into": "mon_zombie_pellucid" }, 29 | "anger_triggers": [ "PLAYER_CLOSE" ], 30 | "death_function": { "message": "The %s's body leaks acid.", "effect": { "id": "death_acid", "hit_self": true } }, 31 | "flags": [ 32 | "SEES", 33 | "HEARS", 34 | "SMELLS", 35 | "ACIDPROOF", 36 | "ACID_BLOOD", 37 | "STUMBLES", 38 | "WARM", 39 | "BASHES", 40 | "POISON", 41 | "NO_BREATHE", 42 | "REVIVES", 43 | "FILTHY" 44 | ] 45 | }, 46 | { 47 | "id": "mon_zombie_pellucid", 48 | "type": "MONSTER", 49 | "name": { "str": "pellucid zombie" }, 50 | "description": "Unrecognizable face dribbles with unfriendly liquid. This zombie's skin thinned into a diversion of light, supposably an effect from producing too much acid. Within a closer look, the veins are composed mostly of green-ish glows.", 51 | "default_faction": "zombie", 52 | "species": [ "ZOMBIE", "SECROZED_1", "HUMAN" ], 53 | "volume": "62500 ml", 54 | "weight": "81500 g", 55 | "hp": 90, 56 | "speed": 100, 57 | "diff": 5, 58 | "material": [ "flesh" ], 59 | "symbol": "⩃", 60 | "color": "blue_green", 61 | "aggression": 100, 62 | "morale": 100, 63 | "melee_skill": 4, 64 | "melee_dice": 1, 65 | "melee_dice_sides": 3, 66 | "dodge": 1, 67 | "harvest": "zombie", 68 | "melee_damage": [ { "damage_type": "cut", "amount": 1 }, { "damage_type": "acid", "amount": 5 } ], 69 | "luminance": 1, 70 | "armor": { "bash": 6, "heat": 2 }, 71 | "special_attacks": [ 72 | [ "ACID_BARF", 30 ], 73 | [ "ACID", 40 ], 74 | { 75 | "type": "gun", 76 | "cooldown": 40, 77 | "move_cost": 150, 78 | "gun_type": "pellucid_mouth", 79 | "fake_skills": [ [ "gun", 3 ], [ "rifle", 6 ] ], 80 | "ranges": [ [ 0, 8, "DEFAULT" ] ], 81 | "require_targeting_player": false, 82 | "require_targeting_npc": false, 83 | "require_targeting_monster": false, 84 | "description": "The pellucid zombie spits a concentrated glob of acid!" 85 | } 86 | ], 87 | "special_when_hit": [ "ACIDSPLASH", 25 ], 88 | "death_drops": "default_zombie_death_drops", 89 | "anger_triggers": [ "PLAYER_CLOSE" ], 90 | "death_function": { "effect": { "id": "death_acid", "hit_self": true }, "message": "The %s's body leaks acid." }, 91 | "flags": [ 92 | "SEES", 93 | "HEARS", 94 | "SMELLS", 95 | "ACIDPROOF", 96 | "ACID_BLOOD", 97 | "STUMBLES", 98 | "WARM", 99 | "BASHES", 100 | "POISON", 101 | "NO_BREATHE", 102 | "FILTHY", 103 | "REVIVES" 104 | ] 105 | } 106 | ] 107 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Monsters/Zombies/Zombie.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Normal zombies but with modified attributes/abilities. Some shares similarities to other secronom zed mutants.", 4 | "id": "mon_secrozombie_rot", 5 | "copy-from": "mon_zombie", 6 | "looks_like": "mon_zombie", 7 | "type": "MONSTER", 8 | "name": { "str": "zombie" }, 9 | "description": "A human body, swaying as it moves, an unstoppable rage visible in its oily black eyes. It is heavily accompanied by a strong stench.", 10 | "emit_fields": [ { "emit_id": "emit_secrozombie_rot", "delay": "1 s" } ], 11 | "relative": { "hp": 15, "speed": -5 }, 12 | "symbol": "Ƶ", 13 | "color": "light_green_yellow", 14 | "harvest": "zombie", 15 | "upgrades": { } 16 | }, 17 | { 18 | "id": "mon_secrozombie_armored", 19 | "copy-from": "mon_zombie", 20 | "looks_like": "mon_zombie", 21 | "type": "MONSTER", 22 | "name": { "str": "zombie" }, 23 | "description": "A human body, swaying as it moves, an unstoppable rage visible in its oily black eyes. It is covered in irregular bone protrusions.", 24 | "relative": { "hp": 35, "speed": -5, "armor": { "bash": 3, "cut": 4, "bullet": 3, "stab": 3 } }, 25 | "symbol": "Ƶ", 26 | "color": "light_green_white", 27 | "harvest": "zombie", 28 | "upgrades": { } 29 | }, 30 | { 31 | "id": "mon_secrozombie_tent", 32 | "copy-from": "mon_zombie", 33 | "looks_like": "mon_zombie", 34 | "type": "MONSTER", 35 | "name": { "str": "zombie" }, 36 | "description": "A human body, swaying as it moves, an unstoppable rage visible in its oily black eyes. Several tentacle outgrowths writhe menacingly around its body.", 37 | "relative": { "hp": 25, "speed": 5, "armor": { "bash": 1 } }, 38 | "symbol": "Ƶ", 39 | "color": "green", 40 | "harvest": "zombie", 41 | "special_attacks": [ { "type": "bite", "cooldown": 5 }, { "id": "grab", "cooldown": 3 }, [ "scratch", 20 ] ], 42 | "upgrades": { } 43 | }, 44 | { 45 | "id": "mon_secrozombie_blade", 46 | "copy-from": "mon_zombie", 47 | "looks_like": "mon_zombie", 48 | "type": "MONSTER", 49 | "name": { "str": "zombie" }, 50 | "description": "A human body, swaying as it moves, an unstoppable rage visible in its oily black eyes. Its hands mutated into a pair of bone blades.", 51 | "relative": { "hp": 10, "melee_skill": 1 }, 52 | "symbol": "Ƶ", 53 | "color": "light_green", 54 | "harvest": "zombie", 55 | "melee_damage": [ { "damage_type": "cut", "amount": 3 } ], 56 | "special_attacks": [ [ "scratch", 3 ] ], 57 | "upgrades": { } 58 | }, 59 | { 60 | "id": "mon_secrozombie_potent", 61 | "copy-from": "mon_zombie", 62 | "looks_like": "mon_zombie", 63 | "type": "MONSTER", 64 | "name": { "str": "zombie" }, 65 | "description": "A human body, swaying as it moves, an unstoppable rage visible in its oily black eyes. Its veins oddly pulsates in constant beats.", 66 | "relative": { "hp": 3 }, 67 | "symbol": "Ƶ", 68 | "color": "light_green", 69 | "harvest": "zombie", 70 | "upgrades": { "half_life": 3, "into_group": "GROUP_SWARMERSEGWAY_UPGRADE" } 71 | } 72 | ] 73 | -------------------------------------------------------------------------------- /secronom/Modification_Files/Others/secro_ammo_effects.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "SECRO_SHIFTERFOG_EXPLODE", 4 | "type": "ammo_effect", 5 | "aoe": { "field_type": "fd_shifter_fog", "intensity_min": 3, "intensity_max": 3, "radius": 2, "size": 2 }, 6 | "trail": { "field_type": "fd_shifter_fog_trail", "intensity_min": 2, "intensity_max": 2 } 7 | }, 8 | { 9 | "id": "SECRO_SHIFTERFOG_SMALL_EXPLODE", 10 | "type": "ammo_effect", 11 | "aoe": { "field_type": "fd_shifter_fog", "intensity_min": 1, "intensity_max": 1 }, 12 | "trail": { "field_type": "fd_shifter_fog_trail", "intensity_min": 2, "intensity_max": 2 } 13 | }, 14 | { 15 | "id": "SECRO_FLESHKNOT_TENT", 16 | "type": "ammo_effect", 17 | "aoe": { "field_type": "fd_fleshknot_tent", "intensity_min": 1, "intensity_max": 1, "check_passable": true, "chance": 20 }, 18 | "trail": { "field_type": "fd_gibs_flesh", "intensity_min": 1, "intensity_max": 1, "chance": 25 } 19 | }, 20 | { 21 | "id": "SECRO_FLESHKNOT_TENT_BIG", 22 | "type": "ammo_effect", 23 | "aoe": { "field_type": "fd_fleshknot_tent", "intensity_min": 3, "intensity_max": 3, "check_passable": true }, 24 | "trail": { "field_type": "fd_gibs_flesh", "intensity_min": 1, "intensity_max": 1, "chance": 50 } 25 | }, 26 | { 27 | "id": "SECRO_GRUBBYZED_SPIT", 28 | "type": "ammo_effect", 29 | "aoe": { "field_type": "fd_grubbyzed_goo", "intensity_min": 2, "intensity_max": 2, "chance": 50 }, 30 | "trail": { "field_type": "fd_grubbyzed_goo", "intensity_min": 1, "intensity_max": 1, "chance": 60 } 31 | }, 32 | { 33 | "id": "SECRO_GRUBBYZED_SPIT_BIG", 34 | "type": "ammo_effect", 35 | "aoe": { "field_type": "fd_grubbyzed_goo", "intensity_min": 3, "intensity_max": 3, "chance": 75 }, 36 | "trail": { "field_type": "fd_grubbyzed_goo", "intensity_min": 1, "intensity_max": 1, "chance": 85 } 37 | }, 38 | { 39 | "id": "SECRO_SNATCHER", 40 | "type": "ammo_effect", 41 | "aoe": { "field_type": "fd_snatcher_snatch", "intensity_min": 1, "intensity_max": 1, "check_passable": true }, 42 | "trail": { "field_type": "fd_snatcher_snatch_trail", "intensity_min": 1, "intensity_max": 1 } 43 | }, 44 | { 45 | "id": "SECRO_PELLUCID_SPIT", 46 | "type": "ammo_effect", 47 | "aoe": { "field_type": "fd_acid", "intensity_min": 1, "intensity_max": 3, "chance": 80, "radius": 2, "size": 2 }, 48 | "trail": { "field_type": "fd_acid", "intensity_min": 1, "intensity_max": 1, "chance": 20 } 49 | }, 50 | { 51 | "id": "SECRO_BLOODACID_SMOL", 52 | "type": "ammo_effect", 53 | "aoe": { "field_type": "fd_blood_acid", "intensity_min": 1, "intensity_max": 3, "chance": 5 }, 54 | "trail": { "field_type": "fd_blood_acid", "intensity_min": 1, "intensity_max": 1, "chance": 5 } 55 | }, 56 | { 57 | "id": "SECRO_BLOODACID_BIG", 58 | "type": "ammo_effect", 59 | "aoe": { "field_type": "fd_blood_acid", "intensity_min": 2, "intensity_max": 3, "chance": 50 }, 60 | "trail": { "field_type": "fd_blood_acid", "intensity_min": 1, "intensity_max": 1, "chance": 25 } 61 | }, 62 | { 63 | "id": "SECRO_MAWYFLESH", 64 | "type": "ammo_effect", 65 | "aoe": { 66 | "field_type": "fd_mawy_web", 67 | "intensity_min": 2, 68 | "intensity_max": 3, 69 | "chance": 60, 70 | "check_passable": true, 71 | "radius": 2, 72 | "size": 2 73 | }, 74 | "trail": { "field_type": "fd_mawy_web", "intensity_min": 1, "intensity_max": 1, "chance": 10 } 75 | }, 76 | { 77 | "id": "SECRO_CORDEV", 78 | "type": "ammo_effect", 79 | "aoe": { 80 | "field_type": "fd_cordev_corrupt_acid", 81 | "intensity_min": 2, 82 | "intensity_max": 3, 83 | "chance": 50, 84 | "check_passable": true, 85 | "radius": 3, 86 | "size": 3 87 | }, 88 | "trail": { "field_type": "fd_cordev_corrupt_acid", "intensity_min": 1, "intensity_max": 1, "chance": 20 } 89 | }, 90 | { 91 | "id": "SECRO_EQUINOX", 92 | "type": "ammo_effect", 93 | "trail": { "field_type": "fd_equinox_flesh", "intensity_min": 2, "intensity_max": 3, "chance": 90 } 94 | } 95 | ] 96 | -------------------------------------------------------------------------------- /secronom/README.MD: -------------------------------------------------------------------------------- 1 | # Secronom: A Modification File for Cataclysm: Dark Days Ahead 2 | 3 | Its mod thread is at the [official forums](https://discourse.cataclysmdda.org/t/secronom-zombies-mod-thread/16211/1). 4 | 5 | Mod made from various references, mixed up with random spices! It was created with its original goal set to imitate the *Dead Frontier*'s zombies. Right now, **Secronom** (name referenced from the game) is a core content mod, with vast assortments of monsters in its bestiary, a collection of items, either fictional or not, newfound mutations, locations and more. If you're up for an action-packed playthrough or just loves beating weird craps, activate this mod and see how your dark days get even darker! 6 | 7 | - This mod works only with the latest experimental of CDDA. Update your client before activating. 8 | - This mod is stable. There are no known bugs that can cause fatal error. Please report an issue otherwise. 9 | 10 | Information about the mod's contents is currently unavailable. 11 | # Credits 12 | Great people who contributed to this ever-expanding mod :> 13 | 14 | * **SomeDeadGuy** - He drew everything in this mod and made it compatible for the UndeadPeople tileset. 15 | * **RickyVanz** - His 2 new sci-fi guns eased the game a bit. 16 | * **ephemeralstoryteller** - She fixed the majority of color bugs while I'm not around. 17 | * **Kenan2000** - He helped with some bugfixes. Also a modding companion. 18 | * **The Go-Goat** - She shared some ideas with mutations. 19 | * **TheGoatGod** - He fixed some outdated bugs. 20 | * **SzQ** and **QuiteCoyote** - They helped on developing/expanding the flesh and flesh vessel exoskeletons. 21 | * **Lurak** and **Malkeus42** - They've suggested some in-game rebalances/tweaks. 22 | -------------------------------------------------------------------------------- /secronom/modinfo.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "MOD_INFO", 4 | "id": "secronom", 5 | "name": "Secronom", 6 | "authors": [ "Axema Vales" ], 7 | "maintainers": [ "Kenan" ], 8 | "description": "Brings your Cataclysm experience into a hellish nightmare\u2026\n◆ Not recommended for new players ◆\n\nNote that this mod is currently in stable state. If you encounter a bug or a recent CDDA update has caused an error, feel free to notify the maintainer by creating an issue on its GitHub repository or by sending a DM on Discord.\n\nAdd Secronom+ for extended content (WIP).", 9 | "version": "Updated on 05/27/2024", 10 | "category": "content", 11 | "dependencies": [ "dda" ] 12 | } 13 | ] 14 | -------------------------------------------------------------------------------- /secronom/region_overlay.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "region_overlay", 4 | "regions": [ "all" ], 5 | "map_extras": { 6 | "agricultural": { "extras": { "mx_secro_flesh_random": 45 } }, 7 | "forest": { "extras": { "mx_secro_saddler_victims_spawn": 7, "mx_secro_carrion_spawn": 10, "mx_secro_vector_spawn": 0, "mx_secro_flesh_random": 30, "mx_secro_carrion_massacre_spawn": 3, "mx_secro_carrion_massacre_smol_spawn": 10 } }, 8 | "forest_thick": { "extras": { "mx_secro_saddler_victims_spawn": 7, "mx_secro_carrion_spawn": 10, "mx_secro_vector_spawn": 0, "mx_secro_fleshweaver_spawn": 0, "mx_secro_flesh_random": 40, "mx_secro_carrion_massacre_spawn": 5, "mx_secro_carrion_massacre_smol_spawn": 13 } }, 9 | "forest_water": { "extras": { "mx_secro_saddler_victims_spawn": 12, "mx_secro_carrion_spawn": 15, "mx_secro_vector_spawn": 0, "mx_secro_flesh_random": 25, "mx_secro_carrion_massacre_spawn": 5, "mx_secro_carrion_massacre_smol_spawn": 12 } }, 10 | "road": { "extras": { "mx_secro_ssf_carrier": 66, "mx_secro_ssb_carrier": 22, "mx_secro_carrion_massacre_spawn": 25, "mx_secro_carrion_massacre_smol_spawn": 45 } }, 11 | "field": { "extras": { "mx_secro_saddler_victims_spawn": 10, "mx_secro_flesh_random": 55 } }, 12 | "road_nesw_manhole": { "extras": { "mx_secro_flesh_core": 1 } }, 13 | "sewer": { "extras": { "mx_secro_flesh_random": 100 } }, 14 | "subway": { "extras": { "mx_secro_flesh_random": 5, "mx_secro_saddler_infest_spawn": 8 } }, 15 | "build": { "extras": { "mx_secro_fleshbuilding_spawn": 15, "mx_secro_saddler_infest_spawn": 5 } }, 16 | "secro_flesh_extras": { "chance": 15, "extras": { "mx_flesh_biome_extra_spawn": 555, "mx_helicopter": 55 } } 17 | } 18 | } 19 | ] 20 | -------------------------------------------------------------------------------- /secronom/secronom_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kenan2000/Secronom-Zombies/6b1e5b08885b16c889e29255e4204633fad00eb7/secronom/secronom_large.png -------------------------------------------------------------------------------- /secronom/secronom_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kenan2000/Secronom-Zombies/6b1e5b08885b16c889e29255e4204633fad00eb7/secronom/secronom_normal.png -------------------------------------------------------------------------------- /secronom/secronom_normal_offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kenan2000/Secronom-Zombies/6b1e5b08885b16c889e29255e4204633fad00eb7/secronom/secronom_normal_offset.png -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_ammo_types.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secro_flesh", 4 | "name": "flesh", 5 | "default": "secro_flesh", 6 | "type": "ammunition_type" 7 | }, 8 | { 9 | "id": "secro_flesh_large", 10 | "name": "flesh", 11 | "default": "secro_flesh_large", 12 | "type": "ammunition_type" 13 | }, 14 | { 15 | "id": "secro_flesh_boneneedle", 16 | "name": "bone needle", 17 | "default": "secro_flesh_boneneedle", 18 | "type": "ammunition_type" 19 | } 20 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_clothing_mods.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "clothing_mod", 4 | "id": "secro_flesh_reinforced_coat", 5 | "flag": "secro_flesh_reinforced_coat", 6 | "item": "secro_flesh_reinforced", 7 | "implement_prompt": "Coat in bio-organic flesh", 8 | "destroy_prompt": "Tear down bio-organic flesh", 9 | "mod_value": [ 10 | { "type": "bash", "value": 5, "round_up": true, "proportion": [ "coverage" ] }, 11 | { "type": "cut", "value": 2, "round_up": true, "proportion": [ "coverage" ] }, 12 | { "type": "bullet", "value": 3, "round_up": true, "proportion": [ "coverage" ] }, 13 | { "type": "acid", "value": 3, "round_up": true, "proportion": [ "coverage" ] }, 14 | { "type": "encumbrance", "value": 3, "round_up": true, "proportion": [ "coverage" ] } 15 | ] 16 | } 17 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_item_categories.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Mutation cores are item with modifiers. Better than status effects.", 4 | "id": "secro_cores", 5 | "type": "ITEM_CATEGORY", 6 | "name_header": { "str": "MUTATION CORES" }, 7 | "name_noun": { "ctxt": "item_category", "str": "mutation cores" }, 8 | "sort_rank": -200 9 | }, 10 | { 11 | "id": "secro_amalgam", 12 | "type": "ITEM_CATEGORY", 13 | "name_header": { "str": "AMALGAMS" }, 14 | "name_noun": { "ctxt": "item_category", "str": "amalgams" }, 15 | "sort_rank": -150 16 | }, 17 | { 18 | "id": "secro_amalgam_command", 19 | "type": "ITEM_CATEGORY", 20 | "name_header": { "str": "AMALGAM COMMANDS" }, 21 | "name_noun": { "ctxt": "item_category", "str": "amalgam commands" }, 22 | "sort_rank": -151 23 | }, 24 | { 25 | "id": "secro_dna", 26 | "type": "ITEM_CATEGORY", 27 | "name_header": { "str": "DNAs" }, 28 | "name_noun": { "ctxt": "item_category", "str": "DNAs" }, 29 | "sort_rank": 200 30 | }, 31 | { 32 | "id": "secro_ccore", 33 | "type": "ITEM_CATEGORY", 34 | "name_header": { "str": "CORES" }, 35 | "name_noun": { "ctxt": "item_category", "str": "cores" }, 36 | "sort_rank": 199 37 | }, 38 | { 39 | "type": "weapon_category", 40 | "id": "SECRO_BOW", 41 | "name": "BIO-ORGANIC WEAPONS" 42 | }, 43 | { 44 | "type": "weapon_category", 45 | "id": "SECRO_BOW_MELEE_BB", 46 | "name": "BONE BLADE ARMAMENT" 47 | }, 48 | { 49 | "type": "weapon_category", 50 | "id": "SECRO_BOW_MELEE_TV", 51 | "name": "TWISTED VEIN ARMAMENT" 52 | }, 53 | { 54 | "type": "weapon_category", 55 | "id": "SECRO_BOW_MELEE_FP", 56 | "name": "FLESHPOUND ARMAMENT" 57 | }, 58 | { 59 | "type": "weapon_category", 60 | "id": "SECRO_BOW_MELEE_JB", 61 | "name": "JAWED BITERS ARMAMENT" 62 | } 63 | ] 64 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_item_effects.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "effect_type", 4 | "id": "secro_power_armor_fleshmend_ing", 5 | "name": [ "Flesh Mending" ], 6 | "desc": [ "Your internal flesh weavers are repairing sustained damage!" ], 7 | "rating": "good", 8 | "base_mods": { 9 | "speed_mod": [ -5 ], 10 | "hurt_min": [ -2 ], 11 | "hurt_tick": [ 10 ], 12 | "hunger_min": [ 3 ], 13 | "hunger_tick": [ 60 ], 14 | "thirst_min": [ 1 ], 15 | "thirst_tick": [ 60 ], 16 | "pain_min": [ -1 ], 17 | "pain_tick": [ 10 ], 18 | "pain_chance": [ 20 ] 19 | }, 20 | "removes_effects": [ "bleed" ], 21 | "blocks_effects": [ "bleed" ] 22 | }, 23 | { 24 | "type": "effect_type", 25 | "id": "secro_power_armor_flesh_resist", 26 | "name": [ "Vessel Resistance" ], 27 | "desc": [ "The bio-organic exoskeleton isn't responding to you!" ], 28 | "rating": "bad", 29 | "max_duration": 1, 30 | "base_mods": { "speed_mod": [ -25 ], "dex_mod": [ -4 ] } 31 | }, 32 | { 33 | "type": "effect_type", 34 | "id": "secro_power_armor_flesh_resisted", 35 | "max_duration": 1, 36 | "rating": "good", 37 | "removes_effects": [ "secro_power_armor_flesh_resist" ], 38 | "blocks_effects": [ "secro_power_armor_flesh_resist" ] 39 | }, 40 | { 41 | "type": "effect_type", 42 | "id": "secro_power_armor_flesh_devouring", 43 | "rating": "bad", 44 | "base_mods": { "pain_min": [ 1 ], "pain_chance": [ 25 ], "hurt_min": [ 1 ], "hurt_chance": [ 5 ] } 45 | }, 46 | { 47 | "type": "effect_type", 48 | "id": "secro_power_armor_feed_metabolic_act_cost", 49 | "name": [ "Metabolic Distribution" ], 50 | "desc": [ "Your movement is hampered!" ], 51 | "apply_message": "The flesh vessel starts burning your calories!", 52 | "rating": "bad", 53 | "base_mods": { "speed_mod": [ -50 ], "dex_mod": [ -4 ], "hunger_min": [ 3 ], "thirst_min": [ 1 ] } 54 | }, 55 | { 56 | "type": "effect_type", 57 | "id": "secro_flesh_transmit_attack", 58 | "removes_effects": [ "docile" ], 59 | "blocks_effects": [ "docile" ] 60 | } 61 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_item_ench.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "ench_secro_power_armor_flesh_resist", 4 | "type": "enchantment", 5 | "ench_effects": [ { "effect": "secro_power_armor_flesh_resist", "intensity": 1 } ] 6 | }, 7 | { 8 | "id": "ench_secro_power_armor_flesh_resisted", 9 | "type": "enchantment", 10 | "ench_effects": [ { "effect": "secro_power_armor_flesh_resisted", "intensity": 1 } ] 11 | }, 12 | { 13 | "type": "enchantment", 14 | "id": "ench_bio_secro_fv_morph_bonespikes", 15 | "condition": "ACTIVE", 16 | "values": [ { "value": "SPEED", "multiply": -0.25 }, { "value": "ARMOR_BASH", "add": -5 } ], 17 | "hit_me_effect": [ 18 | { 19 | "id": "secro_power_armor_flesh_morphed_jugg_bonespikes_lowstab", 20 | "hit_self": false, 21 | "once_in": 5, 22 | "message": "Your bone spike reacts to %2$s!", 23 | "npc_message": "%1$s's bone spike pricked %2$s!" 24 | }, 25 | { 26 | "id": "secro_power_armor_flesh_morphed_jugg_bonespikes_highstab", 27 | "hit_self": false, 28 | "once_in": 50, 29 | "message": "Your bone spike retaliates at %2$s!", 30 | "npc_message": "%1$s's bone spike retaliates at %2$s!" 31 | } 32 | ] 33 | }, 34 | { 35 | "type": "enchantment", 36 | "id": "ench_bio_secro_fv_morph_powerlegs", 37 | "condition": "ACTIVE", 38 | "values": [ { "value": "SPEED", "multiply": 0.25 }, { "value": "MOVE_COST", "multiply": -0.25 } ], 39 | "hit_you_effect": [ 40 | { 41 | "id": "secro_power_armor_flesh_morphed_coward_powerlegs_powkick", 42 | "hit_self": false, 43 | "once_in": 150, 44 | "message": "You powerkicked %2$s!", 45 | "npc_message": "%1$s powerkicks %2$s!" 46 | } 47 | ] 48 | }, 49 | { 50 | "type": "enchantment", 51 | "id": "ench_bio_secro_fv_extra_shockresist", 52 | "condition": "ACTIVE", 53 | "values": [ { "value": "ARMOR_ELEC", "add": -3 } ] 54 | }, 55 | { 56 | "type": "enchantment", 57 | "id": "ench_bio_secro_fv_morph_hardening", 58 | "condition": "ACTIVE", 59 | "values": [ 60 | { "value": "ARMOR_BASH", "add": -50 }, 61 | { "value": "ARMOR_CUT", "add": -50 }, 62 | { "value": "ARMOR_STAB", "add": -50 }, 63 | { "value": "ARMOR_BULLET", "add": -50 }, 64 | { "value": "ARMOR_HEAT", "add": -50 }, 65 | { "value": "ARMOR_COLD", "add": -50 }, 66 | { "value": "ARMOR_ELEC", "add": -50 }, 67 | { "value": "ARMOR_ACID", "add": -50 }, 68 | { "value": "ARMOR_BIO", "add": -50 }, 69 | { "value": "SPEED", "multiply": -0.9 } 70 | ] 71 | } 72 | ] 73 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_item_flags.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "SECRO_FVMERGED", 4 | "type": "json_flag", 5 | "info": "This bio_organic exoskeleton has permanently merged with your skin. It will melt away if wearer dies." 6 | } 7 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_item_magic_bionics.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "SPELL", 4 | "id": "secro_power_armor_mechlink", 5 | "name": { "str": "Mechsuit Link" }, 6 | "description": "Your flesh vessel links itself with the Experimental Mech \"Flesh\". This doesn't bypasses military identification check.", 7 | "flags": [ "SILENT", "NO_HANDS", "NO_LEGS", "NO_PROJECTILE", "NO_FAIL" ], 8 | "valid_targets": [ "ally", "hostile" ], 9 | "targeted_monster_ids": [ "mon_secro_fleshmech_unlink" ], 10 | "min_damage": 1000, 11 | "max_damage": 1000, 12 | "min_range": 1, 13 | "max_range": 1, 14 | "effect": "targeted_polymorph", 15 | "shape": "blast", 16 | "spell_class": "NONE", 17 | "effect_str": "mon_secro_fleshmech" 18 | }, 19 | { 20 | "id": "secro_power_armor_fleshmend", 21 | "type": "SPELL", 22 | "name": { "str": "Flesh Mending" }, 23 | "description": "Flesh core's internal flesh weavers start to repair your body using vast amounts of bionic power and stored calories. Immediately stops/blocks further bleeding and heals 2 HP every 10 seconds, up to 12 HP for each activation.", 24 | "message": "", 25 | "flags": [ "SILENT", "NO_HANDS", "NO_LEGS", "NO_PROJECTILE", "NO_FAIL" ], 26 | "valid_targets": [ "self" ], 27 | "effect": "attack", 28 | "shape": "blast", 29 | "spell_class": "SECRO_BIONIC_FLESH_CORE", 30 | "effect_str": "secro_power_armor_fleshmend_ing", 31 | "affected_body_parts": [ "head", "torso", "arm_r", "arm_l", "leg_r", "leg_l" ], 32 | "energy_source": "BIONIC", 33 | "base_energy_cost": 300, 34 | "min_duration": 6000 35 | }, 36 | { 37 | "type": "SPELL", 38 | "id": "secro_power_armor_flesh_biolight_give", 39 | "name": { "str": "Morph" }, 40 | "description": "Spell casted by an item. If you're seeing this, then read this one instead:\n'Morph the suit by giving it as an item.'", 41 | "message": "", 42 | "flags": [ "SILENT", "NO_HANDS", "NO_LEGS", "NO_PROJECTILE", "NO_FAIL" ], 43 | "valid_targets": [ "self" ], 44 | "effect": "spawn_item", 45 | "shape": "blast", 46 | "effect_str": "secro_power_armor_flesh_biolight", 47 | "min_duration": 60000 48 | } 49 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_item_qualities.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "tool_quality", 4 | "id": "SECRO_FLESH_MORPHING", 5 | "name": { "str": "bio-organic morphing" } 6 | }, 7 | { 8 | "type": "tool_quality", 9 | "id": "SECRO_FLESH_REFORMING", 10 | "name": { "str": "bio-organic reforming" } 11 | }, 12 | { 13 | "type": "tool_quality", 14 | "id": "SECRO_FLESH_WEAVING", 15 | "name": { "str": "flesh weaving" } 16 | }, 17 | { 18 | "type": "tool_quality", 19 | "id": "SECRO_FLESH_RECONSTRUCTION", 20 | "name": { "str": "bio-organic reconstruction" } 21 | } 22 | ] 23 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_item_requirements.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secro_flesh_vehicle_morph", 4 | "type": "requirement", 5 | "qualities": [ { "id": "SECRO_FLESH_MORPHING", "level": 1 } ], 6 | "components": [ [ [ "secro_flesh", 1 ] ] ] 7 | }, 8 | { 9 | "id": "secro_flesh_vehicle_reform", 10 | "type": "requirement", 11 | "qualities": [ { "id": "SECRO_FLESH_REFORMING", "level": 1 } ] 12 | }, 13 | { 14 | "id": "fleshreconstruction", 15 | "type": "requirement", 16 | "qualities": [ { "id": "SECRO_FLESH_RECONSTRUCTION", "level": 1 } ], 17 | "components": [ [ [ "secro_flesh", 1 ] ] ] 18 | }, 19 | { 20 | "//": "inject catalysts to flesh crafts.", 21 | "id": "fleshweaving_core", 22 | "type": "requirement", 23 | "qualities": [ { "id": "SECRO_FLESH_WEAVING", "level": 1 } ], 24 | "components": [ [ [ "secro_flesh", 3 ] ] ] 25 | }, 26 | { 27 | "id": "fleshweaving_meat", 28 | "type": "requirement", 29 | "components": [ 30 | [ 31 | [ "meat", 1 ], 32 | [ "mutant_meat", 1 ], 33 | [ "human_flesh", 1 ], 34 | [ "mutant_human_flesh", 1 ], 35 | [ "demihuman_flesh", 1 ], 36 | [ "meat_tainted", 4 ] 37 | ] 38 | ] 39 | }, 40 | { 41 | "id": "fleshweaving_bone", 42 | "type": "requirement", 43 | "components": [ [ [ "bone", 1 ], [ "bone_human", 1 ], [ "bone_demihuman", 1 ], [ "bone_tainted", 4 ] ] ] 44 | } 45 | ] 46 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_mat.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "material", 4 | "id": "secro_flesh_reinforced", 5 | "name": "Bio-organic Flesh", 6 | "copy-from": "flesh", 7 | "edible": false, 8 | "rotting": false, 9 | "soft": true, 10 | "breathability": "SECOND_SKIN", 11 | "chip_resist": 99, 12 | "resist": { "bash": 5, "cut": 3, "bullet": 3, "acid": 3, "heat": 1, "electric": 0 }, 13 | "repaired_with": "secro_flesh_reinforced", 14 | "dmg_adj": [ "bruised", "mutilated", "badly mutilated", "thoroughly mutilated" ], 15 | "bash_dmg_verb": "bruised", 16 | "cut_dmg_verb": "sliced", 17 | "//": "Make it immune to burning away.", 18 | "burn_data": [ { "immune": true }, { "immune": true }, { "immune": true } ] 19 | }, 20 | { 21 | "type": "material", 22 | "id": "secro_flesh_artificial", 23 | "name": "Artificial Flesh", 24 | "copy-from": "flesh", 25 | "edible": false, 26 | "rotting": false, 27 | "chip_resist": 4, 28 | "resist": { "bash": 3, "cut": 1, "bullet": 1, "acid": 2, "heat": 1, "electric": 0 }, 29 | "repaired_with": "secro_flesh", 30 | "dmg_adj": [ "bruised", "mutilated", "badly mutilated", "thoroughly mutilated" ], 31 | "bash_dmg_verb": "bruised", 32 | "cut_dmg_verb": "sliced" 33 | }, 34 | { 35 | "type": "material", 36 | "id": "secro_flesh_fuel", 37 | "name": "Artificial Flesh", 38 | "copy-from": "flesh", 39 | "edible": false, 40 | "rotting": false, 41 | "fuel_data": { "energy": "200 kJ" } 42 | } 43 | ] 44 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_qualities.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "tool_quality", 4 | "id": "SECRO_FINFUSE", 5 | "name": { "str": "flesh infusion" } 6 | } 7 | ] 8 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_recipe_cloak.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "result": "secro_flesh_cloak", 4 | "type": "recipe", 5 | "activity_level": "LIGHT_EXERCISE", 6 | "category": "CC_ARMOR", 7 | "subcategory": "CSC_ARMOR_OTHER", 8 | "skill_used": "secro_flesh_craft", 9 | "difficulty": 2, 10 | "time": "95 m", 11 | "skills_required": [ "secro_flesh_craft", 1 ], 12 | "using": [ [ "fleshweaving_core", 30 ], [ "fleshweaving_meat", 15 ], [ "fleshweaving_bone", 4 ] ], 13 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 14 | } 15 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_recipe_holster.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "result": "secro_flesh_back_holster", 4 | "type": "recipe", 5 | "activity_level": "LIGHT_EXERCISE", 6 | "category": "CC_ARMOR", 7 | "subcategory": "CSC_ARMOR_OTHER", 8 | "skill_used": "secro_flesh_craft", 9 | "difficulty": 3, 10 | "time": "30 m", 11 | "skills_required": [ "secro_flesh_craft", 2 ], 12 | "using": [ [ "fleshweaving_core", 10 ], [ "fleshweaving_meat", 5 ], [ "fleshweaving_bone", 1 ] ], 13 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 14 | }, 15 | { 16 | "result": "secro_flesh_baldric_holster", 17 | "type": "recipe", 18 | "activity_level": "LIGHT_EXERCISE", 19 | "category": "CC_ARMOR", 20 | "subcategory": "CSC_ARMOR_OTHER", 21 | "skill_used": "secro_flesh_craft", 22 | "difficulty": 5, 23 | "time": "95 m", 24 | "skills_required": [ "secro_flesh_craft", 4 ], 25 | "using": [ [ "fleshweaving_core", 30 ], [ "fleshweaving_meat", 15 ], [ "fleshweaving_bone", 4 ] ], 26 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 27 | }, 28 | { 29 | "result": "secro_flesh_bootstrap", 30 | "type": "recipe", 31 | "activity_level": "LIGHT_EXERCISE", 32 | "category": "CC_ARMOR", 33 | "subcategory": "CSC_ARMOR_OTHER", 34 | "skill_used": "secro_flesh_craft", 35 | "difficulty": 3, 36 | "time": "5 m", 37 | "skills_required": [ "secro_flesh_craft", 2 ], 38 | "using": [ [ "fleshweaving_core", 2 ], [ "fleshweaving_meat", 1 ] ], 39 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 40 | }, 41 | { 42 | "result": "secro_flesh_holster", 43 | "type": "recipe", 44 | "activity_level": "LIGHT_EXERCISE", 45 | "category": "CC_ARMOR", 46 | "subcategory": "CSC_ARMOR_OTHER", 47 | "skill_used": "secro_flesh_craft", 48 | "difficulty": 3, 49 | "time": "20 m", 50 | "skills_required": [ "secro_flesh_craft", 1 ], 51 | "using": [ [ "fleshweaving_core", 6 ], [ "fleshweaving_meat", 3 ], [ "fleshweaving_bone", 1 ] ], 52 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 53 | }, 54 | { 55 | "result": "secro_flesh_survivor_vest", 56 | "type": "recipe", 57 | "activity_level": "LIGHT_EXERCISE", 58 | "category": "CC_ARMOR", 59 | "subcategory": "CSC_ARMOR_OTHER", 60 | "skill_used": "secro_flesh_craft", 61 | "difficulty": 5, 62 | "time": "30 m", 63 | "skills_required": [ "secro_flesh_craft", 4 ], 64 | "using": [ [ "fleshweaving_core", 10 ], [ "fleshweaving_meat", 5 ], [ "fleshweaving_bone", 1 ] ], 65 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 66 | }, 67 | { 68 | "result": "secro_flesh_xl_survivor_vest", 69 | "type": "recipe", 70 | "activity_level": "LIGHT_EXERCISE", 71 | "category": "CC_ARMOR", 72 | "subcategory": "CSC_ARMOR_OTHER", 73 | "skill_used": "secro_flesh_craft", 74 | "difficulty": 5, 75 | "time": "50 m", 76 | "skills_required": [ "secro_flesh_craft", 4 ], 77 | "using": [ [ "fleshweaving_core", 16 ], [ "fleshweaving_meat", 8 ], [ "fleshweaving_bone", 2 ] ], 78 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 79 | }, 80 | { 81 | "result": "secro_flesh_XL_holster", 82 | "type": "recipe", 83 | "activity_level": "LIGHT_EXERCISE", 84 | "category": "CC_ARMOR", 85 | "subcategory": "CSC_ARMOR_OTHER", 86 | "skill_used": "secro_flesh_craft", 87 | "difficulty": 3, 88 | "time": "5 m", 89 | "skills_required": [ "secro_flesh_craft", 2 ], 90 | "using": [ [ "fleshweaving_core", 2 ], [ "fleshweaving_meat", 1 ] ], 91 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 92 | } 93 | ] 94 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_recipe_resource.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "result": "bone", 4 | "type": "recipe", 5 | "activity_level": "LIGHT_EXERCISE", 6 | "category": "CC_OTHER", 7 | "subcategory": "CSC_OTHER_MATERIALS", 8 | "skill_used": "secro_flesh_craft", 9 | "difficulty": 4, 10 | "time": "3 m", 11 | "autolearn": true, 12 | "using": [ [ "fleshreconstruction", 25 ] ], 13 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_resource" } ] 14 | }, 15 | { 16 | "result": "sinew", 17 | "type": "recipe", 18 | "activity_level": "LIGHT_EXERCISE", 19 | "category": "CC_OTHER", 20 | "subcategory": "CSC_OTHER_MATERIALS", 21 | "skill_used": "secro_flesh_craft", 22 | "difficulty": 4, 23 | "time": "5 m", 24 | "autolearn": true, 25 | "using": [ [ "fleshreconstruction", 5 ] ], 26 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_resource" } ] 27 | }, 28 | { 29 | "result": "secro_flesh_reinforced", 30 | "type": "recipe", 31 | "activity_level": "LIGHT_EXERCISE", 32 | "category": "CC_OTHER", 33 | "subcategory": "CSC_OTHER_MATERIALS", 34 | "skill_used": "secro_flesh_craft", 35 | "difficulty": 6, 36 | "time": "20 m", 37 | "autolearn": true, 38 | "using": [ [ "fleshreconstruction", 125 ] ], 39 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_resource" } ] 40 | } 41 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_recipe_sheath.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "result": "secro_flesh_baldric", 4 | "type": "recipe", 5 | "activity_level": "LIGHT_EXERCISE", 6 | "category": "CC_ARMOR", 7 | "subcategory": "CSC_ARMOR_OTHER", 8 | "skill_used": "secro_flesh_craft", 9 | "difficulty": 3, 10 | "time": "65 m", 11 | "skills_required": [ "secro_flesh_craft", 2 ], 12 | "using": [ [ "fleshweaving_core", 20 ], [ "fleshweaving_meat", 10 ], [ "fleshweaving_bone", 3 ] ], 13 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 14 | }, 15 | { 16 | "result": "secro_flesh_bootsheath", 17 | "type": "recipe", 18 | "activity_level": "LIGHT_EXERCISE", 19 | "category": "CC_ARMOR", 20 | "subcategory": "CSC_ARMOR_OTHER", 21 | "skill_used": "secro_flesh_craft", 22 | "difficulty": 3, 23 | "time": "20 m", 24 | "skills_required": [ "secro_flesh_craft", 1 ], 25 | "using": [ [ "fleshweaving_core", 6 ], [ "fleshweaving_meat", 3 ], [ "fleshweaving_bone", 1 ] ], 26 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 27 | }, 28 | { 29 | "result": "secro_flesh_bscabbard", 30 | "type": "recipe", 31 | "activity_level": "LIGHT_EXERCISE", 32 | "category": "CC_ARMOR", 33 | "subcategory": "CSC_ARMOR_OTHER", 34 | "skill_used": "secro_flesh_craft", 35 | "difficulty": 4, 36 | "time": "70 m", 37 | "skills_required": [ "secro_flesh_craft", 3 ], 38 | "using": [ [ "fleshweaving_core", 22 ], [ "fleshweaving_meat", 11 ], [ "fleshweaving_bone", 3 ] ], 39 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 40 | }, 41 | { 42 | "result": "secro_flesh_scabbard", 43 | "type": "recipe", 44 | "activity_level": "LIGHT_EXERCISE", 45 | "category": "CC_ARMOR", 46 | "subcategory": "CSC_ARMOR_OTHER", 47 | "skill_used": "secro_flesh_craft", 48 | "difficulty": 3, 49 | "time": "70 m", 50 | "skills_required": [ "secro_flesh_craft", 3 ], 51 | "using": [ [ "fleshweaving_core", 18 ], [ "fleshweaving_meat", 9 ], [ "fleshweaving_bone", 2 ] ], 52 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 53 | }, 54 | { 55 | "result": "secro_flesh_sheath", 56 | "type": "recipe", 57 | "activity_level": "LIGHT_EXERCISE", 58 | "category": "CC_ARMOR", 59 | "subcategory": "CSC_ARMOR_OTHER", 60 | "skill_used": "secro_flesh_craft", 61 | "difficulty": 4, 62 | "time": "20 m", 63 | "skills_required": [ "secro_flesh_craft", 1 ], 64 | "using": [ [ "fleshweaving_core", 6 ], [ "fleshweaving_meat", 3 ], [ "fleshweaving_bone", 1 ] ], 65 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 66 | }, 67 | { 68 | "result": "secro_flesh_spearsling", 69 | "type": "recipe", 70 | "activity_level": "LIGHT_EXERCISE", 71 | "category": "CC_ARMOR", 72 | "subcategory": "CSC_ARMOR_OTHER", 73 | "skill_used": "secro_flesh_craft", 74 | "difficulty": 3, 75 | "time": "20 m", 76 | "skills_required": [ "secro_flesh_craft", 1 ], 77 | "using": [ [ "fleshweaving_core", 6 ], [ "fleshweaving_meat", 3 ], [ "fleshweaving_bone", 1 ] ], 78 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 79 | } 80 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_recipe_storage.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Formula for flesh gear crafting components are as follows: result item's total volume / 250 (ml volume of a meat chunk) = x | ( x * 1.25 = meat count ) ( meat count * 2 = flesh count ) ( meat count * 0.25 = bone count ). For crafting time: ( meat count + bone count ) * 5 = x (result is in minutes)", 4 | "result": "secro_flesh_backpack", 5 | "type": "recipe", 6 | "activity_level": "LIGHT_EXERCISE", 7 | "category": "CC_ARMOR", 8 | "subcategory": "CSC_ARMOR_OTHER", 9 | "skill_used": "secro_flesh_craft", 10 | "difficulty": 4, 11 | "time": "65 m", 12 | "skills_required": [ "secro_flesh_craft", 2 ], 13 | "using": [ [ "fleshweaving_core", 20 ], [ "fleshweaving_meat", 10 ], [ "fleshweaving_bone", 3 ] ], 14 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 15 | }, 16 | { 17 | "result": "secro_flesh_rucksack", 18 | "type": "recipe", 19 | "activity_level": "LIGHT_EXERCISE", 20 | "category": "CC_ARMOR", 21 | "subcategory": "CSC_ARMOR_OTHER", 22 | "skill_used": "secro_flesh_craft", 23 | "difficulty": 4, 24 | "time": "345 m", 25 | "skills_required": [ "secro_flesh_craft", 3 ], 26 | "using": [ [ "fleshweaving_core", 110 ], [ "fleshweaving_meat", 55 ], [ "fleshweaving_bone", 14 ] ], 27 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 28 | }, 29 | { 30 | "result": "secro_flesh_bigback", 31 | "type": "recipe", 32 | "activity_level": "LIGHT_EXERCISE", 33 | "category": "CC_ARMOR", 34 | "subcategory": "CSC_ARMOR_OTHER", 35 | "skill_used": "secro_flesh_craft", 36 | "difficulty": 4, 37 | "time": "655 m", 38 | "skills_required": [ "secro_flesh_craft", 5 ], 39 | "using": [ [ "fleshweaving_core", 210 ], [ "fleshweaving_meat", 105 ], [ "fleshweaving_bone", 26 ] ], 40 | "proficiencies": [ { "proficiency": "secro_prof_fleshcraft_core" } ] 41 | } 42 | ] 43 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/-Essentials/secro_recipes.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "We're basically combining meat with slime.", 4 | "result": "secro_flesh", 5 | "activity_level": "LIGHT_EXERCISE", 6 | "type": "recipe", 7 | "category": "CC_CHEM", 8 | "subcategory": "CSC_CHEM_OTHER", 9 | "skill_used": "chemistry", 10 | "difficulty": 1, 11 | "skills_required": [ "chemistry", 1 ], 12 | "time": "15 s", 13 | "book_learn": [ [ "secro_recipe_flesh", 6 ], [ "secro_recipe_flesh_field", 1 ] ], 14 | "components": [ 15 | [ [ "slime_scrap", 5 ] ],[ 16 | [ "meat", 1 ], 17 | [ "mutant_meat", 1 ], 18 | [ "human_flesh", 1 ], 19 | [ "mutant_human_flesh", 1 ], 20 | [ "demihuman_flesh", 1 ], 21 | [ "meat_tainted", 4 ] 22 | ] 23 | ], 24 | "flags": [ "BLIND_EASY" ] 25 | }, 26 | { 27 | "result": "secro_flesh_large", 28 | "activity_level": "LIGHT_EXERCISE", 29 | "type": "recipe", 30 | "category": "CC_CHEM", 31 | "subcategory": "CSC_CHEM_OTHER", 32 | "skill_used": "chemistry", 33 | "difficulty": 1, 34 | "skills_required": [ "chemistry", 1 ], 35 | "time": "1 m", 36 | "book_learn": [ [ "secro_recipe_flesh", 6 ], [ "secro_recipe_flesh_field", 1 ] ], 37 | "components": [ [ [ "secro_flesh", 5 ] ] ], 38 | "flags": [ "BLIND_EASY" ] 39 | } 40 | ] 41 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/Armors/secro_cloak.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secro_flesh_cloak", 4 | "type": "ARMOR", 5 | "name": { "str": "cloak" }, 6 | "description": "A heavy cloak meant to be thrown over your body.", 7 | "weight": "1469 g", 8 | "volume": "3 L", 9 | "material": [ "secro_flesh_artificial" ], 10 | "valid_mods": [ "secro_flesh_reinforced_coat" ], 11 | "symbol": "[", 12 | "looks_like": "coat_rain", 13 | "color": "red", 14 | "warmth": 30, 15 | "flags": [ "OVERSIZE", "HOOD", "OUTER" ], 16 | "material_thickness": 1, 17 | "environmental_protection": 3, 18 | "armor": [ { "encumbrance": 4, "coverage": 65, "covers": [ "torso", "arm_l", "arm_r", "leg_l", "leg_r" ] } ] 19 | } 20 | ] 21 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/Armors/secro_power_armor_flesh_addons.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secro_power_armor_flesh_check", 4 | "type": "TOOL_ARMOR", 5 | "category": "armor", 6 | "name": { "str": "vessel interface port" }, 7 | "description": "A series of intricate outlets located on your chest and back, which are still wide open after merging with the exoskeleton. Perhaps there's a certain CBM that must be installed in them.", 8 | "weight": "1 g", 9 | "volume": "1 ml", 10 | "price": "0 cent", 11 | "price_postapoc": "0 cent", 12 | "material": [ "secro_flesh_reinforced" ], 13 | "symbol": "%", 14 | "color": "white", 15 | "flags": [ "PERSONAL", "TRADER_KEEP", "SEMITANGIBLE", "OVERSIZE", "ONLY_ONE", "TRADER_AVOID", "NO_TAKEOFF" ], 16 | "armor": [ { "covers": [ "torso" ], "encumbrance": 0, "coverage": 0, "material": [ "secro_flesh_reinforced" ], "material_thickness": 1 } ] 17 | }, 18 | { 19 | "id": "secro_power_armor_flesh_bor", 20 | "type": "TOOL_ARMOR", 21 | "category": "armor", 22 | "name": { "str": "bio-organic reconstructors" }, 23 | "description": "Located on your hands are flesh weavers allowing you to manipulate organic materials at will.", 24 | "weight": "1 g", 25 | "volume": "1 ml", 26 | "price": "0 cent", 27 | "price_postapoc": "0 cent", 28 | "material": [ "secro_flesh_reinforced" ], 29 | "symbol": "%", 30 | "color": "light_red", 31 | "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "secro_flesh": 250 } } ], 32 | "charges_per_use": 5, 33 | "use_action": [ 34 | { 35 | "type": "repair_item", 36 | "item_action_type": "repair_fabric", 37 | "materials": [ "secro_flesh_artificial" ], 38 | "skill": "secro_flesh_craft", 39 | "tool_quality": 2, 40 | "cost_scaling": 0, 41 | "move_cost": 425 42 | }, 43 | { 44 | "type": "sew_advanced", 45 | "materials": [ "flesh", "secro_flesh_artificial" ], 46 | "skill": "secro_flesh_craft", 47 | "clothing_mods": [ "secro_flesh_reinforced_coat" ] 48 | } 49 | ], 50 | "material_thickness": 0.02, 51 | "flags": [ "PERSONAL", "SEMITANGIBLE", "OVERSIZE", "ONLY_ONE", "TRADER_AVOID", "NO_TAKEOFF" ], 52 | "qualities": [ [ "SECRO_FLESH_WEAVING", 1 ], [ "SECRO_FLESH_RECONSTRUCTION", 1 ] ], 53 | "armor": [ { "covers": [ "torso" ], "encumbrance": 0, "coverage": 0, "material": [ "secro_flesh_reinforced" ] } ] 54 | } 55 | ] 56 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/Weapons/secro_BOW_armaments_ranged.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "GENERIC", 4 | "id": "secro_power_armor_flesh_morphed_gun_spit", 5 | "name": { "str": "gunner armament - spitter" }, 6 | "description": "An acid-spitting elongated proboscis-like limb that morphs and protrudes from one's shoulder. Consumes flesh to produce globs of blood acid. Activate to fire.", 7 | "color": "light_red", 8 | "symbol": "(", 9 | "material": [ "secro_flesh_reinforced" ], 10 | "volume": "11 ml", 11 | "flags": [ "BIONIC_WEAPON", "UNBREAKABLE_MELEE", "TRADER_AVOID", "ZERO_WEIGHT" ], 12 | "use_action": { "type": "cast_spell", "spell_id": "secro_pafv_morphed_gun_spit_check", "no_fail": true, "level": 0 } 13 | }, 14 | { 15 | "type": "GENERIC", 16 | "id": "secro_power_armor_flesh_morphed_gun_bonelance", 17 | "name": { "str": "gunner armament - bone lancer" }, 18 | "description": "One of your arms have swollen into a mass of flesh, with half of its proportion imitates that of a gun barrel. If fed, lines of strangely-shaped teeth quickly grows from it. Consumes a large amount of flesh to prepare a shot and some bionic power to fire.", 19 | "color": "red", 20 | "symbol": "(", 21 | "material": [ "secro_flesh_reinforced" ], 22 | "volume": "1111 ml", 23 | "flags": [ "BIONIC_WEAPON", "UNBREAKABLE_MELEE", "TRADER_AVOID", "ZERO_WEIGHT" ], 24 | "use_action": { "type": "cast_spell", "spell_id": "secro_pafv_morphed_gun_bonelance_shoot_check", "no_fail": true, "level": 0 } 25 | } 26 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_BOWs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secro_flesh_bow_sword", 4 | "type": "GENERIC", 5 | "symbol": "/", 6 | "color": "red", 7 | "name": { "str": "bio-organic sword" }, 8 | "description": "A large bio-organic weapon with a sharp, calcified edge and hilt consisting of membranous vein webbings.", 9 | "price": "0 cent", 10 | "price_postapoc": "0 cent", 11 | "to_hit": { "grip": "weapon", "length": "long", "surface": "every", "balance": "good" }, 12 | "material": [ "flesh", "bone" ], 13 | "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], 14 | "techniques": [ "WBLOCK_1", "WIDE", "BRUTAL" ], 15 | "weight": "2230 g", 16 | "volume": "2965 ml", 17 | "melee_damage": { "bash": 6, "cut": 28 }, 18 | "qualities": [ [ "COOK", 1 ], [ "BUTCHER", 10 ] ] 19 | }, 20 | { 21 | "id": "secro_flesh_bow_sword_mod_blade", 22 | "copy-from": "secro_flesh_bow_sword", 23 | "type": "GENERIC", 24 | "symbol": "/", 25 | "color": "light_red_white", 26 | "name": { "str": "bio-organic sword+", "str_pl": "bio-organic swords+" }, 27 | "description": "A large bio-organic weapon with a sharp, calcified edge and hilt consisting of membranous vein webbings.\n\nIt has core (blade zombie) in its mod slot, providing:\nCutting damage: +30%", 28 | "price": "0 cent", 29 | "price_postapoc": "0 cent", 30 | "to_hit": { "grip": "weapon", "length": "long", "surface": "every", "balance": "good" }, 31 | "material": [ "flesh", "bone" ], 32 | "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], 33 | "techniques": [ "WBLOCK_1", "WIDE", "BRUTAL" ], 34 | "weight": "2230 g", 35 | "volume": "2965 ml", 36 | "melee_damage": { "bash": 6, "cut": 36 }, 37 | "qualities": [ [ "COOK", 1 ], [ "BUTCHER", 14 ] ] 38 | }, 39 | { 40 | "id": "secro_flesh_bow_sword_mod_tendril", 41 | "type": "GENERIC", 42 | "symbol": "/", 43 | "color": "light_red_green", 44 | "name": { "str": "bio-organic sword+", "str_pl": "bio-organic swords+" }, 45 | "description": "A large bio-organic weapon with a sharp, calcified edge and hilt consisting of membranous vein webbings.\n\nIt has core (tendril zombie) in its mod slot, providing:\n* Bonus on-hit attacks.", 46 | "price": "0 cent", 47 | "price_postapoc": "0 cent", 48 | "to_hit": { "grip": "weapon", "length": "long", "surface": "every", "balance": "good" }, 49 | "material": [ "flesh", "bone" ], 50 | "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], 51 | "techniques": [ "WBLOCK_1", "WIDE", "BRUTAL" ], 52 | "weight": "2230 g", 53 | "volume": "2965 ml", 54 | "melee_damage": { "bash": 6, "cut": 28 }, 55 | "qualities": [ [ "COOK", 1 ], [ "BUTCHER", 10 ] ], 56 | "relic_data": { 57 | "passive_effects": [ 58 | { 59 | "has": "WIELD", 60 | "condition": "ALWAYS", 61 | "hit_you_effect": [ 62 | { 63 | "id": "secro_flesh_mod_tendril_ench_target", 64 | "hit_self": false, 65 | "once_in": 10, 66 | "message": "Your weapon's tendrils sweep into the vicinity!", 67 | "npc_message": "%1$s's weapon sweeps its tendrils!" 68 | }, 69 | { 70 | "id": "secro_flesh_mod_tendril_ench_slam", 71 | "hit_self": false, 72 | "once_in": 20, 73 | "message": "Your weapon's tendrils slams into %2$s!", 74 | "npc_message": "%1$s's weapon slams its tendrils!" 75 | }, 76 | { 77 | "id": "secro_flesh_mod_tendril_ench_thrust", 78 | "hit_self": false, 79 | "once_in": 40, 80 | "message": "Your weapon's tendrils pierced through %2$s!", 81 | "npc_message": "%1$s's weapon pierced its tendrils!" 82 | } 83 | ] 84 | } 85 | ] 86 | } 87 | } 88 | ] 89 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_amalgam.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secro_flesh_amalgam_transmitter", 4 | "type": "TOOL", 5 | "name": { "str": "bio-organic transmitter" }, 6 | "description": "A tiny glob of flesh, with several tendrils hanging from the sides. Activate to select available commands for amalgams.", 7 | "weight": "330 g", 8 | "volume": "55 ml", 9 | "price": "0 cent", 10 | "material": [ "flesh", "bone" ], 11 | "symbol": "o", 12 | "color": "red", 13 | "use_action": { "type": "cast_spell", "spell_id": "secro_flesh_transmitter_commands", "no_fail": true, "level": 0 } 14 | }, 15 | { 16 | "id": "secro_flesh_amalgam_transmitter_stop", 17 | "type": "TOOL", 18 | "category": "secro_amalgam_command", 19 | "name": { "str": "[COMMAND] Stop" }, 20 | "description": "Activate to transmit this command to a single amalgam.", 21 | "weight": "3 g", 22 | "volume": "3 ml", 23 | "price": "0 cent", 24 | "material": [ "secro_null" ], 25 | "symbol": "!", 26 | "color": "light_green", 27 | "use_action": { "type": "cast_spell", "spell_id": "secro_flesh_transmitter_command_stop", "no_fail": true, "level": 0 } 28 | }, 29 | { 30 | "id": "secro_flesh_amalgam_transmitter_stopall", 31 | "type": "TOOL", 32 | "category": "secro_amalgam_command", 33 | "name": { "str": "[COMMAND] All Stop" }, 34 | "description": "Activate to transmit this command to all nearby amalgams.", 35 | "weight": "3 g", 36 | "volume": "3 ml", 37 | "price": "0 cent", 38 | "material": [ "secro_null" ], 39 | "symbol": "!", 40 | "color": "light_green", 41 | "use_action": { "type": "cast_spell", "spell_id": "secro_flesh_transmitter_command_stopall", "no_fail": true, "level": 0 } 42 | }, 43 | { 44 | "id": "secro_flesh_amalgam_transmitter_attack", 45 | "type": "TOOL", 46 | "category": "secro_amalgam_command", 47 | "name": { "str": "[COMMAND] Attack" }, 48 | "description": "Activate to transmit this command to a single amalgam.", 49 | "weight": "3 g", 50 | "volume": "3 ml", 51 | "price": "0 cent", 52 | "material": [ "secro_null" ], 53 | "symbol": "!", 54 | "color": "light_green", 55 | "use_action": { "type": "cast_spell", "spell_id": "secro_flesh_transmitter_command_attack", "no_fail": true, "level": 0 } 56 | }, 57 | { 58 | "id": "secro_flesh_amalgam_transmitter_attackall", 59 | "type": "TOOL", 60 | "category": "secro_amalgam_command", 61 | "name": { "str": "[COMMAND] All Attack" }, 62 | "description": "Activate to transmit this command to all nearby amalgams.", 63 | "weight": "3 g", 64 | "volume": "3 ml", 65 | "price": "0 cent", 66 | "material": [ "secro_null" ], 67 | "symbol": "!", 68 | "color": "light_green", 69 | "use_action": { "type": "cast_spell", "spell_id": "secro_flesh_transmitter_command_attackall", "no_fail": true, "level": 0 } 70 | } 71 | ] 72 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_bionics.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "bio_secro_fv", 4 | "copy-from": "bionic_general_npc_usable", 5 | "type": "BIONIC_ITEM", 6 | "name": { "str": "Bio-organic Exoskeleton Interface CBM" }, 7 | "looks_like": "bio_int_enhancer", 8 | "description": "A set of bionics necessary to operate (or reduce the risk from wearing) bio-organic exoskeletons.", 9 | "price": "320 USD", 10 | "weight": "2550 g", 11 | "difficulty": 5 12 | }, 13 | { 14 | "id": "bio_secro_fv_core", 15 | "copy-from": "bionic_general_npc_usable", 16 | "type": "BIONIC_ITEM", 17 | "name": { "str": "Artificial Flesh Core CBM" }, 18 | "looks_like": "bio_int_enhancer", 19 | "description": "An articial flesh core ready to be installed in its pack, but it'll need an extreme care to properly do so.", 20 | "price": "550 USD", 21 | "weight": "4000 g", 22 | "difficulty": 8 23 | } 24 | ] 25 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_books.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secro_recipe_flesh", 4 | "type": "BOOK", 5 | "name": { 6 | "str": "Secronom Project \"Flesh\": Research Results", 7 | "str_pl": "copies of Secronom Project \"Flesh\": Research Results" 8 | }, 9 | "description": "This binder of highly technical papers describe the recent findings to multiple tests involving the flesh. It's stamped \"APPROVED\"…", 10 | "weight": "1433 g", 11 | "volume": "1250 ml", 12 | "price": "500 USD", 13 | "price_postapoc": "18 USD", 14 | "melee_damage": { "bash": 5 }, 15 | "material": [ "paper", "plastic" ], 16 | "symbol": "?", 17 | "color": "light_red", 18 | "skill": "chemistry", 19 | "required_level": 6, 20 | "max_level": 7, 21 | "intelligence": 13, 22 | "time": "25 m", 23 | "fun": -1 24 | }, 25 | { 26 | "id": "secro_recipe_flesh_field", 27 | "type": "BOOK", 28 | "name": { 29 | "str": "Secronom Project \"Flesh\": Field Research", 30 | "str_pl": "copies of Secronom Project \"Flesh\": Field Research" 31 | }, 32 | "description": "This binder of highly technical papers describe the wearer's protocol in wearing the bio-organic power armor, with a simple demonstration in forming its \"food\".", 33 | "weight": "223 g", 34 | "volume": "455 ml", 35 | "price": "5 USD", 36 | "price_postapoc": "1 USD", 37 | "melee_damage": { "bash": 1 }, 38 | "material": [ "paper", "plastic" ], 39 | "symbol": "?", 40 | "color": "light_red", 41 | "skill": "chemistry", 42 | "required_level": 0, 43 | "max_level": 1, 44 | "intelligence": 10, 45 | "time": "10 m", 46 | "fun": -1 47 | } 48 | ] 49 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_bots.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "bot_secro_laserturret_mod", 4 | "type": "TOOL", 5 | "name": { "str": "inactive laser beam turret" }, 6 | "description": "An inactive SDP-L1 turret. Use to place it.", 7 | "volume": "60000 ml", 8 | "weight": "172 kg", 9 | "price": "200 USD", 10 | "melee_damage": { "bash": 10 }, 11 | "material": [ "steel" ], 12 | "symbol": "2", 13 | "color": "light_red", 14 | "use_action": { 15 | "type": "place_monster", 16 | "monster_id": "mon_secro_laserturret_mod", 17 | "friendly_msg": "The SPD-L1 emits a beeping sound, then scans the vicinity...", 18 | "hostile_msg": "Oh no...", 19 | "difficulty": 0, 20 | "moves": 250, 21 | "skills": [ "electronics", "computer" ] 22 | } 23 | }, 24 | { 25 | "type": "GENERIC", 26 | "id": "broken_bot_secroinforcer", 27 | "symbol": ",", 28 | "color": "green", 29 | "name": { "str": "broken reinforcer bot" }, 30 | "category": "other", 31 | "description": "A reinforcer bot broken beyond repair. Can be gutted for parts.", 32 | "price": "10 USD", 33 | "price_postapoc": "1 USD", 34 | "material": [ "steel", "plastic" ], 35 | "volume": "190 L", 36 | "weight": "290 kg", 37 | "melee_damage": { "bash": 10 }, 38 | "flags": [ "TRADER_AVOID", "NO_REPAIR" ] 39 | }, 40 | { 41 | "type": "GENERIC", 42 | "id": "broken_bot_secroshocker", 43 | "symbol": ",", 44 | "color": "white", 45 | "name": { "str": "broken shocker bot" }, 46 | "category": "other", 47 | "description": "A shocker bot broken beyond repair. Can be gutted for parts.", 48 | "price": "10 USD", 49 | "price_postapoc": "1 USD", 50 | "material": [ "steel", "plastic" ], 51 | "volume": "30000 ml", 52 | "weight": "40750 g", 53 | "melee_damage": { "bash": 4, "cut": 4 }, 54 | "flags": [ "TRADER_AVOID", "NO_REPAIR" ] 55 | }, 56 | { 57 | "type": "GENERIC", 58 | "id": "broken_bot_secroriflewalker", 59 | "symbol": ",", 60 | "color": "white", 61 | "name": { "str": "broken walker bot" }, 62 | "category": "other", 63 | "description": "A walker bot broken beyond repair. Can be gutted for parts.", 64 | "price": "10 USD", 65 | "price_postapoc": "1 USD", 66 | "material": [ "steel", "plastic" ], 67 | "volume": "30000 ml", 68 | "weight": "40750 g", 69 | "melee_damage": { "bash": 3 }, 70 | "flags": [ "TRADER_AVOID", "NO_REPAIR" ] 71 | }, 72 | { 73 | "type": "GENERIC", 74 | "id": "broken_bot_secrolauncher", 75 | "symbol": ",", 76 | "color": "white", 77 | "name": { "str": "broken launcher bot" }, 78 | "category": "other", 79 | "description": "A launcher bot broken beyond repair. Can be gutted for parts.", 80 | "price": "10 USD", 81 | "price_postapoc": "1 USD", 82 | "material": [ "steel", "plastic" ], 83 | "volume": "30000 ml", 84 | "weight": "40750 g", 85 | "melee_damage": { "bash": 3 }, 86 | "flags": [ "TRADER_AVOID", "NO_REPAIR" ] 87 | }, 88 | { 89 | "type": "GENERIC", 90 | "id": "broken_secro_fleshmech_unlink", 91 | "name": { "str": "broken flesh mech" }, 92 | "description": "This is a broken flesh exoskeleton suit, it looks beyond repair.", 93 | "weight": "1480388 g", 94 | "volume": "250 L", 95 | "melee_damage": { "bash": 8 }, 96 | "material": [ "superalloy", "secro_flesh_reinforced" ], 97 | "symbol": ";", 98 | "color": "light_red", 99 | "flags": [ "TRADER_AVOID", "NO_REPAIR" ] 100 | }, 101 | { 102 | "type": "GENERIC", 103 | "id": "broken_secro_fleshmech", 104 | "name": { "str": "broken flesh mech" }, 105 | "description": "This is a broken flesh exoskeleton suit, it looks beyond repair.", 106 | "weight": "1480388 g", 107 | "volume": "250 L", 108 | "melee_damage": { "bash": 8 }, 109 | "material": [ "superalloy", "secro_flesh_reinforced" ], 110 | "symbol": ";", 111 | "color": "light_red", 112 | "flags": [ "TRADER_AVOID", "NO_REPAIR" ] 113 | } 114 | ] 115 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_corpses.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "GENERIC", 4 | "id": "broken_secro_laserturret", 5 | "symbol": ",", 6 | "color": "light_red", 7 | "weight": "75 kg", 8 | "name": { "str": "broken laser beam turret" }, 9 | "copy-from": "broken_turret" 10 | }, 11 | { 12 | "type": "GENERIC", 13 | "id": "broken_secro_electurret", 14 | "symbol": ",", 15 | "color": "cyan", 16 | "name": { "str": "broken electroshock turret" }, 17 | "weight": "75 kg", 18 | "copy-from": "broken_turret" 19 | }, 20 | { 21 | "type": "GENERIC", 22 | "id": "broken_secro_gravturret", 23 | "symbol": ",", 24 | "color": "magenta", 25 | "name": { "str": "broken gaviton turret" }, 26 | "copy-from": "broken_turret" 27 | }, 28 | { 29 | "type": "GENERIC", 30 | "id": "broken_secro_laserturret_mod", 31 | "symbol": ",", 32 | "color": "light_red", 33 | "weight": "75 kg", 34 | "name": { "str": "inactive laser beam turret" }, 35 | "description": "An inactive turret. It needs to be recharged in order to be used again, or could be gutted for parts.", 36 | "copy-from": "broken_turret" 37 | } 38 | ] 39 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_flesh.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "GENERIC", 4 | "id": "secro_flesh_reinforced", 5 | "looks_like": "secro_flesh", 6 | "symbol": "&", 7 | "color": "red", 8 | "name": { "str": "bio-organic flesh" }, 9 | "description": "A chunk of heavily compressed flesh. Rubbery yet stiff, its toughness is compared to that of kevlar.", 10 | "material": [ "secro_flesh_reinforced" ], 11 | "flags": [ "NO_SALVAGE" ], 12 | "weight": "880 g", 13 | "volume": "250 ml", 14 | "category": "spare_parts" 15 | }, 16 | { 17 | "type": "GENERIC", 18 | "id": "secro_power_armor_flesh_unstable", 19 | "looks_like": "secro_flesh", 20 | "symbol": "&", 21 | "color": "red", 22 | "name": { "str": "molten flesh vessel" }, 23 | "description": "A bio-organic exoskeleton turned into a mish-mash of flesh and bones. Completely unusable in its form.", 24 | "material": [ "secro_flesh_reinforced" ], 25 | "weight": "18400 g", 26 | "volume": "21 L", 27 | "category": "spare_parts" 28 | } 29 | ] 30 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_fleshcamp_marks.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secro_flesh_camp_bed_mark", 4 | "type": "TOOL", 5 | "name": { "str": "[MARK] flesh bed" }, 6 | "description": "Activate to set a mark and the hivemind will build the furniture on that spot. Marked spot must be near the hivemind's core.", 7 | "weight": "3 g", 8 | "volume": "3 ml", 9 | "price": "0 cent", 10 | "price_postapoc": "0 cent", 11 | "material": [ "secro_null" ], 12 | "symbol": "x", 13 | "color": "pink", 14 | "use_action": { "type": "deploy_furn", "furn_type": "f_secro_flesh_camp_bed_mark" } 15 | }, 16 | { 17 | "id": "secro_flesh_camp_floorstorage_mark", 18 | "type": "TOOL", 19 | "name": { "str": "[MARK] floor residue" }, 20 | "description": "Activate to set a mark and the flesh will build the furniture on that spot. Marked spot must be near the hivemind's core.", 21 | "weight": "3 g", 22 | "volume": "3 ml", 23 | "price": "0 cent", 24 | "price_postapoc": "0 cent", 25 | "material": [ "secro_null" ], 26 | "symbol": "x", 27 | "color": "pink", 28 | "use_action": { "type": "deploy_furn", "furn_type": "f_secro_flesh_camp_floorstorage_mark" } 29 | }, 30 | { 31 | "id": "secro_flesh_camp_storage_mark", 32 | "type": "TOOL", 33 | "name": { "str": "[MARK] residue" }, 34 | "description": "Activate to set a mark and the flesh will build the furniture on that spot. Marked spot must be near the hivemind's core.", 35 | "weight": "3 g", 36 | "volume": "3 ml", 37 | "price": "0 cent", 38 | "price_postapoc": "0 cent", 39 | "material": [ "secro_null" ], 40 | "symbol": "x", 41 | "color": "pink", 42 | "use_action": { "type": "deploy_furn", "furn_type": "f_secro_flesh_camp_storage_mark" } 43 | }, 44 | { 45 | "id": "secro_flesh_camp_displaystorage_mark", 46 | "type": "TOOL", 47 | "name": { "str": "[MARK] flesh rack" }, 48 | "description": "Activate to set a mark and the flesh will build the furniture on that spot. Marked spot must be near the hivemind's core.", 49 | "weight": "3 g", 50 | "volume": "3 ml", 51 | "price": "0 cent", 52 | "price_postapoc": "0 cent", 53 | "material": [ "secro_null" ], 54 | "symbol": "x", 55 | "color": "pink", 56 | "use_action": { "type": "deploy_furn", "furn_type": "f_secro_flesh_camp_displaystorage_mark" } 57 | }, 58 | { 59 | "id": "secro_flesh_camp_liquidstorage_mark", 60 | "type": "TOOL", 61 | "name": { "str": "[MARK] flesh container" }, 62 | "description": "Activate to set a mark and the flesh will build the furniture on that spot. Marked spot must be near the hivemind's core.", 63 | "weight": "3 g", 64 | "volume": "3 ml", 65 | "price": "0 cent", 66 | "price_postapoc": "0 cent", 67 | "material": [ "secro_null" ], 68 | "symbol": "x", 69 | "color": "pink", 70 | "use_action": { "type": "deploy_furn", "furn_type": "f_secro_flesh_camp_liquidstorage_mark" } 71 | }, 72 | { 73 | "id": "secro_flesh_camp_light_mark", 74 | "type": "TOOL", 75 | "name": { "str": "[MARK] bioluminescent wart" }, 76 | "description": "Activate to set a mark and the flesh will build the furniture on that spot. Marked spot must be near the hivemind's core.", 77 | "weight": "3 g", 78 | "volume": "3 ml", 79 | "price": "0 cent", 80 | "price_postapoc": "0 cent", 81 | "material": [ "secro_null" ], 82 | "symbol": "x", 83 | "color": "pink", 84 | "use_action": { "type": "deploy_furn", "furn_type": "f_secro_flesh_camp_light_mark" } 85 | } 86 | ] 87 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_key.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "ter_furn_transform", 4 | "id": "secro_fvvault", 5 | "terrain": [ { "result": "t_door_metal_c", "valid_terrain": [ "t_secro_door_metal_secrofv" ], "message": "The door has opened." } ] 6 | }, 7 | { 8 | "type": "ter_furn_transform", 9 | "id": "secro_frroom", 10 | "terrain": [ 11 | { "result": "t_door_metal_c", "valid_terrain": [ "t_secro_door_metal_secrofrr" ], "message": "The door has opened." } 12 | ] 13 | }, 14 | { 15 | "id": "secro_id_fvvault_open", 16 | "type": "SPELL", 17 | "name": { "str": "Identify" }, 18 | "description": "Item is swapped to the door's card reader. If successful, opens specific doors.", 19 | "flags": [ "SILENT", "NO_PROJECTILE" ], 20 | "message": "", 21 | "valid_targets": [ "ground" ], 22 | "effect": "ter_transform", 23 | "shape": "blast", 24 | "effect_str": "secro_fvvault", 25 | "min_range": 1, 26 | "max_range": 1, 27 | "base_casting_time": 1 28 | }, 29 | { 30 | "id": "secro_id_frroom_open", 31 | "type": "SPELL", 32 | "name": { "str": "Identify" }, 33 | "description": "Item is swapped to the door's card reader. If successful, opens specific doors.", 34 | "flags": [ "SILENT", "NO_PROJECTILE" ], 35 | "message": "", 36 | "valid_targets": [ "ground" ], 37 | "effect": "ter_transform", 38 | "shape": "blast", 39 | "effect_str": "secro_frroom", 40 | "min_range": 1, 41 | "max_range": 1, 42 | "base_casting_time": 1 43 | }, 44 | { 45 | "type": "GENERIC", 46 | "id": "secro_id_fvvault", 47 | "looks_like": "id_science", 48 | "symbol": ",", 49 | "color": "red", 50 | "name": { "str": "Secronom ID card" }, 51 | "description": "This ID card once belonged to a secronom researcher. One side shows the information about the owner, the other describes the use for it. \"Level 2 clearance\".", 52 | "price": "180 USD", 53 | "price_postapoc": "1 USD", 54 | "material": [ "plastic" ], 55 | "weight": "6 g", 56 | "volume": "5 ml", 57 | "use_action": { "type": "cast_spell", "spell_id": "secro_id_fvvault_open", "no_fail": true, "level": 0 } 58 | }, 59 | { 60 | "type": "GENERIC", 61 | "id": "secro_id_frrom", 62 | "looks_like": "id_science", 63 | "symbol": ",", 64 | "color": "red", 65 | "name": { "str": "Secronom ID card" }, 66 | "description": "This ID card once belonged to a secronom researcher. One side shows the information about the owner, the other describes the use for it. \"Level 1 clearance\".", 67 | "price": "90 USD", 68 | "price_postapoc": "1 USD", 69 | "material": [ "plastic" ], 70 | "weight": "6 g", 71 | "volume": "5 ml", 72 | "use_action": { "type": "cast_spell", "spell_id": "secro_id_frroom_open", "no_fail": true, "level": 0 } 73 | } 74 | ] 75 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Items/secro_tools.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "melee_damage": { "bash": 3 }, 4 | "charges_per_use": 50, 5 | "color": "red", 6 | "description": "An experimental, syringe-like device. Labeled with \"Secronom Project\", it is used to forcefully feed a flesh vessel.", 7 | "id": "secro_tool_finfuse", 8 | "material": [ "steel", "glass", "plastic" ], 9 | "name": { "str": "SP - flesh injector" }, 10 | "price": "50 USD", 11 | "price_postapoc": "1 USD", 12 | "pocket_data": [ 13 | { 14 | "pocket_type": "MAGAZINE_WELL", 15 | "holster": true, 16 | "rigid": true, 17 | "max_contains_volume": "20 L", 18 | "max_contains_weight": "20 kg", 19 | "item_restriction": [ 20 | "light_disposable_cell", 21 | "light_minus_disposable_cell", 22 | "light_plus_battery_cell", 23 | "light_battery_cell", 24 | "light_minus_battery_cell", 25 | "light_atomic_battery_cell", 26 | "light_minus_atomic_battery_cell" 27 | ] 28 | } 29 | ], 30 | "qualities": [ [ "SECRO_FINFUSE", 1 ] ], 31 | "symbol": "o", 32 | "type": "TOOL", 33 | "volume": "550 ml", 34 | "weight": "275 g" 35 | } 36 | ] 37 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Maps/-Essentials/fields.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "fd_sflesh_strands", 4 | "looks_like": "fd_mawy_web", 5 | "type": "field_type", 6 | "intensity_levels": [ 7 | { 8 | "name": "flesh strands", 9 | "sym": "}", 10 | "color": "light_red", 11 | "effects": [ 12 | { "effect_id": "webbed", "intensity": 1, "min_duration": "1 m", "immune_in_vehicle": true, "is_environmental": false } 13 | ] 14 | }, 15 | { 16 | "name": "thick flesh strands", 17 | "light_override": 2.0, 18 | "transparent": false, 19 | "effects": [ 20 | { "effect_id": "webbed", "intensity": 2, "min_duration": "1 m", "immune_in_vehicle": true, "is_environmental": false } 21 | ] 22 | }, 23 | { 24 | "name": "compact flesh strands", 25 | "light_override": 3.7, 26 | "color": "red", 27 | "effects": [ 28 | { "effect_id": "webbed", "intensity": 3, "min_duration": "1 m", "immune_in_vehicle": true, "is_environmental": false } 29 | ] 30 | } 31 | ], 32 | "immune_mtypes": [ "mon_szombie_vessel", "mon_szombie_vessel_inactive" ], 33 | "description_affix": "covered_in", 34 | "decrease_intensity_on_contact": true, 35 | "priority": 2, 36 | "phase": "solid", 37 | "display_items": false, 38 | "bash": { 39 | "str_min": 6, 40 | "str_max": 18, 41 | "sound_vol": 2, 42 | "sound_fail_vol": 2, 43 | "sound": "splash!", 44 | "msg_success": "Flesh strands were torn apart." 45 | }, 46 | "display_field": true 47 | } 48 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Maps/-Essentials/flesh_ter_furn_camp_marks.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "furniture", 4 | "id": "f_secro_flesh_camp_bed_mark", 5 | "name": "[MARK] flesh bed", 6 | "symbol": "X", 7 | "description": "This location is marked for building. Destroy the mark to cancel ongoing progress.", 8 | "color": "pink", 9 | "move_cost_mod": 0, 10 | "coverage": 0, 11 | "required_str": -1, 12 | "flags": [ "TRANSPARENT", "S_FLESH", "EASY_DECONSTRUCT" ], 13 | "deployed_item": "secro_flesh_camp_bed_mark", 14 | "bash": { "str_min": 1, "str_max": 2, "items": [ { "item": "secro_flesh_camp_bed_mark" } ] } 15 | }, 16 | { 17 | "type": "furniture", 18 | "id": "f_secro_flesh_camp_floorstorage_mark", 19 | "name": "[MARK] floor residue", 20 | "symbol": "X", 21 | "description": "This location is marked for building. Destroy the mark to cancel ongoing progress.", 22 | "color": "pink", 23 | "move_cost_mod": 0, 24 | "coverage": 0, 25 | "required_str": -1, 26 | "flags": [ "TRANSPARENT", "S_FLESH", "EASY_DECONSTRUCT" ], 27 | "deployed_item": "secro_flesh_camp_floorstorage_mark", 28 | "bash": { "str_min": 1, "str_max": 2, "items": [ { "item": "secro_flesh_camp_floorstorage_mark" } ] } 29 | }, 30 | { 31 | "type": "furniture", 32 | "id": "f_secro_flesh_camp_storage_mark", 33 | "name": "[MARK] residue", 34 | "symbol": "X", 35 | "description": "This location is marked for building. Destroy the mark to cancel ongoing progress.", 36 | "color": "pink", 37 | "move_cost_mod": 0, 38 | "coverage": 0, 39 | "required_str": -1, 40 | "flags": [ "TRANSPARENT", "S_FLESH", "EASY_DECONSTRUCT" ], 41 | "deployed_item": "secro_flesh_camp_storage_mark", 42 | "bash": { "str_min": 1, "str_max": 2, "items": [ { "item": "secro_flesh_camp_storage_mark" } ] } 43 | }, 44 | { 45 | "type": "furniture", 46 | "id": "f_secro_flesh_camp_displaystorage_mark", 47 | "name": "[MARK] flesh rack", 48 | "symbol": "X", 49 | "description": "This location is marked for building. Destroy the mark to cancel ongoing progress.", 50 | "color": "pink", 51 | "move_cost_mod": 0, 52 | "coverage": 0, 53 | "required_str": -1, 54 | "flags": [ "TRANSPARENT", "S_FLESH", "EASY_DECONSTRUCT" ], 55 | "deployed_item": "secro_flesh_camp_displaystorage_mark", 56 | "bash": { "str_min": 1, "str_max": 2, "items": [ { "item": "secro_flesh_camp_displaystorage_mark" } ] } 57 | }, 58 | { 59 | "type": "furniture", 60 | "id": "f_secro_flesh_camp_liquidstorage_mark", 61 | "name": "[MARK] flesh container", 62 | "description": "This location is marked for building. Destroy the mark to cancel ongoing progress.", 63 | "symbol": "X", 64 | "color": "pink", 65 | "move_cost_mod": 0, 66 | "coverage": 0, 67 | "required_str": -1, 68 | "flags": [ "TRANSPARENT", "S_FLESH", "EASY_DECONSTRUCT" ], 69 | "deployed_item": "secro_flesh_camp_liquidstorage_mark", 70 | "bash": { "str_min": 1, "str_max": 2, "items": [ { "item": "secro_flesh_camp_liquidstorage_mark" } ] } 71 | }, 72 | { 73 | "type": "furniture", 74 | "id": "f_secro_flesh_camp_light_mark", 75 | "name": "[MARK] bioluminescent wart", 76 | "description": "This location is marked for building. Destroy the mark to cancel ongoing progress.", 77 | "symbol": "X", 78 | "color": "pink", 79 | "move_cost_mod": 0, 80 | "coverage": 0, 81 | "required_str": -1, 82 | "flags": [ "TRANSPARENT", "S_FLESH", "EASY_DECONSTRUCT" ], 83 | "deployed_item": "secro_flesh_camp_light_mark", 84 | "bash": { "str_min": 1, "str_max": 2, "items": [ { "item": "secro_flesh_camp_light_mark" } ] } 85 | } 86 | ] 87 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Maps/-Essentials/map_extras.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mx_secro_vesselexp_spawn", 4 | "type": "map_extra", 5 | "name": { "str": "Field Test" }, 6 | "description": "A field test were done here.", 7 | "generator": { "generator_method": "update_mapgen", "generator_id": "mx_secro_vesselexp" } 8 | } 9 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Maps/-Essentials/oms.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "overmap_special", 4 | "id": "Mini Secronom Research Lab", 5 | "overmaps": [ 6 | { "point": [ 0, -1, 0 ], "overmap": "road_end_north" }, 7 | { "point": [ 0, 0, 0 ], "overmap": "mini_fleshresearchlab_north" }, 8 | { "point": [ 0, 0, -1 ], "overmap": "mini_fleshresearchlab_lab_north" } 9 | ], 10 | "connections": [ { "point": [ 0, -1, 0 ] } ], 11 | "locations": [ "land" ], 12 | "city_distance": [ 7, -1 ], 13 | "city_sizes": [ 2, 10 ], 14 | "occurrences": [ 0, 0 ] 15 | }, 16 | { 17 | "type": "overmap_special", 18 | "id": "Secronom Flesh Research Lab", 19 | "overmaps": [ 20 | { "point": [ 0, -1, 0 ], "overmap": "road_end_north" }, 21 | { "point": [ 0, 0, 0 ], "overmap": "SecroFleshLab_entry_north" }, 22 | { "point": [ 0, 0, -1 ], "overmap": "SecroFleshLab_b1_north" }, 23 | { "point": [ 0, 0, -2 ], "overmap": "SecroFleshLab_b2_north" } 24 | ], 25 | "connections": [ { "point": [ 0, -1, 0 ] } ], 26 | "locations": [ "land" ], 27 | "city_distance": [ 15, -1 ], 28 | "city_sizes": [ 2, 10 ], 29 | "occurrences": [ 0, 0 ] 30 | }, 31 | { 32 | "type": "overmap_special", 33 | "id": "Military Bunker but fleshy", 34 | "overmaps": [ 35 | { "point": [ 0, -1, 0 ], "overmap": "road_end_north" }, 36 | { "point": [ 0, 0, 0 ], "overmap": "secro_bunker_flesh_south" }, 37 | { "point": [ 0, 0, -1 ], "overmap": "secro_bunker_basement_flesh" }, 38 | { "point": [ -1, 0, -1 ], "overmap": "secro_bunker_basement_fvvault_flesh" } 39 | ], 40 | "connections": [ { "point": [ 0, -1, 0 ] } ], 41 | "locations": [ "land" ], 42 | "city_distance": [ 4, -1 ], 43 | "city_sizes": [ 2, 10 ], 44 | "occurrences": [ 0, 1 ], 45 | "flags": [ "MILITARY" ] 46 | } 47 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Maps/Misc.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "method": "json", 4 | "type": "mapgen", 5 | "update_mapgen_id": "mx_secro_vesselexp", 6 | "object": { 7 | "rows": [ 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " zzzzz ", 15 | " zzzzzzz ", 16 | " zzzxxxzzz ", 17 | " zzzxxxxxzzz ", 18 | " zzxxbbbxxzz ", 19 | " zzxxbabxxzz ", 20 | " zzxxbbbxxzz ", 21 | " zzzxxxxxzzz ", 22 | " zzzxxxzzz ", 23 | " zzzzzzz ", 24 | " zzzzz ", 25 | " ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " " 32 | ], 33 | "terrain": { "a": "t_secro_dirt_flesh", "x": "t_region_groundcover", "z": "t_region_groundcover", "b": "t_region_groundcover" }, 34 | "furniture": { }, 35 | "place_monster": [ { "monster": "mon_szombie_vessel_inactive", "x": 11, "y": 11 } ], 36 | "fields": { "b": { "field": "fd_sflesh_strands", "intensity": 2 } }, 37 | "place_fields": [ 38 | { "field": "fd_sflesh_strands", "x": 11, "y": 11, "intensity": 3 }, 39 | { "field": "fd_sflesh_strands", "x": [ 8, 14 ], "y": [ 8, 14 ], "repeat": [ 30, 60 ] }, 40 | { "field": "fd_blood", "x": [ 10, 12 ], "y": [ 10, 12 ], "intensity": 2, "repeat": [ 10, 20 ] }, 41 | { "field": "fd_gibs_flesh", "x": [ 10, 12 ], "y": [ 10, 12 ], "repeat": [ 4, 8 ] }, 42 | { "field": "fd_blood", "x": [ 8, 14 ], "y": [ 8, 14 ], "repeat": [ 10, 20 ] } 43 | ], 44 | "ter_furn_transforms": { "x": { "transform": "flesh_spread" }, "z": { "transform": "flesh_spread" }, "b": { "transform": "flesh_spread" } }, 45 | "flags": [ "ALLOW_TERRAIN_UNDER_OTHER_DATA" ] 46 | } 47 | } 48 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Maps/SecronomResearchLab.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "method": "json", 4 | "object": { 5 | "fill_ter": "t_thconc_floor", 6 | "rows": [ 7 | " __________-----_ ", 8 | " __________-----_ ", 9 | " __ ----- ", 10 | " __/zzzzz// ", 11 | " //////dd/.....Z/ ", 12 | " /;/bb/../....../ ", 13 | " '.d,.d,./....../ ", 14 | " /T/.l/../..^.../ ", 15 | " //////.,/....../ ", 16 | " /T/.l/../....../ ", 17 | " '.d,.d,.d....../ ", 18 | " /;/bb/../w....L/ ", 19 | " //////dd//////// ", 20 | " /t......d.>/ ", 21 | " '..cCCc.d.>/ ", 22 | " /m,cCCc,//// ", 23 | " /o.cCCc./ ", 24 | " 'k&...../ ", 25 | " ///'//'// ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " " 31 | ], 32 | "palettes": [ "secro_minifleshlab_palette" ] 33 | }, 34 | "om_terrain": [ "mini_fleshresearchlab" ], 35 | "type": "mapgen" 36 | }, 37 | { 38 | "method": "json", 39 | "object": { 40 | "fill_ter": "t_thconc_floor", 41 | "rows": [ 42 | "########################", 43 | "########################", 44 | "#######////////#########", 45 | "#######/.....%1$s shoots a ray of heat at %3$s!" 31 | } 32 | ], 33 | "death_drops": { }, 34 | "death_function": { "corpse_type": "BROKEN" }, 35 | "flags": [ "SEES", "NOHEAD", "ELECTRIC", "ELECTRONIC", "COLDPROOF", "IMMOBILE", "NO_BREATHE" ] 36 | } 37 | ] 38 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Monsters/Crimson Horrors/Flesh_experimental.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Armored zombie, but can actually hurt you, in many ways.", 4 | "id": "mon_szombie_vessel", 5 | "type": "MONSTER", 6 | "name": { "str": "vessel experimental" }, 7 | "description": "A human who fell and succumbed to the flesh vessel exoskeleton - an experimental battle suit developed by the Secronom Project. It has completely fused with the body, and seem to have full control over it.", 8 | "default_faction": "secro_flesh", 9 | "bodytype": "human", 10 | "species": [ "SFLESH", "HUMAN" ], 11 | "volume": "62500 ml", 12 | "weight": "81500 g", 13 | "hp": 100, 14 | "speed": 70, 15 | "material": [ "flesh" ], 16 | "symbol": "⒵", 17 | "color": "light_red", 18 | "aggression": 100, 19 | "morale": 100, 20 | "melee_skill": 8, 21 | "melee_dice": 4, 22 | "melee_dice_sides": 2, 23 | "melee_damage": [ { "damage_type": "cut", "amount": 4 } ], 24 | "vision_night": 12, 25 | "armor": { "bash": 32, "cut": 32, "bullet": 32, "stab": 32, "heat": 8, "acid": 8 }, 26 | "harvest": "human", 27 | "special_attacks": [ 28 | { 29 | "type": "spell", 30 | "spell_data": { "id": "mon_szombie_vessel_target" }, 31 | "cooldown": 15, 32 | "monster_message": "%1$s aims at %3$s!" 33 | } 34 | ], 35 | "death_drops": "mon_szombie_vessel_death_drop", 36 | "flags": [ 37 | "SEES", 38 | "HEARS", 39 | "SMELLS", 40 | "STUMBLES", 41 | "WARM", 42 | "BASHES", 43 | "GROUP_BASH", 44 | "POISON", 45 | "NO_BREATHE", 46 | "PUSH_MON", 47 | "FILTHY", 48 | "ELECTRIC", 49 | "STUN_IMMUNE" 50 | ] 51 | }, 52 | { 53 | "//": "initially spawns as this, but quickly becomes mobile days later.", 54 | "id": "mon_szombie_vessel_inactive", 55 | "type": "MONSTER", 56 | "name": { "str": "vessel experimental" }, 57 | "description": "A human who fell and succumbed to the flesh vessel exoskeleton - an experimental battle suit developed by the Secronom Project - and by the looks of it, the body has been recently devoured. Strands of flesh writhe incessantly around it.", 58 | "copy-from": "mon_szombie_vessel", 59 | "melee_skill": 0, 60 | "melee_dice": 0, 61 | "melee_dice_sides": 0, 62 | "relative": { 63 | "armor": { "bash": -12, "cut": -12, "bullet": -12, "stab": -12, "heat": -6, "acid": -2 }, 64 | "hp": -50, 65 | "vision_day": -10, 66 | "vision_night": -10 67 | }, 68 | "extend": { "flags": [ "IMMOBILE" ] }, 69 | "delete": { "flags": [ "ELECTRIC", "PUSH_MON" ] }, 70 | "death_drops": "mon_szombie_vessel_inactive_death_drop", 71 | "special_attacks": [ 72 | { 73 | "type": "spell", 74 | "spell_data": { "id": "mon_szombie_vessel_range_target_random" }, 75 | "cooldown": 35, 76 | "monster_message": "A gunner armament emerges from %1$s's body, aiming at %3$s!" 77 | } 78 | ], 79 | "upgrades": { "half_life": 10, "into": "mon_szombie_vessel" } 80 | } 81 | ] 82 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Monsters/Crimson Horrors/Flesh_mech.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "mon_secro_fleshmech_unlink", 4 | "type": "MONSTER", 5 | "name": { "str": "SP Experimental Mech \"Flesh\"" }, 6 | "description": "This experimental mech type \"Flesh\" is the most recent (and last) mechsuit produced by the engineers of the Secronom Project. Very scarce and limited to military use only, it was designed to take on the main force of the battlefield thanks to its exotic yet nigh indestructible material, especially supplemented with a variety of gun morphs. Unfortunately, it requires one to wear a bio-organic power and link it with the mech to accept you as its rider.", 7 | "default_faction": "mech_bot", 8 | "species": [ "ROBOT", "ABERRATION", "SFLESH" ], 9 | "volume": "1480388 ml", 10 | "weight": "1480388 g", 11 | "hp": 885, 12 | "speed": 0, 13 | "material": [ "superalloy", "secro_flesh_reinforced" ], 14 | "symbol": "M", 15 | "color": "light_red", 16 | "aggression": -50, 17 | "morale": 100, 18 | "melee_skill": 2, 19 | "melee_dice": 2, 20 | "melee_dice_sides": 6, 21 | "armor": { "bash": 33, "cut": 22, "stab": 24, "bullet": 24, "acid": 8 }, 22 | "vision_night": 50, 23 | "mech_str_bonus": 15, 24 | "mech_battery": "secro_fleshmech_battery", 25 | "mech_weapon": "secro_fleshmech_gun_spikes", 26 | "revert_to_itype": "broken_secro_fleshmech", 27 | "death_function": { "corpse_type": "BROKEN" }, 28 | "death_drops": { "groups": [ [ "robots", 20 ] ] }, 29 | "flags": [ 30 | "SEES", 31 | "HEARS", 32 | "MILITARY_MECH", 33 | "BASHES", 34 | "PUSH_MON", 35 | "ELECTRONIC", 36 | "NOHEAD", 37 | "NO_BREATHE", 38 | "PRIORITIZE_TARGETS", 39 | "PATH_AVOID_DANGER", 40 | "LOUDMOVES" 41 | ], 42 | "path_settings": { "avoid_traps": true, "avoid_dangerous_fields": true } 43 | }, 44 | { 45 | "id": "mon_secro_fleshmech", 46 | "copy-from": "mon_secro_fleshmech_unlink", 47 | "type": "MONSTER", 48 | "name": { "str": "SP Experimental Mech \"Flesh\"" }, 49 | "description": "This experimental mech type \"Flesh\" is the most recent (and last) mechsuit produced by the engineers of the Secronom Project. Very scarce and limited to military use only, it was designed to take on the main force of the battlefield thanks to its exotic yet nigh indestructible material, especially supplemented with a variety of gun morphs.", 50 | "speed": 60, 51 | "extend": { "flags": [ "RIDEABLE_MECH" ] } 52 | } 53 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/NPCs/Dialogues/secro_flesh_build_interior.txt: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "SECRO_FLESH_HIVEMIND_build_interior", 4 | "type": "talk_topic", 5 | "dynamic_line": { 6 | "and": [ 7 | "*taps you with a tendril, which has given you information of what it can build.\n", 8 | "\n*225 flesh\n> flesh bed\nA comfortable bio-organic bed.\n", 9 | "\n*175 flesh\n> floor residue\nA safe storage space.\n", 10 | "\n*450 flesh\n> residue\nA large storage space.\n", 11 | "\n*125 flesh\n> flesh rack\nDisplays placed items.\n", 12 | "\n*400 flesh\n> flesh container\nA storage space for liquids.\n", 13 | { 14 | "npc_has_trait": "SECRONOM_FLESH_BIO_spread3", 15 | "yes": "\n*40 flesh\n> bioluminescent wart\nA low, light-emitting furniture.\n" 16 | }, 17 | "\n- To start building, deploy the provided [MARK] item to your ideal location. That location must be inside the core." 18 | ] 19 | }, 20 | "responses": [ 21 | { 22 | "text": "[BUILD] flesh bed", 23 | "topic": "SECRO_FLESH_HIVEMIND_build_interior", 24 | "condition": { "u_has_items": { "item": "secro_flesh", "count": 225 } }, 25 | "effect": [ 26 | { "u_sell_item": "secro_flesh", "count": 225 }, 27 | { "npc_consume_item": "secro_flesh", "count": 225 }, 28 | { "u_spawn_item": "secro_flesh_camp_bed_mark" } 29 | ] 30 | }, 31 | { 32 | "text": "[BUILD] floor residue", 33 | "topic": "SECRO_FLESH_HIVEMIND_build_interior", 34 | "condition": { "u_has_items": { "item": "secro_flesh", "count": 175 } }, 35 | "effect": [ 36 | { "u_sell_item": "secro_flesh", "count": 175 }, 37 | { "npc_consume_item": "secro_flesh", "count": 175 }, 38 | { "u_spawn_item": "secro_flesh_camp_floorstorage_mark" } 39 | ] 40 | }, 41 | { 42 | "text": "[BUILD] residue", 43 | "topic": "SECRO_FLESH_HIVEMIND_build_interior", 44 | "condition": { "u_has_items": { "item": "secro_flesh", "count": 450 } }, 45 | "effect": [ 46 | { "u_sell_item": "secro_flesh", "count": 450 }, 47 | { "npc_consume_item": "secro_flesh", "count": 450 }, 48 | { "u_spawn_item": "secro_flesh_camp_storage_mark" } 49 | ] 50 | }, 51 | { 52 | "text": "[BUILD] flesh rack", 53 | "topic": "SECRO_FLESH_HIVEMIND_build_interior", 54 | "condition": { "u_has_items": { "item": "secro_flesh", "count": 125 } }, 55 | "effect": [ 56 | { "u_sell_item": "secro_flesh", "count": 125 }, 57 | { "npc_consume_item": "secro_flesh", "count": 125 }, 58 | { "u_spawn_item": "secro_flesh_camp_displaystorage_mark" } 59 | ] 60 | }, 61 | { 62 | "text": "[BUILD] flesh container", 63 | "topic": "SECRO_FLESH_HIVEMIND_build_interior", 64 | "condition": { "u_has_items": { "item": "secro_flesh", "count": 400 } }, 65 | "effect": [ 66 | { "u_sell_item": "secro_flesh", "count": 400 }, 67 | { "npc_consume_item": "secro_flesh", "count": 400 }, 68 | { "u_spawn_item": "secro_flesh_camp_liquidstorage_mark" } 69 | ] 70 | }, 71 | { 72 | "text": "[BUILD] bioluminescent wart", 73 | "topic": "SECRO_FLESH_HIVEMIND_build_interior", 74 | "condition": { 75 | "and": [ { "npc_has_trait": "SECRONOM_FLESH_BIO_spread3" }, { "u_has_items": { "item": "secro_flesh", "count": 40 } } ] 76 | }, 77 | "effect": [ 78 | { "u_sell_item": "secro_flesh", "count": 40 }, 79 | { "npc_consume_item": "secro_flesh", "count": 40 }, 80 | { "u_spawn_item": "secro_flesh_camp_light_mark" } 81 | ] 82 | }, 83 | { "text": "Later.", "topic": "SECRO_FLESH_HIVEMIND_build" } 84 | ] 85 | } 86 | ] 87 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/NPCs/Dialogues/secro_miliguard.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "talk_topic", 4 | "id": "TALK_SECRO_MILIGUARD_main", 5 | "dynamic_line": "What do you want?", 6 | "responses": [ 7 | { "text": "What is this place?", "topic": "TALK_SECRO_MILIGUARD_where" }, 8 | { "text": "What are you doing?", "topic": "TALK_SECRO_MILIGUARD_job" }, 9 | { "text": "Who are you?", "topic": "TALK_SECRO_MILIGUARD_me" }, 10 | { "text": "Bye.", "topic": "TALK_DONE" } 11 | ] 12 | }, 13 | { 14 | "type": "talk_topic", 15 | "id": "TALK_SECRO_MILIGUARD_where", 16 | "dynamic_line": "Currently this building is military outpost. M1 might give you more specific information.", 17 | "responses": [ { "text": "Okay\u2026", "topic": "TALK_SECRO_MILIGUARD_main" } ] 18 | }, 19 | { 20 | "type": "talk_topic", 21 | "id": "TALK_SECRO_MILIGUARD_job", 22 | "dynamic_line": "I just clean here. Go talk with M1.", 23 | "responses": [ { "text": "Will do.", "topic": "TALK_SECRO_MILIGUARD_main" }, { "text": "Will do. Bye.", "topic": "TALK_DONE" } ] 24 | }, 25 | { 26 | "type": "talk_topic", 27 | "id": "TALK_SECRO_MILIGUARD_me", 28 | "dynamic_line": "I'm security of this area. I serving under Sgt M1.", 29 | "responses": [ { "text": "I see.", "topic": "TALK_SECRO_MILIGUARD_main" } ] 30 | } 31 | ] 32 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/NPCs/secro_mission_items.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "GENERIC", 4 | "id": "secro_sample_shifter", 5 | "category": "spare_parts", 6 | "material": [ "secro_null" ], 7 | "symbol": ";", 8 | "color": "dark_gray", 9 | "name": { "str": "desaturated resin" }, 10 | "description": "A chunk of thick, charred resin.", 11 | "price": "1 USD", 12 | "price_postapoc": "1 USD", 13 | "weight": "200 g", 14 | "volume": "40 ml" 15 | }, 16 | { 17 | "id": "secro_missionkey_sampler_enigma", 18 | "type": "TOOL", 19 | "name": { "str": "SS sampler kit - enigma" }, 20 | "description": "A small, chip-like device with a built-in scanner that checks for \"enigma\" specimens. Activate to scan and obtain a sample from the target.", 21 | "weight": "990 g", 22 | "volume": "320 ml", 23 | "price": "5 USD", 24 | "material": [ "steel", "plastic" ], 25 | "symbol": ":", 26 | "color": "white", 27 | "ammo": [ "battery" ], 28 | "charges_per_use": 50, 29 | "use_action": { "type": "cast_spell", "spell_id": "secro_missionkey_sampler_enigma_target", "no_fail": true, "level": 0 }, 30 | "flags": [ "NONCONDUCTIVE" ], 31 | "pocket_data": [ 32 | { 33 | "magazine_well": "250 ml", 34 | "pocket_type": "MAGAZINE_WELL", 35 | "holster": true, 36 | "max_contains_volume": "20 L", 37 | "max_contains_weight": "20 kg", 38 | "item_restriction": [ 39 | "light_minus_disposable_cell", 40 | "light_disposable_cell", 41 | "light_minus_battery_cell", 42 | "light_battery_cell", 43 | "light_plus_battery_cell", 44 | "light_atomic_battery_cell", 45 | "light_minus_atomic_battery_cell" 46 | ] 47 | } 48 | ] 49 | }, 50 | { 51 | "type": "SPELL", 52 | "id": "secro_missionkey_sampler_enigma_target", 53 | "name": { "str": "a spell" }, 54 | "description": "Target spell casted by an item. If you're seeing this, then read this one instead:\n'Caster locks its line of sight onto the target, then casts the Spell(s).'", 55 | "message": "The sampler kit starts to scan...\nThe sampler kit shreds the shapeshifter!", 56 | "extra_effects": [ { "id": "secro_missionkey_sampler_enigma_shifter" } ], 57 | "flags": [ "SILENT", "NO_PROJECTILE" ], 58 | "valid_targets": [ "ally", "hostile" ], 59 | "targeted_monster_ids": [ "mon_shifter" ], 60 | "effect": "attack", 61 | "shape": "blast", 62 | "effect_str": "secro_magic_target", 63 | "min_range": 1, 64 | "max_range": 1, 65 | "min_duration": 1, 66 | "max_duration": 1 67 | }, 68 | { 69 | "id": "secro_missionkey_sampler_enigma_shifter", 70 | "type": "SPELL", 71 | "name": { "str": "Scan" }, 72 | "description": "Spell casted by an item. If you're seeing this, then read this one instead:\n'Item scans the target...'", 73 | "flags": [ "SILENT", "RANDOM_DAMAGE", "NO_PROJECTILE" ], 74 | "valid_targets": [ "hostile" ], 75 | "targeted_monster_ids": [ "mon_shifter" ], 76 | "extra_effects": [ { "id": "secro_missionkey_sampler_enigma_shifter_yeah" } ], 77 | "effect": "attack", 78 | "shape": "blast", 79 | "min_damage": 2, 80 | "max_damage": 5 81 | }, 82 | { 83 | "type": "SPELL", 84 | "id": "secro_missionkey_sampler_enigma_shifter_yeah", 85 | "name": { "str": "Collect" }, 86 | "description": "Spell casted by an item. If you're seeing this, then read this one instead:\n'Provides a desaturated resin.'", 87 | "flags": [ "SILENT", "PERMANENT", "NO_PROJECTILE" ], 88 | "valid_targets": [ "self" ], 89 | "min_damage": 1, 90 | "max_damage": 1, 91 | "min_range": 1, 92 | "max_range": 1, 93 | "effect": "spawn_item", 94 | "shape": "blast", 95 | "effect_str": "secro_sample_shifter" 96 | } 97 | ] 98 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/NPCs/secro_npcs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "npc", 4 | "id": "secronom_scientist", 5 | "//": "A secronom scientist. They are responsible for the augmented versions of zeds. Also a semi-mechanic NPC.", 6 | "name_suffix": "scientist", 7 | "class": "NC_SECRO_SCIENTIST", 8 | "attitude": 0, 9 | "mission": 7, 10 | "chat": "TALK_DONE", 11 | "faction": "secro_faction" 12 | }, 13 | { 14 | "type": "npc", 15 | "id": "secronom_researcher", 16 | "//": "Unlike scientists, this one's merely for additional info; nerdest of the nerds.", 17 | "name_suffix": "researcher", 18 | "class": "NC_SECRO_SCIENTIST", 19 | "attitude": 0, 20 | "mission": 7, 21 | "chat": "TALK_DONE", 22 | "faction": "secro_faction" 23 | }, 24 | { 25 | "type": "npc", 26 | "id": "secronom_guard", 27 | "//": "Lab's strong and tanky melee/range fighter.", 28 | "name_suffix": "guard", 29 | "class": "NC_SOLDIER", 30 | "attitude": 0, 31 | "mission": 7, 32 | "chat": "TALK_DONE", 33 | "faction": "secro_faction" 34 | }, 35 | { 36 | "type": "npc", 37 | "id": "secronom_flesh", 38 | "//": "NPC that is built using a flesh vessel.", 39 | "name_unique": "\"The Flesh\"", 40 | "class": "NC_SECRO_FLESH", 41 | "attitude": 0, 42 | "mission": 7, 43 | "chat": "SECRO_FLESH_HIVEMIND_main", 44 | "faction": "secro_flesh" 45 | }, 46 | { 47 | "type": "npc", 48 | "id": "secronom_flesh_spawn_start", 49 | "//": "Hivemind spawn, for building the hivemind.", 50 | "name_unique": "\"Hivemind\"", 51 | "class": "NC_SECRO_FLESH_START", 52 | "attitude": 0, 53 | "mission": 7, 54 | "chat": "SECRO_FLESH_HIVEMIND_START_main", 55 | "faction": "secro_flesh" 56 | }, 57 | { 58 | "type": "npc", 59 | "id": "secronom_flesh_spawn_splicer", 60 | "//": "Hivemind spawn, bio-organic splicer.", 61 | "name_unique": "\"Bio-organic Splicer\"", 62 | "class": "NC_SECRO_FLESH_SPAWN", 63 | "attitude": 0, 64 | "mission": 7, 65 | "chat": "SECRO_FLESH_SPAWN_SPLICER_main", 66 | "faction": "secro_flesh" 67 | }, 68 | { 69 | "type": "npc", 70 | "id": "secronom_flesh_spawn_modifier", 71 | "//": "Hivemind spawn, bio-organic modifier.", 72 | "name_unique": "\"Bio-organic Modifier\"", 73 | "class": "NC_SECRO_FLESH_SPAWN", 74 | "attitude": 0, 75 | "mission": 7, 76 | "chat": "SECRO_FLESH_SPAWN_MODIFIER_main", 77 | "faction": "secro_flesh" 78 | }, 79 | { 80 | "type": "npc", 81 | "id": "secronom_flesh_spawn_hatchery", 82 | "//": "Hivemind spawn, bio-organic hatchery.", 83 | "name_unique": "\"Bio-organic Hatchery\"", 84 | "class": "NC_SECRO_FLESH_SPAWN", 85 | "attitude": 0, 86 | "mission": 7, 87 | "chat": "SECRO_FLESH_SPAWN_HATCHERY_main", 88 | "faction": "secro_flesh" 89 | }, 90 | { 91 | "type": "npc", 92 | "id": "secronom_flesh_spawn_artifice", 93 | "//": "Hivemind spawn, bio-organic artifice aka crafter.", 94 | "name_unique": "\"Bio-organic Artifice\"", 95 | "class": "NC_SECRO_FLESH_SPAWN", 96 | "attitude": 0, 97 | "mission": 7, 98 | "chat": "SECRO_FLESH_SPAWN_ARTIFICE_main", 99 | "faction": "secro_flesh" 100 | }, 101 | { 102 | "type": "npc", 103 | "id": "secronom_scientist1", 104 | "name_suffix": "scientist", 105 | "class": "NC_SECRO_SCIENTIST", 106 | "attitude": 0, 107 | "mission": 7, 108 | "chat": "TALK_SECRO_SCIENTIST1_main", 109 | "faction": "secro_faction" 110 | }, 111 | { 112 | "type": "npc", 113 | "id": "secronom_fleshvessel", 114 | "name_suffix": "experimental", 115 | "class": "NC_SECRO_FLESHVESSEL", 116 | "attitude": 0, 117 | "mission": 7, 118 | "chat": "TALK_STRANGER_FRIENDLY", 119 | "faction": "secro_faction" 120 | } 121 | ] 122 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_components.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "comp_secro_power_armor_feed_flesh", 4 | "type": "requirement", 5 | "components": [ [ [ "secro_flesh", 25 ] ] ] 6 | }, 7 | { 8 | "id": "comp_secro_power_armor_flesh_morphed_fite_blades_give", 9 | "type": "requirement", 10 | "components": [ [ [ "secro_flesh", 10 ] ] ] 11 | }, 12 | { 13 | "id": "comp_secro_power_armor_flesh_morphed_fite_tentacles_give", 14 | "type": "requirement", 15 | "components": [ [ [ "secro_flesh", 10 ] ] ] 16 | }, 17 | { 18 | "id": "comp_secro_power_armor_flesh_morphed_fite_fleshpound_give", 19 | "type": "requirement", 20 | "components": [ [ [ "secro_flesh", 20 ] ] ] 21 | }, 22 | { 23 | "id": "comp_secro_power_armor_flesh_morphed_fite_jawarms_give", 24 | "type": "requirement", 25 | "components": [ [ [ "secro_flesh", 15 ] ] ] 26 | }, 27 | { 28 | "id": "comp_secro_power_armor_flesh_morphed_gun_spit_give", 29 | "type": "requirement", 30 | "components": [ [ [ "secro_flesh", 10 ] ] ] 31 | }, 32 | { 33 | "id": "comp_secro_power_armor_flesh_morphed_gun_bonelance_give", 34 | "type": "requirement", 35 | "components": [ [ [ "secro_flesh", 15 ] ] ] 36 | }, 37 | { 38 | "id": "comp_secro_power_armor_flesh_morphed_jugg_bonespikes_give", 39 | "type": "requirement", 40 | "components": [ [ [ "secro_flesh", 15 ] ] ] 41 | }, 42 | { 43 | "id": "comp_secro_power_armor_flesh_morphed_coward_powerlegs_give", 44 | "type": "requirement", 45 | "components": [ [ [ "secro_flesh", 10 ] ] ] 46 | } 47 | ] 48 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_eoc.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "effect_on_condition", 4 | "id": "eoc_secro_pafv_fleshconsumption_death", 5 | "eoc_type": "AVATAR_DEATH", 6 | "condition": { "and": [ { "u_has_trait": "SECRO_WEARING_FLESH_VESSEL" }, { "u_has_effect": "secro_power_armor_flesh_devouring_note" } ] }, 7 | "effect": [ 8 | { "u_message": "Your body has succumbed to the flesh.", "type": "bad" }, 9 | { "u_transform_radius": 4, "ter_furn_transform": "flesh_spread" }, 10 | { "u_transform_radius": 3, "ter_furn_transform": "flesh_spread" }, 11 | { "u_transform_radius": 2, "ter_furn_transform": "flesh_spread" }, 12 | { "u_transform_radius": 1, "ter_furn_transform": "flesh_spread" }, 13 | { "u_transform_radius": 1, "ter_furn_transform": "flesh_spread" } 14 | ] 15 | } 16 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_flags.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "secro_flesh_reinforced_coat", 4 | "type": "json_flag", 5 | "info": "This gear has been coated in bio-organic mesh, increasing its protection." 6 | } 7 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_ma_tec_effects.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_ma_tec_eoc.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_ma_tec_items.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_ma_tec_magic.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "tec_secro_morph_fleshpound_quake_push", 4 | "type": "SPELL", 5 | "name": { "str": "Quake" }, 6 | "description": "The technique pushes the surrounding enemies.", 7 | "effect": "area_push", 8 | "shape": "blast", 9 | "flags": [ "SILENT", "NO_PROJECTILE" ], 10 | "valid_targets": [ "hostile", "ground" ], 11 | "min_range": 2, 12 | "max_range": 2, 13 | "min_aoe": 3, 14 | "max_aoe": 3 15 | } 16 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_mutation_dreams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "dream", 4 | "messages": [ "You had an odd vision of a mutant.", "You dream of sprouting tentacles." ], 5 | "category": "SECRONOM_EX", 6 | "strength": 1 7 | }, 8 | { 9 | "type": "dream", 10 | "messages": [ "You dream of a rather strange form of yourself.", "You dream of an isolated facility." ], 11 | "category": "SECRONOM_EX", 12 | "strength": 2 13 | }, 14 | { 15 | "type": "dream", 16 | "messages": [ "M O R E ! M O -", "You are horrified of becoming a loathsome abomination." ], 17 | "category": "SECRONOM_EX", 18 | "strength": 3 19 | }, 20 | { 21 | "type": "dream", 22 | "messages": [ "You imagine yourself as a rampaging monster.", "Something's still missing...", "F L E S H ! F U S E ! F L -" ], 23 | "category": "SECRONOM_EX", 24 | "strength": 4 25 | } 26 | ] 27 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_mutation_effects.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "effect_type", 4 | "id": "SECRO_LICKER_DEF_THRESHOLD_effbashatk_slow", 5 | "name": [ "Licked" ], 6 | "desc": [ "You were licked by a gruesome tongue!" ], 7 | "rating": "bad", 8 | "show_in_info": true, 9 | "base_mods": { "speed_mod": [ -35 ] } 10 | }, 11 | { 12 | "type": "effect_type", 13 | "id": "SECRONOM_FLESH_STARTER_melt", 14 | "rating": "bad", 15 | "base_mods": { "hurt_min": [ 10 ], "hurt_tick": [ 100 ], "pain_min": [ 10 ], "pain_chance": [ 100 ] } 16 | }, 17 | { 18 | "type": "effect_type", 19 | "id": "SECRONOM_FLESH_BIO_mobile_unstable", 20 | "rating": "bad", 21 | "base_mods": { "hurt_min": [ 50 ], "hurt_tick": [ 100 ], "pain_min": [ 10 ], "pain_chance": [ 100 ] } 22 | } 23 | ] 24 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_mutation_items.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "SECRO_TENDRIL_TENT_THRESHOLD_weapon", 4 | "type": "ARMOR", 5 | "symbol": "?", 6 | "color": "red", 7 | "name": { "str": "tendril whip" }, 8 | "description": "Your tendril in its swollen, fleshy form, throbbing at unstable rate. You feel its power flowing through you.\nStrength: +2\nBlock: +2\nAttack speed: -5%", 9 | "weight": "3328 g", 10 | "volume": "1500 ml", 11 | "price": "0 cent", 12 | "material": [ "flesh" ], 13 | "flags": [ "REACH_ATTACK", "UNBREAKABLE_MELEE", "NO_DROP", "NO_UNWIELD" ], 14 | "armor": [ { "encumbrance": 5, "coverage": 100, "covers": [ "hand_r" ] } ], 15 | "melee_damage": { "bash": 12 }, 16 | "relic_data": { 17 | "passive_effects": [ 18 | { 19 | "has": "WORN", 20 | "condition": "ALWAYS", 21 | "values": [ 22 | { "value": "STRENGTH", "add": 1, "//": "Multiply by 2, and we'll get the result." }, 23 | { "value": "BONUS_BLOCK", "add": 1 }, 24 | { "value": "ATTACK_SPEED", "multiply": -0.025 } 25 | ] 26 | } 27 | ] 28 | }, 29 | "category": "secro_cores" 30 | }, 31 | { 32 | "id": "SECRO_BLADE_SHARP_THRESHOLD_item", 33 | "type": "GENERIC", 34 | "category": "secro_cores", 35 | "name": { "str": "blade core" }, 36 | "description": "This core provides temporary passive effects. Stacks with other cores.\nAttack speed: +3%\nDamage: +2%", 37 | "weight": "3 g", 38 | "volume": "3 ml", 39 | "price": "0 cent", 40 | "material": [ "flesh" ], 41 | "symbol": "Q", 42 | "color": "red", 43 | "relic_data": { 44 | "passive_effects": [ 45 | { 46 | "condition": "ALWAYS", 47 | "values": [ 48 | { "value": "ATTACK_SPEED", "multiply": 0.015 }, 49 | { "value": "ITEM_DAMAGE_CUT", "multiply": 0.003 }, 50 | { "value": "ITEM_DAMAGE_STAB", "multiply": 0.003 }, 51 | { "value": "ITEM_DAMAGE_BASH", "multiply": 0.003 } 52 | ] 53 | } 54 | ] 55 | }, 56 | "flags": [ "NO_DROP" ] 57 | }, 58 | { 59 | "id": "SECRO_BLADE_SERRATED_THRESHOLD_item", 60 | "type": "GENERIC", 61 | "category": "secro_cores", 62 | "name": { "str": "blade core" }, 63 | "description": "This core provides temporary passive effects. Stacks with other cores.\nAttack speed: -3%\nSpeed: -2%\nDodge: -2\nBlock: 2", 64 | "weight": "3 g", 65 | "volume": "3 ml", 66 | "price": "0 cent", 67 | "material": [ "flesh" ], 68 | "symbol": "Q", 69 | "color": "red", 70 | "relic_data": { 71 | "passive_effects": [ 72 | { 73 | "condition": "ALWAYS", 74 | "values": [ 75 | { "value": "SPEED", "multiply": -0.01 }, 76 | { "value": "ATTACK_SPEED", "multiply": -0.015 }, 77 | { "value": "BONUS_DODGE", "add": -1 }, 78 | { "value": "BONUS_BLOCK", "add": 1 } 79 | ] 80 | } 81 | ] 82 | }, 83 | "flags": [ "NO_DROP" ] 84 | } 85 | ] 86 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_prof.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "profession", 4 | "id": "secro_prof_vesselrecruit", 5 | "name": "Vessel Recruit", 6 | "description": "Equipment on this profession is in WIP state. Use at your own risk!\nYou are a military recruit tasked to perform an alpha field test on the bio-organic power armor - the flesh vessel - installed with necessary bionics. After the Cataclysm struck, your connection to the team were lost.", 7 | "points": 6, 8 | "proficiencies": [ "prof_gunsmithing_basic" ], 9 | "traits": [ "SECRO_WEARING_FLESH_VESSEL" ], 10 | "skills": [ 11 | { "level": 2, "name": "gun" }, 12 | { "level": 1, "name": "rifle" }, 13 | { "level": 2, "name": "melee" }, 14 | { "level": 1, "name": "stabbing" }, 15 | { "level": 1, "name": "dodge" } 16 | ], 17 | "CBMs": [ "bio_secro_fv", "bio_secro_fv_core", "bio_ups" ], 18 | "items": { 19 | "both": { 20 | "items": [ "secro_power_armor_flesh", "secro_recipe_flesh_field", "secro_flesh_backpack" ], 21 | "entries": [ 22 | { "item": "secro_power_armor_flesh_bor", "ammo-item": "secro_flesh", "charges": 100 }, 23 | { "item": "secro_flesh", "count": 4 }, 24 | { "group": "charged_cell_phone" } 25 | ] 26 | } 27 | }, 28 | "flags": [ "SCEN_ONLY" ] 29 | }, 30 | { 31 | "type": "profession", 32 | "id": "secro_prof_vesselrecruit_army", 33 | "copy-from": "secro_prof_vesselrecruit", 34 | "description": "Equipment on this profession is in WIP state. Use at your own risk!\nYou've been selected to operate the bio-organic exoskeleton \"flesh vessel\" and were supposed to receive a special training after that as just in the right time, the base were already overwhelmed by the undead. As far as you can tell, military command abandoned you in this hellhole when you missed the emergency evac." 35 | }, 36 | { 37 | "type": "profession", 38 | "id": "secro_prof_vesselelite_army", 39 | "name": "Vessel Elite", 40 | "description": "Equipment on this profession is in WIP state. Use at your own risk!\nYou are one of the finest super soldiers ever trained and specialized to harness the experimental exoskeleton \"flesh vessel\". Unfortunately, the outbreak has already took place to the point escaping is impossible. As far as you can tell, military command abandoned you in this hellhole when you missed the emergency evac", 41 | "points": 10, 42 | "proficiencies": [ "prof_gunsmithing_basic", "prof_traps", "prof_disarming" ], 43 | "traits": [ "SECRO_WEARING_FLESH_VESSEL" ], 44 | "skills": [ 45 | { "level": 6, "name": "gun" }, 46 | { "level": 4, "name": "smg" }, 47 | { "level": 4, "name": "rifle" }, 48 | { "level": 4, "name": "cutting" }, 49 | { "level": 6, "name": "melee" }, 50 | { "level": 3, "name": "dodge" }, 51 | { "level": 3, "name": "traps" }, 52 | { "level": 4, "name": "firstaid" }, 53 | { "level": 1, "name": "swimming" }, 54 | { "level": 4, "name": "survival" }, 55 | { "level": 4, "name": "secro_flesh_combat" }, 56 | { "level": 2, "name": "secro_flesh_craft" } 57 | ], 58 | "CBMs": [ "bio_secro_fv", "bio_secro_fv_core", "bio_ups" ], 59 | "items": { 60 | "both": { 61 | "items": [ "secro_power_armor_flesh", "secro_recipe_flesh_field", "secro_flesh_backpack" ], 62 | "entries": [ 63 | { "item": "secro_power_armor_flesh_bor", "ammo-item": "secro_flesh", "charges": 250 }, 64 | { "item": "secro_flesh", "count": 6 }, 65 | { "group": "charged_cell_phone" } 66 | ] 67 | } 68 | }, 69 | "flags": [ "SCEN_ONLY" ] 70 | } 71 | ] 72 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_proficiency.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "proficiency", 4 | "id": "secro_prof_fleshcraft_core_basic", 5 | "name": { "str": "Basic Flesh Weaving" }, 6 | "description": "You know how to turn flesh into something familiar.", 7 | "can_learn": true, 8 | "category": "prof_chem", 9 | "default_time_multiplier": 1.25, 10 | "default_skill_penalty": 1.25, 11 | "time_to_learn": "8 h" 12 | }, 13 | { 14 | "type": "proficiency", 15 | "id": "secro_prof_fleshcraft_core", 16 | "name": { "str": "Flesh Weaving" }, 17 | "description": "You've learned how to weave flesh into much more intricate object.", 18 | "can_learn": true, 19 | "category": "prof_chem", 20 | "default_time_multiplier": 1.75, 21 | "default_skill_penalty": 1.5, 22 | "time_to_learn": "16 h", 23 | "required_proficiencies": [ "secro_prof_fleshcraft_core_basic" ] 24 | }, 25 | { 26 | "type": "proficiency", 27 | "id": "secro_prof_fleshcraft_core_adv", 28 | "name": { "str": "Advanced Flesh Weaving" }, 29 | "description": "Harnessing the full potential of flesh weaving.", 30 | "can_learn": true, 31 | "category": "prof_chem", 32 | "default_time_multiplier": 2.5, 33 | "default_skill_penalty": 2, 34 | "time_to_learn": "24 h", 35 | "required_proficiencies": [ "secro_prof_fleshcraft_core" ] 36 | }, 37 | { 38 | "type": "proficiency", 39 | "id": "secro_prof_fleshcraft_resource", 40 | "name": { "str": "Bio-organic Alteration" }, 41 | "description": "Converting the flesh into useful organic materials.", 42 | "can_learn": true, 43 | "category": "prof_chem", 44 | "default_time_multiplier": 1.5, 45 | "default_skill_penalty": 2, 46 | "time_to_learn": "10 h" 47 | } 48 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_recipe_practice.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "//": "Sadly the only way to increase bio-organic weapons skill.", 4 | "id": "secro_prac_bioweapon_beg", 5 | "type": "practice", 6 | "activity_level": "MODERATE_EXERCISE", 7 | "category": "CC_PRACTICE", 8 | "subcategory": "CSC_PRACTICE_MELEE", 9 | "name": "bio-organic weapons (beginner)", 10 | "description": "Practice close quarter combat against an imaginary opponent using any kind of melee armament.", 11 | "skill_used": "secro_flesh_combat", 12 | "time": "1 h", 13 | "practice_data": { "min_difficulty": 0, "max_difficulty": 2, "skill_limit": 3 }, 14 | "autolearn": [ [ "melee", 1 ] ], 15 | "tools": [ [ "secro_power_armor_flesh_morphed_fite_blades", "secro_power_armor_flesh_morphed_fite_tentacles", "secro_power_armor_flesh_morphed_fite_fleshpound", "secro_power_armor_flesh_morphed_fite_jawarms" ] ] 16 | }, 17 | { 18 | "id": "secro_prac_bioweapon_int", 19 | "type": "practice", 20 | "activity_level": "BRISK_EXERCISE", 21 | "category": "CC_PRACTICE", 22 | "subcategory": "CSC_PRACTICE_MELEE", 23 | "name": "bio-organic weapons (intermediate)", 24 | "description": "Practice advanced handling of melee armaments against an armored training dummy. You will need to make repairs to the dummy while you train.", 25 | "skill_used": "secro_flesh_combat", 26 | "skills_required": [ [ "secro_flesh_combat", 3 ] ], 27 | "time": "1 h", 28 | "practice_data": { "min_difficulty": 3, "max_difficulty": 5, "skill_limit": 5 }, 29 | "autolearn": [ [ "secro_flesh_combat", 3 ] ], 30 | "qualities": [ { "id": "HAMMER", "level": 2 } ], 31 | "tools": [ 32 | [ "secro_power_armor_flesh_morphed_fite_blades", "secro_power_armor_flesh_morphed_fite_tentacles", "secro_power_armor_flesh_morphed_fite_fleshpound", "secro_power_armor_flesh_morphed_fite_jawarms" ], 33 | [ "pseudo_training_dummy_heavy" ] 34 | ], 35 | "components": [ [ [ "duct_tape", 50 ] ], [ [ "scrap", 20 ] ] ] 36 | } 37 | ] -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_requirements.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "req_bio_secro_fv", 4 | "type": "requirement", 5 | "components": [ [ [ "secro_power_armor_flesh_check", 1 ] ] ] 6 | } 7 | ] 8 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_scen.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "scenario", 4 | "id": "overrun", 5 | "copy-from": "overrun", 6 | "extend": { "professions": [ "secro_prof_vesselrecruit_army", "secro_prof_vesselelite_army" ] } 7 | }, 8 | { 9 | "type": "scenario", 10 | "id": "secro_flesh_biome", 11 | "name": "Challenge - Crimson Horror", 12 | "points": -2, 13 | "description": "The pungent aroma of uncooked meat insults your nostrils as soon as your mind wakes. The ground seemingly pulses in a macabre rhythm and when opening your eyes, you're met with a horrible sight! The forest you once knew is covered in red, cyst-like growths. Thoughts race through your mind but one sticks out: \"How am I gonna get out of this mess?\"", 14 | "start_name": "Flesh Forest", 15 | "allowed_locs": [ "sloc_secro_fleshforest" ], 16 | "flags": [ "LONE_START" ] 17 | }, 18 | { 19 | "type": "scenario", 20 | "id": "secro_project", 21 | "name": "Secronom Project - Experimental", 22 | "points": 0, 23 | "description": "The Secronom team has tasked you to test their newfound technology. They have dispatched you into the wild and left you on your own. Being engulfed by \"it\" sure is comfy...", 24 | "start_name": "Wilderness", 25 | "allowed_locs": [ "sloc_field" ], 26 | "professions": [ "secro_prof_vesselrecruit" ], 27 | "missions": [ "MISSION_SECRO_FV_TUTORIAL" ], 28 | "flags": [ "LONE_START" ] 29 | } 30 | ] 31 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_skills.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "skill", 4 | "id": "secro_flesh_craft", 5 | "name": { "str": "flesh weaving" }, 6 | "description": "Your skill in manipulating the flesh. A higher skill allows for faster repair and crafting of flesh-based items.", 7 | "display_category": "display_crafting", 8 | "companion_survival_rank_factor": 1, 9 | "companion_skill_practice": [ { "skill": "menial", "weight": 1 } ], 10 | "sort_rank": 20001 11 | }, 12 | { 13 | "type": "skill", 14 | "id": "secro_flesh_combat", 15 | "name": { "str": "bio-organic weapons" }, 16 | "description": "Your efficiency over flesh weapons that your body morphs into.", 17 | "tags": [ "combat_skill" ], 18 | "time_to_attack": { "min_time": 50, "base_time": 200, "time_reduction_per_level": 25 }, 19 | "display_category": "display_melee", 20 | "companion_survival_rank_factor": 1, 21 | "companion_skill_practice": [ 22 | { "skill": "", "weight": 1 }, 23 | { "skill": "hunting", "weight": 1 }, 24 | { "skill": "combat", "weight": 1 } 25 | ], 26 | "sort_rank": 14001 27 | } 28 | ] 29 | -------------------------------------------------------------------------------- /secronom_lore_expansion/Modification Files/Others/secro_start_locs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "start_location", 4 | "id": "sloc_secro_fleshforest", 5 | "name": "Somewhere Fleshy", 6 | "terrain": [ "flesh_forest_near" ], 7 | "flags": [ "ALLOW_OUTSIDE" ] 8 | } 9 | ] 10 | -------------------------------------------------------------------------------- /secronom_lore_expansion/modinfo.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "MOD_INFO", 4 | "id": "secronom_lore_expansion", 5 | "name": "Secronom+ Lore Expansion", 6 | "authors": [ "Axema Vales", "SzQ" ], 7 | "maintainers": [ "Kenan" ], 8 | "description": "An expansion mod for secronom. (WIP)", 9 | "version": "Update 05/21/2023", 10 | "category": "content", 11 | "dependencies": [ "dda", "secronom" ] 12 | } 13 | ] 14 | 15 | -------------------------------------------------------------------------------- /secronom_lore_expansion/region_overlay.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "region_overlay", 4 | "regions": [ "all" ], 5 | "map_extras": { 6 | "field": { "extras": { "mx_secro_vesselexp_spawn": 0 } } 7 | } 8 | } 9 | ] 10 | --------------------------------------------------------------------------------