Mi2dRPGamEng/resources/defs/species.json

138 lines
4.2 KiB
JSON

{
"human": {
"name": "Human",
"genders": ["male", "female", "nonbinary"],
"default_body_parts": [
"human_head",
"human_torso",
"human_left_arm",
"human_right_arm",
"human_left_leg",
"human_right_leg"
],
"default_organs": ["human_heart", "human_lungs", "human_liver", "human_kidneys", "human_brain"],
"body_type": "biped",
"abilities": [
{ "id": "leap", "name": "Leap", "required_slots": ["left_leg", "right_leg"] },
{ "id": "melee_attack", "name": "Melee Attack", "required_slots": ["right_arm"] },
{ "id": "ranged_attack", "name": "Ranged Attack", "required_slots": ["right_arm"] },
{ "id": "time_warp_sphere", "name": "Time Warp Sphere", "required_slots": ["head"] }
],
"blood_danger_threshold": 50.0,
"blood_critical_threshold": 25.0,
"health_item_compatibility": []
},
"reptilian_quad": {
"name": "Reptilian",
"genders": ["none"],
"default_body_parts": [
"reptilian_head",
"reptilian_torso",
"reptilian_left_arm",
"reptilian_right_arm",
"reptilian_left_arm_2",
"reptilian_right_arm_2",
"reptilian_left_leg",
"reptilian_right_leg"
],
"default_organs": [
"reptilian_heart",
"reptilian_lung",
"reptilian_liver",
"reptilian_venom_gland",
"reptilian_brain"
],
"body_type": "biped",
"abilities": [
{ "id": "leap", "name": "Leap", "required_slots": ["left_leg", "right_leg"] },
{ "id": "melee_attack", "name": "Melee Attack", "required_slots": ["right_arm"] },
{ "id": "ranged_attack", "name": "Ranged Attack", "required_slots": ["right_arm"] }
],
"blood_danger_threshold": 45.0,
"blood_critical_threshold": 20.0,
"health_item_compatibility": []
},
"alien_tri": {
"name": "Zenari",
"genders": ["alpha", "beta", "gamma"],
"default_body_parts": [
"alien_head",
"alien_torso",
"alien_left_arm",
"alien_right_arm",
"alien_left_leg",
"alien_right_leg"
],
"default_organs": [
"zenari_cardial_node",
"zenari_respirator",
"zenari_metabolizer",
"zenari_filtration_organ",
"zenari_cortex"
],
"body_type": "biped",
"abilities": [
{ "id": "leap", "name": "Leap", "required_slots": ["left_leg", "right_leg"] },
{ "id": "melee_attack", "name": "Melee Attack", "required_slots": ["right_arm"] },
{ "id": "ranged_attack", "name": "Ranged Attack", "required_slots": ["right_arm"] },
{ "id": "time_warp_sphere", "name": "Time Warp Sphere", "required_slots": ["head"] }
],
"blood_danger_threshold": 55.0,
"blood_critical_threshold": 30.0,
"health_item_compatibility": []
},
"bot": {
"name": "Bot",
"genders": ["none"],
"default_body_parts": [
"bot_head",
"bot_torso",
"bot_left_arm",
"bot_right_arm",
"bot_left_leg",
"bot_right_leg"
],
"default_organs": [
"bot_cpu",
"bot_npu",
"bot_power_cell",
"bot_hydraulic_fluid_bladder",
"bot_cooling_fan"
],
"body_type": "biped",
"abilities": [
{ "id": "leap", "name": "Leap", "required_slots": ["left_leg", "right_leg"] },
{ "id": "melee_attack", "name": "Melee Attack", "required_slots": ["right_arm"] },
{ "id": "ranged_attack", "name": "Ranged Attack", "required_slots": ["right_arm"] }
],
"blood_danger_threshold": 0.0,
"blood_critical_threshold": 0.0,
"health_item_compatibility": []
},
"dog": {
"name": "Dog",
"genders": ["male", "female"],
"default_body_parts": [
"dog_head",
"dog_torso",
"dog_front_left_leg",
"dog_front_right_leg",
"dog_back_left_leg",
"dog_back_right_leg"
],
"default_organs": ["dog_heart", "dog_lungs", "dog_liver", "dog_kidneys", "dog_brain"],
"body_type": "quadruped",
"abilities": [
{
"id": "leap",
"name": "Leap",
"required_slots": ["front_left_leg", "front_right_leg", "back_left_leg", "back_right_leg"]
},
{ "id": "melee_attack", "name": "Bite", "required_slots": ["head"] }
],
"blood_danger_threshold": 50.0,
"blood_critical_threshold": 25.0,
"health_item_compatibility": []
}
}