This repository has been archived by the owner on Aug 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
NoahJelen
committed
Jun 7, 2018
1 parent
d13c91d
commit 520037d
Showing
13 changed files
with
389 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/java/com/NetherNoah/ParadiseMod/blocks/misc/glowingIce.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.NetherNoah.ParadiseMod.blocks.misc; | ||
|
||
import net.minecraft.block.Block; | ||
import net.minecraft.block.SoundType; | ||
import net.minecraft.block.material.Material; | ||
import net.minecraft.creativetab.CreativeTabs; | ||
|
||
public class glowingIce extends Block { | ||
public glowingIce() { | ||
super(Material.ICE); | ||
setUnlocalizedName("glowingIce"); | ||
setRegistryName("glowing_ice"); | ||
setHardness(.2F); | ||
setResistance(2F); | ||
setCreativeTab(CreativeTabs.BUILDING_BLOCKS); | ||
setHarvestLevel("pickaxe",0); | ||
setLightLevel(.46666667F); | ||
setSoundType(SoundType.GLASS); | ||
setDefaultSlipperiness(1F); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.