Skip to content

Instantly share code, notes, and snippets.

@xISRAPILx
Created September 2, 2018 19:43
Show Gist options
  • Save xISRAPILx/d776e78fc904aa239e5247f495af76e7 to your computer and use it in GitHub Desktop.
Save xISRAPILx/d776e78fc904aa239e5247f495af76e7 to your computer and use it in GitHub Desktop.
Horse colors
<?
public const WHITE = 0;
public const WHITE_WHITE = 256;
public const WHITE_WHITE_FIELD = 512;
public const WHITE_WHITE_DOTS = 768;
public const WHITE_BLACK_DOTS = 1024;
public const CREAMY = 1;
public const CREAMY_WHITE = 257;
public const CREAMY_WHITE_FIELD = 513;
public const CREAMY_WHITE_DOTS = 769;
public const CREAMY_BLACK_DOTS = 1025;
public const CHESTNUT = 2;
public const CHESTNUT_WHITE = 258;
public const CHESTNUT_WHITE_FIELD = 514;
public const CHESTNUT_WHITE_DOTS = 770;
public const CHESTNUT_BLACK_DOTS = 1026;
public const BROWN = 3;
public const BROWN_WHITE = 259;
public const BROWN_WHITE_FIELD = 515;
public const BROWN_WHITE_DOTS = 771;
public const BROWN_BLACK_DOTS = 1027;
public const BLACK = 4;
public const BLACK_WHITE = 260;
public const BLACK_WHITE_FIELD = 516;
public const BLACK_WHITE_DOTS = 772;
public const BLACK_BLACK_DOTS = 1028;
public const GRAY = 5;
public const GRAY_WHITE = 261;
public const GRAY_WHITE_FIELD = 517;
public const GRAY_WHITE_DOTS = 773;
public const GRAY_BLACK_DOTS = 1029;
public const DARK_BROWN = 6;
public const DARK_BROWN_WHITE = 262;
public const DARK_BROWN_WHITE_FIELD = 518;
public const DARK_BROWN_WHITE_DOTS = 774;
public const DARK_BROWN_BLACK_DOTS = 1030;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment