MCPcopy Index your code
hub / github.com/GregTech6/gregtech6 / create

Method create

src/main/java/gregapi/data/FL.java:1088–1088  ·  view source on GitHub ↗
(String aName, String aLocalized, OreDictMaterial aMaterial, int aState, Set<String>... aFluidList)

Source from the content-addressed store, hash-verified

1086 @SafeVarargs public static Fluid createPlasma(OreDictMaterial aMaterial, IIconContainer aTexture, Set<String>... aFluidList) {return create("plasma."+aMaterial.mNameInternal.toLowerCase(), aTexture, aMaterial.mNameLocal + " Plasma", aMaterial, aMaterial.mRGBaPlasma, STATE_PLASMA, L*L, aMaterial.mPlasmaPoint <= 0 ? 10000 : Math.max(300, aMaterial.mPlasmaPoint), null, null, 0, aFluidList);}
1087
1088 @SafeVarargs public static Fluid create(String aName, String aLocalized, OreDictMaterial aMaterial, int aState, Set<String>... aFluidList) {return create(aName, aLocalized, aMaterial, aState, 1000, 300, null, null, 0, aFluidList);}
1089 @SafeVarargs public static Fluid create(String aName, String aLocalized, OreDictMaterial aMaterial, int aState, long aAmountPerUnit, long aTemperatureK, Set<String>... aFluidList) {return create(aName, aLocalized, aMaterial, aState, aAmountPerUnit, aTemperatureK, null, null, 0, aFluidList);}
1090 @SafeVarargs public static Fluid create(String aName, String aLocalized, OreDictMaterial aMaterial, int aState, long aAmountPerUnit, long aTemperatureK, ItemStack aFullContainer, ItemStack aEmptyContainer, int aFluidAmount, Set<String>... aFluidList) {return create(aName, new Textures.BlockIcons.CustomIcon("fluids/" + aName.toLowerCase()), aLocalized, aMaterial, null, aState, aAmountPerUnit, aTemperatureK, aFullContainer, aEmptyContainer, aFluidAmount, aFluidList);}
1091

Callers 8

createLiquidMethod · 0.95
createMoltenMethod · 0.95
createGasMethod · 0.95
createVapourMethod · 0.95
createPlasmaMethod · 0.95
addFluidMethod · 0.95
runMethod · 0.95
EnvironmentOCMethod · 0.45

Calls 15

addMethod · 0.95
getUnlocalizedNameMethod · 0.95
existsMethod · 0.95
getTemperatureMethod · 0.95
makeMethod · 0.95
containerMethod · 0.95
capitaliseWordsMethod · 0.80
setDensityMethod · 0.80
bindIntMethod · 0.80
addRecipe1Method · 0.80
addMethod · 0.65

Tested by

no test coverage detected