Ticket #3932: healerfinal.diff

File healerfinal.diff, 5.0 KB (added by causative, 8 years ago)

slight nonfunctional changes

  • binaries/data/mods/public/gui/credits/texts/programming.json

     
    3737            {"nick": "Caius", "name": "Lars Kemmann"},
    3838            {"nick": "Calefaction", "name": "Matt Holmes"},
    3939            {"nick": "Calvinh", "name": "Carl-Johan Höiby"},
     40            {"nick": "causative", "name": "Bart Parkis"},
    4041            {"name": "Cédric Houbart"},
    4142            {"nick": "Chakakhan", "name": "Kenny Long"},
    4243            {"nick": "Clockwork-Muse", "name": "Stephen A. Imhoff"},
  • binaries/data/mods/public/simulation/components/UnitAI.js

     
    54855485        this.PushOrderFront("Attack", { "target": targ, "force": true, "allowCapture": true });
    54865486        return true;
    54875487    }
     5488
     5489    // healers on a walk-and-fight order should heal injured units
     5490    if (this.IsHealer())
     5491        return this.FindNewHealTargets();
     5492   
    54885493    return false;
    54895494};
    54905495
  • binaries/data/mods/public/simulation/data/technologies/advanced_unit_bonus.json

     
    1414        {"value": "Attack/Melee/Hack",          "multiply": 1.2,  "affects": "Melee"   },
    1515        {"value": "Attack/Melee/Pierce",        "multiply": 1.2,  "affects": "Melee"   },
    1616        {"value": "Heal/Range",                 "add":      4,    "affects": "Healer"  },
     17        {"value": "Vision/Range",               "add":      4,    "affects": "Healer"  },
    1718        {"value": "Heal/HP",                    "add":      5,    "affects": "Healer"  }
    1819    ],
    1920    "affects": ["Advanced Unit", "Elite Unit"]
  • binaries/data/mods/public/simulation/data/technologies/elite_unit_bonus.json

     
    1414        {"value": "Attack/Melee/Hack",          "multiply": 1.2,  "affects": "Melee"   },
    1515        {"value": "Attack/Melee/Pierce",        "multiply": 1.2,  "affects": "Melee"   },
    1616        {"value": "Heal/Range",                 "add":      4,    "affects": "Healer"  },
     17        {"value": "Vision/Range",               "add":      4,    "affects": "Healer"  },
    1718        {"value": "Heal/HP",                    "add":      5,    "affects": "Healer"  }
    1819    ],
    1920    "affects": ["Elite Unit"]
  • binaries/data/mods/public/simulation/data/technologies/heal_range.json

     
    55        "spart": "Olympic Pantheon",
    66        "athen": "Olympic Pantheon"
    77    },
    8     "description": "Increases the healing range of all healers.",
     8    "description": "Increases the healing and vision range of all healers.",
    99    "cost": {"food": 500, "wood": 0, "stone": 0, "metal": 250},
    1010    "requirements": {"tech": "phase_town"},
    1111    "requirementsTooltip": "Unlocked in Town Phase.",
    1212    "icon": "healing_range.png",
    1313    "researchTime": 40,
    14     "tooltip": "Healers +8 Healing Range.",
    15     "modifications": [{"value": "Heal/Range", "add": 8.0}],
     14    "tooltip": "Healers +8 Healing and Vision Range.",
     15    "modifications": [{"value": "Heal/Range", "add": 8.0}, {"value": "Vision/Range", "add": 8.0}],
    1616    "affects": ["Healer"],
    1717    "soundComplete": "interface/alarm/alarm_upgradearmory.xml"
    1818}
  • binaries/data/mods/public/simulation/data/technologies/heal_range_2.json

     
    55        "spart": "Akadḗmeia",
    66        "athen": "Akadḗmeia"
    77    },
    8     "description": "Increases the healing range of all healers.",
     8    "description": "Increases the healing and vision range of all healers.",
    99    "cost": {"food": 1000, "wood": 0, "stone": 0, "metal": 500},
    1010    "supersedes": "heal_range",
    1111    "requirements": {"tech": "phase_city"},
     
    1212    "requirementsTooltip": "Unlocked in City Phase.",
    1313    "icon": "healing_range.png",
    1414    "researchTime": 40,
    15     "tooltip": "Healers +8 Healing Range.",
    16     "modifications": [{"value": "Heal/Range", "add": 8.0}],
     15    "tooltip": "Healers +8 Healing and Vision Range.",
     16    "modifications": [{"value": "Heal/Range", "add": 8.0}, {"value": "Vision/Range", "add": 8.0}],
    1717    "affects": ["Healer"],
    1818    "soundComplete": "interface/alarm/alarm_upgradearmory.xml"
    1919}