aliens

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Emong

Pages: [1]
1
This is an ultimately fairly simple mod that lets X-COM research how to create Alien-Human hybrids and then recruit them for use as soldiers. In order to get them you'll need to research Psi-Labs, Alien Reproduction (which means you'll need a mod that makes that obtainable), and a Sectoid Corpse (mostly for flavor).

Hybrids have slightly lower stats in most ways (lower starting stats and lower caps), but have much higher psionic potential and come with a built in psi-panic attack, the same way mind controlled aliens do. They also have a custom set of names, so they'll show up being called things like "Subject Delta" or "Experiment 003". Once you've unlocked them you'll also be able to research and manufacture a personal armor equivalent for them, and a slightly worse version of power armor for them.

I made this mod mostly for myself, but I decided to release it partially because Solarius Scorch asked if I would and partially because I don't think there are any other mods that add new soldier types quite like this available and if nothing else it shows how it's done pretty clearly.

Credit goes to Solarius Scorch for the Hybrid sprites I used for unarmored hybrids, and XOps's Xeno Operations mod for the sprites I used for armored ones, shadics for the sprites for motorized armor, and Zane for the motorized armor inventory sprite.

2
Hello! I've been poking around with a personal mod to add hybrid soldiers to X-COM and I've hit a bit of a snag. I have a new soldier type with a non-STR_NONE armor set as their basic armor, and I think I have all the armors set to be allowed based on soldier type. The issue is that whenever I get into any situation where the game needs to show what armor one of the hybrids has equipped, it crashes. I suspect that there's an issue with how I'm using the "units:" tag in the armor section, but I'm not 100% sure.

Here's the ruleset for reference:

Code: [Select]
soldiers:
  - type: STR_HYBRID_SOLDIER
    costBuy: 60000
    costSalary: 25000
    requires:
      - STR_HYBRID_BREEDING
    minStats:
      tu: 50
      stamina: 30
      health: 20
      bravery: 10
      reactions: 20
      firing: 30
      throwing: 50
      strength: 20
      psiStrength: 50
      psiSkill: 20
      melee: 20
    maxStats:
      tu: 60
      stamina: 50
      health: 30
      bravery: 60
      reactions: 40
      firing: 50
      throwing: 60
      strength: 25
      psiStrength: 120
      psiSkill: 16
      melee: 40
    statCaps:
      tu: 80
      stamina: 80
      health: 50
      bravery: 100
      reactions: 80
      firing: 100
      throwing: 100
      strength: 70
      psiStrength: 120
      psiSkill: 120
      melee: 80
    armor: STR_HYBRID_NONE_UC
    standHeight: 22
    kneelHeight: 14
    femaleFrequency: 50
    soldierNames:
      - HybridName/
    deathMale: [8]
    deathFemale: [8]
items:
  - type: STR_HYBRID_CORPSE
    weight: 22
    bigSprite: 800
    floorSprite: 800
    invWidth: 2
    invHeight: 3
    recover: false
  - type: STR_HYBRID_PSI_WEAPON
    hitSound: 36
    battleType: 9
    tuUse: 15
    flatRate: true
    recover: false
armor:
  - type: STR_HYBRID_NONE_UC
    spriteSheet: HYBRID.PCK
    spriteInv: inventory_HYBRID
    corpseBattle:
      - STR_HYBRID_CORPSE
    storeItem: STR_NONE
    frontArmor: 12
    sideArmor: 8
    rearArmor: 5
    underArmor: 2
    specialWeapon: STR_HYBRID_PSI_WEAPON
    damageModifier:
      - 1.0
      - 1.0
      - 1.0
      - 1.0
      - 1.0
      - 1.0
      - 1.0
      - 1.2
      - 1.6
      - 1.0
    loftempsSet: [ 3 ]
    units:
      - STR_HYBRID_SOLDIER
  - type: STR_NONE_UC
    units:
      - STR_SOLDIER
  - type: STR_PERSONAL_ARMOR_UC
    units:
      - STR_SOLDIER
  - type: STR_POWER_SUIT_UC
    units:
      - STR_SOLDIER
  - type: STR_FLYING_SUIT_UC
    units:
      - STR_SOLDIER
research:
  - name: STR_HYBRID_BREEDING
    cost: 1000
    points: 40
    listOrder: 4101
    dependencies:
      - STR_PSI_LAB
      - STR_ALIEN_REPRODUCTION
ufopaedia:
  - id: STR_HYBRID_BREEDING
    type_id: 8
    section: STR_ALIEN_LIFE_FORMS
    text: STR_HYBRID_BREEDING_UFOPEDIA
    requires:
      - STR_HYBRID_BREEDING
extraSprites:
  - type: BIGOBS.PCK
    files:
      800: Resources/HybridSoldiers/bigobs_HYBRID_CORPSE.gif
  - type: FLOOROB.PCK
    files:
      800: Resources/HybridSoldiers/FloorOb/floorob_HYBRID_CORPSE.gif
  - type: HYBRID.PCK
    subX: 32
    subY: 40
    width: 512
    height: 720
    files:
      0: Resources/HybridSoldiers/HYBRID.png
  - type: inventory_HYBRID
    singleImage: true
    files:
      0: Resources/HybridSoldiers/inventory_HYBRID.gif
extraStrings:
  - type: en-US
    strings:
      STR_HYRBID_SOLDIER: Hybrid Soldier
      STR_HYBRID_BREEDING: Hybrid Breeding Program
      STR_HYBRID_BREEDING_UFOPEDIA: With our knowledge of how the aliens are reproducing...
      STR_HYBRID_NONE: Alien Hybrid
      STR_HYBRID_NONE_UC: ALIEN HYBRID
      STR_HYBRID_PSI_WEAPON: Hybrid Psionics
      STR_HYBRID_CORPSE: Corpse

If anyone can tell me what's going on here I'd highly appreciate it.

Pages: [1]