mirror of
https://github.com/XevianLight/Aphelion.git
synced 2026-05-11 01:50:56 +01:00
Basic development
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package net.xevianlight.aphelion.item;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
public class IngotAluminum extends Item {
|
||||
public IngotAluminum() {
|
||||
super(new Properties());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package net.xevianlight.aphelion.item;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
public class IngotCobalt extends Item {
|
||||
public IngotCobalt() {
|
||||
super(new Properties());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package net.xevianlight.aphelion.item;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
public class IngotIridium extends Item {
|
||||
public IngotIridium() {
|
||||
super(new Properties());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package net.xevianlight.aphelion.item;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
public class IngotNeodymium extends Item {
|
||||
public IngotNeodymium() {
|
||||
super(new Properties());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package net.xevianlight.aphelion.item;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
public class IngotSteel extends Item {
|
||||
public IngotSteel() {
|
||||
super(new Properties());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package net.xevianlight.aphelion.item;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
public class IngotTitanium extends Item {
|
||||
public IngotTitanium() {
|
||||
super(new Properties());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package net.xevianlight.aphelion.item;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
public class IngotTungsten extends Item {
|
||||
public IngotTungsten() {
|
||||
super(new Properties());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package net.xevianlight.aphelion.item;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
public class IngotUranium extends Item {
|
||||
public IngotUranium() {
|
||||
super(new Properties());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package net.xevianlight.aphelion.item;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
public class TestItem extends Item {
|
||||
public TestItem() {
|
||||
super(new Properties());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user