Skip to content

Instantly share code, notes, and snippets.

@Tickthokk
Created September 8, 2013 20:41
Show Gist options
  • Save Tickthokk/6488224 to your computer and use it in GitHub Desktop.
Save Tickthokk/6488224 to your computer and use it in GitHub Desktop.
FFXIV ARR - What class is interested in what skill?
// A list of all statistics, grouped by who benefits
$benefactors = array(
'CRP,BSM,ARM,GSM,LTW,WVR,ALC,CUL' => array(
'Control',
'CP',
'Craftsmanship',
),
'MIN,BTN,FSH' => array(
'Gathering',
'GP',
'Perception',
),
// All Battle Disciples
'GLA,MRD,LNC,PGL,ARC,CNJ,THM,ACN,PLD,WAR,DRG,MNK,BRD,SCH,SMN,BLM,WHM' => array(
'Critical Hit Rate',
'Delay',
'Defense',
'Magic Defense',
'Vitality',
'Increased Spiritbond Gain',
'Reduced Durability Loss',
'Blind Resistance',
'Blunt Resistance',
'Heavy Resistance',
'Ice Resistance',
'Earth Resistance',
'Fire Resistance',
'Lightning Resistance',
'Paralysis Resistance',
'Piercing Resistance',
'Poison Resistance',
'Silence Resistance',
'Slashing Resistance',
'Sleep Resistance',
'Water Resistance',
'Wind Resistance',
),
// Disciples of War
'GLA,MRD,LNC,PLD,WAR,DRG,PGL,ARC,MNK,BRD' => array(
'Physical Damage',
'Accuracy',
'Skill Speed',
'Auto-Attack',
'DPS',
),
// Tanks
'GLA,MRD,PLD,WAR' => array(
'Determination',
'Block Rate',
'Block Strength',
'Parry',
),
//Strength
'GLA,MRD,LNC,PLD,WAR,DRG' => array(
'Strength',
),
// Dexterity
'PGL,ARC,MNK,BRD' => array(
'Dexterity',
),
// Disciples of Magic
'CNJ,THM,ACN,SCH,SMN,BLM,WHM' => array(
'Spell Speed',
'Intelligence',
'Magic Damage',
'Mind',
'Piety',
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment