1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064
|
# tile 394 (strange object)
{
model = x_achest.md2
skin = x_achest.png
}
# tile 395 (arrow)
{
}
# tile 396 (runed arrow / elven arrow)
{
}
# tile 397 (crude arrow / orcish arrow)
{
}
# tile 398 (silver arrow)
{
}
# tile 399 (bamboo arrow / ya)
{
}
# tile 400 (crossbow bolt)
{
}
# tile 401 (dart)
{
model = x_incisor.md2
skin = x_incisor.png
}
# tile 402 (throwing star / shuriken)
{
}
# tile 403 (boomerang)
{
}
# tile 404 (spear)
{
model = x_spear.md2
skin = x_spear.png
}
# tile 405 (runed spear / elven spear)
{
model = x_spear.md2
skin = x_spear.png
}
# tile 406 (crude spear / orcish spear)
{
model = x_spear.md2
skin = x_spear.png
}
# tile 407 (stout spear / dwarvish spear)
{
model = x_spear.md2
skin = x_spear.png
}
# tile 408 (silver spear)
{
model = x_spear.md2
skin = x_spear.png
}
# tile 409 (throwing spear / javelin)
{
model = x_spear.md2
skin = x_spear.png
}
# tile 410 (trident)
{
model = x_spear.md2
skin = x_spear.png
}
# tile 411 (dagger)
{
model = x_incisor.md2
skin = x_incisor.png
}
# tile 412 (runed dagger / elven dagger)
{
model = x_incisor.md2
skin = x_incisor.png
}
# tile 413 (crude dagger / orcish dagger)
{
model = x_incisor.md2
skin = x_incisor.png
}
# tile 414 (silver dagger)
{
model = x_incisor.md2
skin = x_incisor.png
}
# tile 415 (athame)
{
model = x_incisor.md2
skin = x_incisor.png
}
# tile 416 (scalpel)
{
model = x_incisor.md2
skin = x_incisor.png
}
# tile 417 (knife)
{
model = x_incisor.md2
skin = x_incisor.png
}
# tile 418 (stiletto)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 419 (worm tooth)
{
}
# tile 420 (crysknife)
{
model = x_hatchet.md2
skin = x_hatchet.png
}
# tile 421 (axe)
{
model = x_hatchet.md2
skin = x_hatchet.png
}
# tile 422 (double-headed axe / battle-axe)
{
model = x_hatchet.md2
skin = x_hatchet.png
}
# tile 423 (short sword)
{
model = x_sordwall.md2
skin = x_sordwall.png
light = Sword
}
# tile 424 (runed short sword / elven short sword)
{
model = x_sordwall.md2
skin = x_sordwall.png
light = Sword
}
# tile 425 (crude short sword / orcish short sword)
{
model = x_sordwall.md2
skin = x_sordwall.png
light = Sword
}
# tile 426 (broad short sword / dwarvish short sword)
{
model = x_sordwall.md2
skin = x_sordwall.png
light = Sword
}
# tile 427 (curved sword / scimitar)
{
model = x_sordwall.md2
skin = x_sordwall.png
light = Sword
}
# tile 428 (silver saber)
{
model = x_sordwall.md2
skin = x_sordwall.png
}
# tile 429 (broadsword)
{
model = x_dsword.md2
skin = x_dsword.png
light = Sword
}
# tile 430 (runed broadsword / elven broadsword)
{
model = x_dsword.md2
skin = x_dsword.png
light = Sword
}
# tile 431 (long sword)
{
model = x_dsword.md2
skin = x_dsword.png
light = Sword
}
# tile 432 (two-handed sword)
{
model = x_dsword.md2
skin = x_dsword.png
light = Sword
}
# tile 433 (samurai sword / katana)
{
model = x_dsword.md2
skin = x_dsword.png
light = Sword
}
# tile 434 (long samurai sword / tsurugi)
{
model = x_dsword.md2
skin = x_dsword.png
light = Sword
}
# tile 435 (runed broadsword / runesword)
{
model = x_dsword.md2
skin = x_dsword.png
light = Sword
}
# tile 436 (vulgar polearm / partisan)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 437 (hilted polearm / ranseur)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 438 (forked polearm / spetum)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 439 (single-edged polearm / glaive)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 440 (lance)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 441 (angled poleaxe / halberd)
{
model = x_hatchet.md2
skin = x_hatchet.png
}
# tile 442 (long poleaxe / bardiche)
{
model = x_hatchet.md2
skin = x_hatchet.png
}
# tile 443 (pole cleaver / voulge)
{
model = x_hatchet.md2
skin = x_hatchet.png
}
# tile 444 (broad pick / dwarvish mattock)
{
model = x_pick.md2
skin = x_pick.png
}
# tile 445 (pole sickle / fauchard)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 446 (pruning hook / guisarme)
{
}
# tile 447 (hooked polearm / bill-guisarme)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 448 (pronged polearm / lucern hammer)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 449 (beaked polearm / bec de corbin)
{
model = x_stiletto.md2
skin = x_stiletto.png
}
# tile 450 (mace)
{
model = x_mace.md2
skin = x_mace.png
}
# tile 451 (morning star)
{
model = x_mace.md2
skin = x_mace.png
}
# tile 452 (war hammer)
{
model = x_mallet.md2
skin = x_mallet.png
}
# tile 453 (club)
{
model = x_mallet.md2
skin = x_mallet.png
}
# tile 454 (rubber hose)
{
}
# tile 455 (staff / quarterstaff)
{
}
# tile 456 (thonged club / aklys)
{
}
# tile 457 (flail)
{
}
# tile 458 (bullwhip)
{
}
# tile 459 (bow)
{
model = x_lbow.md2
skin = x_lbow.png
}
# tile 460 (runed bow / elven bow)
{
model = x_lbow.md2
skin = x_lbow.png
}
# tile 461 (crude bow / orcish bow)
{
model = x_lbow.md2
skin = x_lbow.png
}
# tile 462 (long bow / yumi)
{
model = x_lbow.md2
skin = x_lbow.png
}
# tile 463 (sling)
{
model = x_hanxbow.md2
skin = x_hanxbow.png
}
# tile 464 (crossbow)
{
model = x_hanxbow.md2
skin = x_hanxbow.png
}
# tile 465 (leather hat / elven leather helm)
{
}
# tile 466 (iron skull cap / orcish helm)
{
}
# tile 467 (hard hat / dwarvish iron helm)
{
}
# tile 468 (fedora)
{
}
# tile 469 (conical hat / cornuthaum)
{
}
# tile 470 (conical hat / dunce cap)
{
}
# tile 471 (dented pot)
{
}
# tile 472 (plumed helmet / helmet)
{
}
# tile 473 (etched helmet / helm of brilliance)
{
}
# tile 474 (crested helmet / helm of opposite alignment)
{
}
# tile 475 (visored helmet / helm of telepathy)
{
}
# tile 476 (gray dragon scale mail)
{
}
# tile 477 (silver dragon scale mail)
{
}
# tile 478 (shimmering dragon scale mail)
{
}
# tile 479 (red dragon scale mail)
{
}
# tile 480 (white dragon scale mail)
{
}
# tile 481 (orange dragon scale mail)
{
}
# tile 482 (black dragon scale mail)
{
}
# tile 483 (blue dragon scale mail)
{
}
# tile 484 (green dragon scale mail)
{
}
# tile 485 (yellow dragon scale mail)
{
}
# tile 486 (gray dragon scales)
{
}
# tile 487 (silver dragon scales)
{
}
# tile 488 (shimmering dragon scales)
{
}
# tile 489 (red dragon scales)
{
}
# tile 490 (white dragon scales)
{
}
# tile 491 (orange dragon scales)
{
}
# tile 492 (black dragon scales)
{
}
# tile 493 (blue dragon scales)
{
}
# tile 494 (green dragon scales)
{
}
# tile 495 (yellow dragon scales)
{
}
# tile 496 (plate mail)
{
}
# tile 497 (crystal plate mail)
{
}
# tile 498 (bronze plate mail)
{
}
# tile 499 (splint mail)
{
}
# tile 500 (banded mail)
{
}
# tile 501 (dwarvish mithril-coat)
{
}
# tile 502 (elven mithril-coat)
{
}
# tile 503 (chain mail)
{
}
# tile 504 (crude chain mail / orcish chain mail)
{
}
# tile 505 (scale mail)
{
}
# tile 506 (studded leather armor)
{
}
# tile 507 (ring mail)
{
}
# tile 508 (crude ring mail / orcish ring mail)
{
}
# tile 509 (leather armor)
{
}
# tile 510 (leather jacket)
{
}
# tile 511 (Hawaiian shirt)
{
}
# tile 512 (T-shirt)
{
}
# tile 513 (mummy wrapping)
{
}
# tile 514 (faded pall / elven cloak)
{
}
# tile 515 (coarse mantelet / orcish cloak)
{
}
# tile 516 (hooded cloak / dwarvish cloak)
{
}
# tile 517 (slippery cloak / oilskin cloak)
{
}
# tile 518 (robe)
{
}
# tile 519 (apron / alchemy smock)
{
}
# tile 520 (leather cloak)
{
}
# tile 521 (tattered cape / cloak of protection)
{
}
# tile 522 (opera cloak / cloak of invisibility)
{
}
# tile 523 (ornamental cope / cloak of magic resistance)
{
}
# tile 524 (piece of cloth / cloak of displacement)
{
}
# tile 525 (small shield)
{
model = x_tshield.md2
skin = x_tshield.png
}
# tile 526 (blue and green shield / elven shield)
{
model = x_tshield.md2
skin = x_tshield.png
}
# tile 527 (white-handed shield / Uruk-hai shield)
{
model = x_tshield.md2
skin = x_tshield.png
}
# tile 528 (red-eyed shield / orcish shield)
{
model = x_kshield.md2
skin = x_kshield.png
}
# tile 529 (large shield)
{
model = x_gshield.md2
skin = x_gshield.png
}
# tile 530 (large round shield / dwarvish roundshield)
{
model = x_kshield.md2
skin = x_kshield.png
}
# tile 531 (polished silver shield / shield of reflection)
{
model = x_hshield.md2
skin = x_hshield.png
}
# tile 532 (old gloves / leather gloves)
{
}
# tile 533 (padded gloves / gauntlets of fumbling)
{
}
# tile 534 (riding gloves / gauntlets of power)
{
}
# tile 535 (fencing gloves / gauntlets of dexterity)
{
}
# tile 536 (walking shoes / low boots)
{
}
# tile 537 (hard shoes / iron shoes)
{
}
# tile 538 (jackboots / high boots)
{
}
# tile 539 (combat boots / speed boots)
{
}
# tile 540 (jungle boots / water walking boots)
{
}
# tile 541 (hiking boots / jumping boots)
{
}
# tile 542 (mud boots / elven boots)
{
}
# tile 543 (buckled boots / kicking boots)
{
}
# tile 544 (riding boots / fumble boots)
{
}
# tile 545 (snow boots / levitation boots)
{
}
# tile 546 (wooden / adornment)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 547 (granite / gain strength)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 548 (opal / gain constitution)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 549 (clay / increase accuracy)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 550 (coral / increase damage)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 551 (black onyx / protection)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 552 (moonstone / regeneration)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 553 (tiger eye / searching)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 554 (jade / stealth)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 555 (bronze / sustain ability)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 556 (agate / levitation)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 557 (topaz / hunger)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 558 (sapphire / aggravate monster)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 559 (ruby / conflict)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 560 (diamond / warning)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 561 (pearl / poison resistance)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 562 (iron / fire resistance)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 563 (brass / cold resistance)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 564 (copper / shock resistance)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 565 (twisted / free action)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 566 (steel / slow digestion)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 567 (silver / teleportation)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 568 (gold / teleport control)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 569 (ivory / polymorph)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 570 (emerald / polymorph control)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 571 (wire / invisibility)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 572 (engagement / see invisible)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 573 (shiny / protection from shape changers)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 574 (circular / amulet of ESP)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 575 (spherical / amulet of life saving)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 576 (oval / amulet of strangulation)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 577 (triangular / amulet of restful sleep)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 578 (pyramidal / amulet versus poison)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 579 (square / amulet of change)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 580 (concave / amulet of unchanging)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 581 (hexagonal / amulet of reflection)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 582 (octagonal / amulet of magical breathing)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 583 (Amulet of Yendor / cheap plastic imitation of the Amulet of Yendor)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 584 (Amulet of Yendor)
{
model = x_sbrace.md2
skin = x_sbrace.png
}
# tile 585 (large box)
{
model = x_achest.md2
skin = x_achest.png
}
# tile 586 (chest)
{
model = x_achest.md2
skin = x_achest.png
}
# tile 587 (ice box)
{
model = x_achest.md2
skin = x_achest.png
}
# tile 588 (bag / sack)
{
model = x_achest.md2
skin = x_achest.png
}
# tile 589 (bag / oilskin sack)
{
model = x_achest.md2
skin = x_achest.png
}
# tile 590 (bag / bag of holding)
{
model = x_achest.md2
skin = x_achest.png
}
# tile 591 (bag / bag of tricks)
{
model = x_achest.md2
skin = x_achest.png
}
# tile 592 (key / skeleton key)
{
model = x_pick.md2
skin = x_pick.png
}
# tile 593 (lock pick)
{
model = x_pick.md2
skin = x_pick.png
}
# tile 594 (credit card)
{
model = x_pick.md2
skin = x_pick.png
}
# tile 595 (candle / tallow candle)
{
model = x_torch.md2
skin = x_torch.png
light = Candle
}
# tile 596 (candle / wax candle)
{
model = x_torch.md2
skin = x_torch.png
light = Candle
}
# tile 597 (brass lantern)
{
model = x_torch.md2
skin = x_torch.png
light = BrassLantern
}
# tile 598 (lamp / oil lamp)
{
model = x_torch.md2
skin = x_torch.png
light = Lamp
}
# tile 599 (lamp / magic lamp)
{
model = x_torch.md2
skin = x_torch.png
light = Lamp
}
# tile 600 (expensive camera)
{
model = x_torch.md2
skin = x_torch.png
}
# tile 601 (looking glass / mirror)
{
}
# tile 602 (glass orb / crystal ball)
{
}
# tile 603 (lenses)
{
}
# tile 604 (blindfold)
{
}
# tile 605 (towel)
{
}
# tile 606 (saddle)
{
}
# tile 607 (leash)
{
}
# tile 608 (stethoscope)
{
}
# tile 609 (tinning kit)
{
model = x_achest.md2
skin = x_achest.png
}
# tile 610 (tin opener)
{
model = x_pick.md2
skin = x_pick.png
}
# tile 611 (can of grease)
{
light = OilPotion
}
# tile 612 (figurine)
{
}
# tile 613 (magic marker)
{
}
# tile 614 (land mine object)
{
}
# tile 615 (bear trap object)
{
}
# tile 616 (whistle / tin whistle)
{
}
# tile 617 (whistle / magic whistle)
{
}
# tile 618 (flute / wooden flute)
{
}
# tile 619 (flute / magic flute)
{
}
# tile 620 (horn / tooled horn)
{
}
# tile 621 (horn / frost horn)
{
}
# tile 622 (horn / fire horn)
{
}
# tile 623 (horn / horn of plenty)
{
}
# tile 624 (harp / wooden harp)
{
}
# tile 625 (harp / magic harp)
{
}
# tile 626 (bell)
{
}
# tile 627 (bugle)
{
}
# tile 628 (drum / leather drum)
{
}
# tile 629 (drum / drum of earthquake)
{
}
# tile 630 (pick-axe)
{
model = x_pick.md2
skin = x_pick.png
}
# tile 631 (iron hook / grappling hook)
{
}
# tile 632 (unicorn horn)
{
}
# tile 633 (candelabrum / Candelabrum of Invocation)
{
light = Candelabrum
}
# tile 634 (silver bell / Bell of Opening)
{
}
# tile 635 (tripe ration)
{
}
# tile 636 (corpse)
{
}
# tile 637 (egg)
{
}
# tile 638 (meatball)
{
}
# tile 639 (meat stick)
{
}
# tile 640 (huge chunk of meat)
{
}
# tile 641 (meat ring)
{
}
# tile 642 (kelp frond)
{
}
# tile 643 (eucalyptus leaf)
{
}
# tile 644 (apple)
{
}
# tile 645 (orange)
{
}
# tile 646 (pear)
{
}
# tile 647 (melon)
{
}
# tile 648 (banana)
{
}
# tile 649 (carrot)
{
}
# tile 650 (sprig of wolfsbane)
{
}
# tile 651 (clove of garlic)
{
}
# tile 652 (slime mold)
{
}
# tile 653 (lump of royal jelly)
{
}
# tile 654 (cream pie)
{
}
# tile 655 (candy bar)
{
}
# tile 656 (fortune cookie)
{
}
# tile 657 (pancake)
{
}
# tile 658 (lembas wafer)
{
}
# tile 659 (cram ration)
{
}
# tile 660 (food ration)
{
}
# tile 661 (K-ration)
{
}
# tile 662 (C-ration)
{
}
# tile 663 (tin)
{
}
# tile 664 (ruby / gain ability)
{
model = x_potion.md2
skin = x_rpotion.png
light = OilPotion
scale = 3;
}
# tile 665 (pink / restore ability)
{
model = x_potion.md2
skin = x_rpotion.png
light = OilPotion
scale = 3;
}
# tile 666 (orange / confusion)
{
model = x_potion.md2
skin = x_rpotion.png
light = OilPotion
scale = 3;
}
# tile 667 (yellow / blindness)
{
model = x_potion.md2
skin = x_ypotion.png
light = OilPotion
scale = 3;
}
# tile 668 (emerald / paralysis)
{
model = x_potion.md2
skin = x_gpotion.png
light = OilPotion
scale = 3;
}
# tile 669 (dark green / speed)
{
model = x_potion.md2
skin = x_gpotion.png
light = OilPotion
scale = 3;
}
# tile 670 (cyan / levitation)
{
model = x_potion.md2
skin = x_bpotion.png
light = OilPotion
scale = 3;
}
# tile 671 (sky blue / hallucination)
{
model = x_potion.md2
skin = x_bpotion.png
light = OilPotion
scale = 3;
}
# tile 672 (brilliant blue / invisibility)
{
model = x_potion.md2
skin = x_bpotion.png
light = OilPotion
scale = 3;
}
# tile 673 (magenta / see invisible)
{
model = x_potion.md2
skin = x_rpotion.png
light = OilPotion
scale = 3;
}
# tile 674 (purple-red / healing)
{
model = x_potion.md2
skin = x_rpotion.png
light = OilPotion
scale = 3;
}
# tile 675 (puce / extra healing)
{
model = x_potion.md2
skin = x_rpotion.png
light = OilPotion
scale = 3;
}
# tile 676 (milky / gain level)
{
model = x_potion.md2
skin = x_ypotion.png
light = OilPotion
scale = 3;
}
# tile 677 (swirly / enlightenment)
{
model = x_potion.md2
skin = x_rpotion.png
light = OilPotion
scale = 3;
}
# tile 678 (bubbly / monster detection)
{
model = x_potion.md2
skin = x_gpotion.png
light = OilPotion
scale = 3;
}
# tile 679 (smoky / object detection)
{
model = x_potion.md2
skin = x_gpotion.png
light = OilPotion
scale = 3;
}
# tile 680 (cloudy / gain energy)
{
model = x_potion.md2
skin = x_ypotion.png
light = OilPotion
scale = 3;
}
# tile 681 (effervescent / sleeping)
{
model = x_potion.md2
skin = x_bpotion.png
light = OilPotion
scale = 3;
}
# tile 682 (black / full healing)
{
model = x_potion.md2
skin = x_bpotion.png
light = OilPotion
scale = 3;
}
# tile 683 (golden / polymorph)
{
model = x_potion.md2
skin = x_ypotion.png
light = OilPotion
scale = 3;
}
# tile 684 (brown / booze)
{
model = x_potion.md2
skin = x_rpotion.png
light = OilPotion
scale = 3;
}
# tile 685 (fizzy / sickness)
{
model = x_potion.md2
skin = x_ypotion.png
light = OilPotion
scale = 3;
}
# tile 686 (dark / fruit juice)
{
model = x_potion.md2
skin = x_bpotion.png
light = OilPotion
scale = 3;
}
# tile 687 (white / acid)
{
model = x_potion.md2
skin = x_ypotion.png
light = OilPotion
scale = 3;
}
# tile 688 (murky / oil)
{
model = x_potion.md2
skin = x_ypotion.png
light = OilPotion
scale = 3;
}
# tile 689 (clear / water)
{
model = x_potion.md2
skin = x_bpotion.png
light = OilPotion
scale = 3;
}
# tile 690 (ZELGO MER / enchant armor)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 691 (JUYED AWK YACC / destroy armor)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 692 (NR 9 / confuse monster)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 693 (XIXAXA XOXAXA XUXAXA / scare monster)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 694 (PRATYAVAYAH / remove curse)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 695 (DAIYEN FOOELS / enchant weapon)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 696 (LEP GEX VEN ZEA / create monster)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 697 (PRIRUTSENIE / taming)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 698 (ELBIB YLOH / genocide)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 699 (VERR YED HORRE / light)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 700 (VENZAR BORGAVVE / teleportation)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 701 (THARR / gold detection)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 702 (YUM YUM / food detection)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 703 (KERNOD WEL / identify)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 704 (ELAM EBOW / magic mapping)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 705 (DUAM XNAHT / amnesia)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 706 (ANDOVA BEGARIN / fire)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 707 (KIRJE / earth)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 708 (VE FORBRYDERNE / punishment)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 709 (HACKEM MUCHE / charging)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 710 (VELOX NEB / stinking cloud)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 711 (FOOBIE BLETCH)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 712 (TEMOV)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 713 (GARVEN DEH)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 714 (READ ME)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 715 (stamped / mail)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 716 (unlabeled / blank paper)
{
model = x_identify.md2
skin = x_identify.png
scale = 3;
}
# tile 717 (parchment / dig)
{
model = x_book.md2
skin = x_book.png
}
# tile 718 (vellum / magic missile)
{
model = x_book.md2
skin = x_book.png
}
# tile 719 (ragged / fireball)
{
model = x_book.md2
skin = x_book.png
}
# tile 720 (dog eared / cone of cold)
{
model = x_book.md2
skin = x_book.png
}
# tile 721 (mottled / sleep)
{
model = x_book.md2
skin = x_book.png
}
# tile 722 (stained / finger of death)
{
model = x_book.md2
skin = x_book.png
}
# tile 723 (cloth / light)
{
model = x_book.md2
skin = x_book.png
}
# tile 724 (leather / detect monsters)
{
model = x_book.md2
skin = x_book.png
}
# tile 725 (white / healing)
{
model = x_book.md2
skin = x_book.png
}
# tile 726 (pink / knock)
{
model = x_book.md2
skin = x_book.png
}
# tile 727 (red / force bolt)
{
model = x_book.md2
skin = x_book.png
}
# tile 728 (orange / confuse monster)
{
model = x_book.md2
skin = x_book.png
}
# tile 729 (yellow / cure blindness)
{
model = x_book.md2
skin = x_book.png
}
# tile 730 (velvet / drain life)
{
model = x_book.md2
skin = x_book.png
}
# tile 731 (light green / slow monster)
{
model = x_book.md2
skin = x_book.png
}
# tile 732 (dark green / wizard lock)
{
model = x_book.md2
skin = x_book.png
}
# tile 733 (turquoise / create monster)
{
model = x_book.md2
skin = x_book.png
}
# tile 734 (cyan / detect food)
{
model = x_book.md2
skin = x_book.png
}
# tile 735 (light blue / cause fear)
{
model = x_book.md2
skin = x_book.png
}
# tile 736 (dark blue / clairvoyance)
{
model = x_book.md2
skin = x_book.png
}
# tile 737 (indigo / cure sickness)
{
model = x_book.md2
skin = x_book.png
}
# tile 738 (magenta / charm monster)
{
model = x_book.md2
skin = x_book.png
}
# tile 739 (purple / haste self)
{
model = x_book.md2
skin = x_book.png
}
# tile 740 (violet / detect unseen)
{
model = x_book.md2
skin = x_book.png
}
# tile 741 (tan / levitation)
{
model = x_book.md2
skin = x_book.png
}
# tile 742 (plaid / extra healing)
{
model = x_book.md2
skin = x_book.png
}
# tile 743 (light brown / restore ability)
{
model = x_book.md2
skin = x_book.png
}
# tile 744 (dark brown / invisibility)
{
model = x_book.md2
skin = x_book.png
}
# tile 745 (gray / detect treasure)
{
model = x_book.md2
skin = x_book.png
}
# tile 746 (wrinkled / remove curse)
{
model = x_book.md2
skin = x_book.png
}
# tile 747 (dusty / magic mapping)
{
model = x_book.md2
skin = x_book.png
}
# tile 748 (bronze / identify)
{
model = x_book.md2
skin = x_book.png
}
# tile 749 (copper / turn undead)
{
model = x_book.md2
skin = x_book.png
}
# tile 750 (silvery / polymorph)
{
model = x_book.md2
skin = x_book.png
}
# tile 751 (gold / teleport away)
{
model = x_book.md2
skin = x_book.png
}
# tile 752 (glittering / create familiar)
{
model = x_book.md2
skin = x_book.png
}
# tile 753 (shining / cancellation)
{
model = x_book.md2
skin = x_book.png
}
# tile 754 (dull / protection)
{
model = x_book.md2
skin = x_book.png
}
# tile 755 (thin / jumping)
{
model = x_book.md2
skin = x_book.png
}
# tile 756 (thick / stone to flesh)
{
model = x_book.md2
skin = x_book.png
}
# tile 757 (plain / blank paper)
{
model = x_book.md2
skin = x_book.png
}
# tile 758 (papyrus / Book of the Dead)
{
model = x_book.md2
skin = x_book.png
}
# tile 759 (glass / light)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 760 (balsa / secret door detection)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 761 (crystal / enlightenment)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 762 (maple / create monster)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 763 (pine / wishing)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 764 (oak / nothing)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 765 (ebony / striking)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 766 (marble / make invisible)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 767 (tin / slow monster)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 768 (brass / speed monster)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 769 (copper / undead turning)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 770 (silver / polymorph)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 771 (platinum / cancellation)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 772 (iridium / teleportation)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 773 (zinc / opening)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 774 (aluminum / locking)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 775 (uranium / probing)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 776 (iron / digging)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 777 (steel / magic missile)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 778 (hexagonal / fire)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 779 (short / cold)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 780 (runed / sleep)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 781 (long / death)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 782 (curved / lightning)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 783 (forked)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 784 (spiked)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 785 (jeweled)
{
model = x_wandm.md2
skin = x_wandm.png
}
# tile 786 (gold piece)
{
model = gold.md2
skin = gold.png
}
# tile 787 (white / dilithium crystal)
{
model = gem.md2
skin = gem_white.png
material = Gem
scale = 0.5
flags = R
}
# tile 788 (white / diamond)
{
model = gem.md2
skin = gem_white.png
material = Gem
scale = 0.5
flags = R
}
# tile 789 (red / ruby)
{
model = gem.md2
skin = gem_red.png
material = Gem
scale = 0.5
flags = R
}
# tile 790 (orange / jacinth)
{
model = gem.md2
skin = gem_orange.png
material = Gem
scale = 0.5
flags = R
}
# tile 791 (blue / sapphire)
{
model = gem.md2
skin = gem_blue.png
material = Gem
scale = 0.5
flags = R
}
# tile 792 (black / black opal)
{
model = gem.md2
skin = gem_black.png
material = Gem
scale = 0.5
flags = R
}
# tile 793 (green / emerald)
{
model = gem.md2
skin = gem_green.png
material = Gem
scale = 0.5
flags = R
}
# tile 794 (green / turquoise)
{
model = gem.md2
skin = gem_green.png
material = Gem
scale = 0.5
flags = R
}
# tile 795 (yellow / citrine)
{
model = gem.md2
skin = gem_yellow.png
material = Gem
scale = 0.5
flags = R
}
# tile 796 (green / aquamarine)
{
model = gem.md2
skin = gem_green.png
material = Gem
scale = 0.5
flags = R
}
# tile 797 (yellowish brown / amber)
{
model = gem.md2
skin = gem_yelbrn.png
material = Gem
scale = 0.5
flags = R
}
# tile 798 (yellowish brown / topaz)
{
model = gem.md2
skin = gem_yelbrn.png
material = Gem
scale = 0.5
flags = R
}
# tile 799 (black / jet)
{
model = gem.md2
skin = gem_black.png
material = Gem
scale = 0.5
flags = R
}
# tile 800 (white / opal)
{
model = gem.md2
skin = gem_white.png
material = Gem
scale = 0.5
flags = R
}
# tile 801 (yellow / chrysoberyl)
{
model = gem.md2
skin = gem_yellow.png
material = Gem
scale = 0.5
flags = R
}
# tile 802 (red / garnet)
{
model = gem.md2
skin = gem_red.png
material = Gem
scale = 0.5
flags = R
}
# tile 803 (violet / amethyst)
{
model = gem.md2
skin = gem_violet.png
material = Gem
scale = 0.5
flags = R
}
# tile 804 (red / jasper)
{
model = gem.md2
skin = gem_red.png
material = Gem
scale = 0.5
flags = R
}
# tile 805 (violet / fluorite)
{
model = gem.md2
skin = gem_violet.png
material = Gem
scale = 0.5
flags = R
}
# tile 806 (black / obsidian)
{
model = gem.md2
skin = gem_black.png
material = Gem
scale = 0.5
flags = R
}
# tile 807 (orange / agate)
{
model = gem.md2
skin = gem_orange.png
material = Gem
scale = 0.5
flags = R
}
# tile 808 (green / jade)
{
model = gem.md2
skin = gem_green.png
material = Gem
scale = 0.5
flags = R
}
# tile 809 (white / worthless piece of white glass)
{
model = gem.md2
skin = gem_white.png
material = Gem
scale = 0.5
flags = R
}
# tile 810 (blue / worthless piece of blue glass)
{
model = gem.md2
skin = gem_blue.png
material = Gem
scale = 0.5
flags = R
}
# tile 811 (red / worthless piece of red glass)
{
model = gem.md2
skin = gem_red.png
material = Gem
scale = 0.5
flags = R
}
# tile 812 (yellowish brown / worthless piece of yellowish brown glass)
{
model = gem.md2
skin = gem_yelbrn.png
material = Gem
scale = 0.5
flags = R
}
# tile 813 (orange / worthless piece of orange glass)
{
model = gem.md2
skin = gem_orange.png
material = Gem
scale = 0.5
flags = R
}
# tile 814 (yellow / worthless piece of yellow glass)
{
model = gem.md2
skin = gem_yellow.png
material = Gem
scale = 0.5
flags = R
}
# tile 815 (black / worthless piece of black glass)
{
model = gem.md2
skin = gem_black.png
material = Gem
scale = 0.5
flags = R
}
# tile 816 (green / worthless piece of green glass)
{
model = gem.md2
skin = gem_green.png
material = Gem
scale = 0.5
flags = R
}
# tile 817 (violet / worthless piece of violet glass)
{
model = gem.md2
skin = gem_violet.png
material = Gem
scale = 0.5
flags = R
}
# tile 818 (gray / luckstone)
{
model = x_ironball.md2
skin = x_ironball.png
}
# tile 819 (gray / loadstone)
{
model = x_ironball.md2
skin = x_ironball.png
}
# tile 820 (gray / touchstone)
{
model = x_ironball.md2
skin = x_ironball.png
}
# tile 821 (gray / flint)
{
model = x_ironball.md2
skin = x_ironball.png
}
# tile 822 (rock)
{
model = x_ironball.md2
skin = x_ironball.png
}
# tile 823 (boulder)
{
model = x_ironball.md2
skin = x_ironball.png
}
# tile 824 (statue)
{
model = x_ironball.md2
skin = x_ironball.png
}
# tile 825 (heavy iron ball)
{
model = x_ironball.md2
skin = x_ironball.png
}
# tile 826 (iron chain)
{
model = x_ironball.md2
skin = x_ironball.png
}
# tile 827 (splash of venom / blinding venom)
{
}
# tile 828 (splash of venom / acid venom)
{
}
|