Home » MODDING HQ 1.13 » v1.13 General Development Talk » Facility training bonuses?
Facility training bonuses?[message #321403] Thu, 06 June 2013 05:04 Go to next message
SharkD is currently offline SharkD

 
Messages:349
Registered:July 2003
Is there an up-to-date list of facilities and their training bonuses somewhere? The one here seems kind of outdated:

http://ja2v113ham.wikia.com/wiki/Customizable_Facilities

For instance the mine is not listed.

Report message to a moderator

Master Sergeant
Re: Facility training bonuses?[message #321414] Thu, 06 June 2013 15:35 Go to previous messageGo to next message
Sam Hotte

 
Messages:1960
Registered:March 2009
Location: Middle of Germany
It's said in the HAM wiki: FacilityTypes.XML

Report message to a moderator

Sergeant Major
Re: Facility training bonuses?[message #321420] Thu, 06 June 2013 19:47 Go to previous message
Flugente

 
Messages:3499
Registered:April 2009
Location: Germany
Well no. That wiki is outdated, which is his point. To my knowledge there's no list anywhere except the xml, which does not show everything. Reading the code is the only sure way.

This might be helpful:
enum
{
	// Enumerate the different assignments that a facility can emulate.
	FAC_AMBIENT = 0,
	FAC_STAFF,
	FAC_FOOD,
	FAC_REST,
	FAC_REPAIR_ITEMS,
	FAC_REPAIR_VEHICLE,
	FAC_REPAIR_ROBOT,
	FAC_DOCTOR,
	FAC_PATIENT,
	FAC_PRACTICE_STRENGTH,
	FAC_PRACTICE_DEXTERITY,
	FAC_PRACTICE_AGILITY,
	FAC_PRACTICE_HEALTH,
	FAC_PRACTICE_MARKSMANSHIP,
	FAC_PRACTICE_MEDICAL,
	FAC_PRACTICE_MECHANICAL,
	FAC_PRACTICE_LEADERSHIP,
	FAC_PRACTICE_EXPLOSIVES,
	FAC_STUDENT_STRENGTH,
	FAC_STUDENT_DEXTERITY,
	FAC_STUDENT_AGILITY,
	FAC_STUDENT_HEALTH,
	FAC_STUDENT_MARKSMANSHIP,
	FAC_STUDENT_MEDICAL,
	FAC_STUDENT_MECHANICAL,
	FAC_STUDENT_LEADERSHIP,
	FAC_STUDENT_EXPLOSIVES,
	FAC_TRAINER_STRENGTH,
	FAC_TRAINER_DEXTERITY,
	FAC_TRAINER_AGILITY,
	FAC_TRAINER_HEALTH,
	FAC_TRAINER_MARKSMANSHIP,
	FAC_TRAINER_MEDICAL,
	FAC_TRAINER_MECHANICAL,
	FAC_TRAINER_LEADERSHIP,
	FAC_TRAINER_EXPLOSIVES,	
	FAC_INTERROGATE_PRISONERS,
	NUM_FACILITY_ASSIGNMENTS,
};


// Enumerated list of risk types
enum
{
	RISK_STRENGTH = 0,
	RISK_HEALTH,
	RISK_AGILITY,
	RISK_DEXTERITY,
	RISK_WISDOM,
	RISK_MARKSMANSHIP,
	RISK_LEADERSHIP,
	RISK_EXPLOSIVES,
	RISK_MECHANICAL,
	RISK_MEDICAL,

	RISK_INJURY,
	RISK_MORALE,
	RISK_FATIGUE,
	RISK_DRUNK,

	RISK_LOYALTY_LOCAL,
	RISK_LOYALTY_GLOBAL,

	NUM_RISKS,
};

Report message to a moderator

Captain

Previous Topic: Trainer/student
Next Topic: Squad Size (4870)
Goto Forum:
  


Current Time: Wed Jun 10 23:39:28 GMT+3 2026

Total time taken to generate the page: 0.00571 seconds