the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "stdafx.h"
2#include "Attribute.h"
3
4const int Attribute::AttributeNames [] =
5{
6 IDS_ATTRIBUTE_NAME_GENERIC_MAXHEALTH,
7 IDS_ATTRIBUTE_NAME_GENERIC_FOLLOWRANGE,
8 IDS_ATTRIBUTE_NAME_GENERIC_KNOCKBACKRESISTANCE,
9 IDS_ATTRIBUTE_NAME_GENERIC_MOVEMENTSPEED,
10 IDS_ATTRIBUTE_NAME_GENERIC_ATTACKDAMAGE,
11 IDS_ATTRIBUTE_NAME_HORSE_JUMPSTRENGTH,
12 IDS_ATTRIBUTE_NAME_ZOMBIE_SPAWNREINFORCEMENTS,
13};
14
15int Attribute::getName(eATTRIBUTE_ID id)
16{
17 return AttributeNames[id];
18}