| 1506 | } |
| 1507 | |
| 1508 | public static class FluidsGT { |
| 1509 | public static Map<String, String> FLUID_RENAMINGS = new HashMap<>(); |
| 1510 | |
| 1511 | public static Set<String> |
| 1512 | SIMPLE = new HashSetNoNulls<>(F, "poison") |
| 1513 | , ACID = new HashSetNoNulls<>(F, "fluxgoo", "fluxgas", "acid", "acid_fluid", "creeper_acid", "schrabidic_fluid", "sulfuricacid", "sulfuric_acid_fluid", "nitricacid", "nitric_acid_fluid", "aquaregia", "hydrochloricacid", "mutagen", "liquiddna", "binnie.dna.raw", "binnie.bacteriavector", "binnie.bacteriapoly", "binnie.bacteria") |
| 1514 | , TOXIC = new HashSetNoNulls<>(F, "fluxgoo", "fluxgas", "poison", "toxic_fluid", "mud_fluid", "bacterialsludge", "sludge", "fluiddeath") |
| 1515 | , MAGIC = new HashSetNoNulls<>(F, "fluxgoo", "fluxgas", "fluiddeath", "fluidpure", "liquidessence") |
| 1516 | , THAUMIC_FLUX = new HashSetNoNulls<>(F, "fluxgoo", "fluxgas") |
| 1517 | , LIQUID = new HashSetNoNulls<>(F, "fluxgoo", "fluiddeath", "fluidpure", "poison", "liquidnitrogen", "liquiddna", "liquidessence") |
| 1518 | , GAS = new HashSetNoNulls<>(F, "fluxgas") |
| 1519 | , PLASMA = new HashSetNoNulls<>(F, "heliumplasma", "nitrogenplasma", "rc fusion plasma") |
| 1520 | , HIDDEN = new HashSetNoNulls<>(F, "heliumplasma", "nitrogenplasma") |
| 1521 | , AIR = new HashSetNoNulls<>() |
| 1522 | , OXYGEN = new HashSetNoNulls<>() |
| 1523 | , LIQUID_OXYGEN = new HashSetNoNulls<>() |
| 1524 | , ENCHANTED_EFFECT = new HashSetNoNulls<>(F, "fluidpure", "liquidessence") |
| 1525 | , VOID_OVERFLOW = new HashSetNoNulls<>() |
| 1526 | , NONSTANDARD = new HashSetNoNulls<>() |
| 1527 | , BROKEN = new HashSetNoNulls<>() |
| 1528 | , BORKEN = new HashSetNoNulls<>(F, "liquidessence") |
| 1529 | , INFINITE = new HashSetNoNulls<>() // Marks things that are stupidly easy to obtain, except Water and Milk. |
| 1530 | , BATH = new HashSetNoNulls<>() |
| 1531 | , DYE = new HashSetNoNulls<>() |
| 1532 | |
| 1533 | , STEAM = new HashSetNoNulls<>() |
| 1534 | , POWER_CONDUCTING = new HashSetNoNulls<>(F, "rc fusion plasma") |
| 1535 | , LUBRICANT = new HashSetNoNulls<>() |
| 1536 | , THERMOS = new HashSetNoNulls<>(F, "coffee") |
| 1537 | , POTION = new HashSetNoNulls<>() |
| 1538 | |
| 1539 | , FOOD = new HashSetNoNulls<>(F, "coffee") |
| 1540 | , JUICE = new HashSetNoNulls<>() |
| 1541 | , FRUIT_JUICE = new HashSetNoNulls<>() |
| 1542 | , CITRUS_JUICE = new HashSetNoNulls<>() |
| 1543 | , WATER = new HashSetNoNulls<>() |
| 1544 | , HONEY = new HashSetNoNulls<>() |
| 1545 | , MILK = new HashSetNoNulls<>() |
| 1546 | , TEA = new HashSetNoNulls<>() |
| 1547 | , COOKING_OIL = new HashSetNoNulls<>() |
| 1548 | , SLIME = new HashSetNoNulls<>() |
| 1549 | , BLOOD = new HashSetNoNulls<>(F, "blood") |
| 1550 | |
| 1551 | , ALCOHOLIC = new HashSetNoNulls<>() |
| 1552 | , VINEGAR = new HashSetNoNulls<>() |
| 1553 | , RUM = new HashSetNoNulls<>() |
| 1554 | , WINE = new HashSetNoNulls<>() |
| 1555 | , BEER = new HashSetNoNulls<>() |
| 1556 | , CIDER = new HashSetNoNulls<>() |
| 1557 | , SPIRIT = new HashSetNoNulls<>() |
| 1558 | , BRANDY = new HashSetNoNulls<>() |
| 1559 | , LIQUOR = new HashSetNoNulls<>() |
| 1560 | , LIQUEUR = new HashSetNoNulls<>() |
| 1561 | , WHISKEY = new HashSetNoNulls<>() |
| 1562 | ; |
| 1563 | |
| 1564 | static { |
| 1565 | SIMPLE.addAll(FOOD); |