Skip to content

Commit d279d4f

Browse files
Merge pull request #1 from LukeIsCodingNet/dev
Merge dev into master
2 parents 2321eb6 + b409934 commit d279d4f

File tree

118 files changed

+1725
-13
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+1725
-13
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
***
3+
4+
## Version 0.0.1-alpha
5+
* The first alpha release of the mod.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package net.lukeiscoding.minecraft.forge.opitemsmod.blocks;
2+
/*
3+
Copyright (C) 2022 Luke Is Coding
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
import net.minecraft.world.level.block.Block;
20+
import net.minecraft.world.level.block.SoundType;
21+
import net.minecraft.world.level.block.state.BlockBehaviour;
22+
import net.minecraft.world.level.material.Material;
23+
24+
public class CarbonadoBlock extends Block {
25+
26+
public CarbonadoBlock() {
27+
super(BlockBehaviour.Properties.of(Material.METAL)
28+
.strength(8.0f, 12.0f)
29+
.sound(SoundType.STONE)
30+
.requiresCorrectToolForDrops());
31+
}
32+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package net.lukeiscoding.minecraft.forge.opitemsmod.blocks;
2+
/*
3+
Copyright (C) 2022 Luke Is Coding
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
import net.minecraft.world.level.block.Block;
20+
import net.minecraft.world.level.block.SoundType;
21+
import net.minecraft.world.level.block.state.BlockBehaviour;
22+
import net.minecraft.world.level.material.Material;
23+
24+
public class CarbonadoDeepslateOre extends Block {
25+
26+
public CarbonadoDeepslateOre() {
27+
super(BlockBehaviour.Properties.of(Material.STONE)
28+
.strength(7.0f, 11.0f)
29+
.sound(SoundType.DEEPSLATE)
30+
.requiresCorrectToolForDrops());
31+
}
32+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package net.lukeiscoding.minecraft.forge.opitemsmod.blocks;
2+
/*
3+
Copyright (C) 2022 Luke Is Coding
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
import net.minecraft.world.level.block.Block;
20+
import net.minecraft.world.level.block.SoundType;
21+
import net.minecraft.world.level.block.state.BlockBehaviour;
22+
import net.minecraft.world.level.material.Material;
23+
24+
public class CarbonadoOre extends Block {
25+
26+
public CarbonadoOre() {
27+
super(BlockBehaviour.Properties.of(Material.STONE)
28+
.strength(7.0f, 11.0f)
29+
.sound(SoundType.STONE)
30+
.requiresCorrectToolForDrops());
31+
}
32+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package net.lukeiscoding.minecraft.forge.opitemsmod.blocks;
2+
/*
3+
Copyright (C) 2022 Luke Is Coding
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
import net.minecraft.world.level.block.SlabBlock;
20+
import net.minecraft.world.level.block.SoundType;
21+
import net.minecraft.world.level.block.state.BlockBehaviour;
22+
import net.minecraft.world.level.material.Material;
23+
24+
public class CarbonadoSlab extends SlabBlock {
25+
26+
public CarbonadoSlab() {
27+
super(BlockBehaviour.Properties.of(Material.METAL)
28+
.sound(SoundType.STONE)
29+
.strength(7.0f, 11.0f)
30+
.requiresCorrectToolForDrops());
31+
}
32+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package net.lukeiscoding.minecraft.forge.opitemsmod.blocks;
2+
/*
3+
Copyright (C) 2022 Luke Is Coding
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
import net.minecraft.world.level.block.Block;
20+
import net.minecraft.world.level.block.SoundType;
21+
import net.minecraft.world.level.block.state.BlockBehaviour;
22+
import net.minecraft.world.level.material.Material;
23+
24+
public class RubyDeepslateOre extends Block {
25+
26+
public RubyDeepslateOre() {
27+
super(BlockBehaviour.Properties.of(Material.STONE)
28+
.strength(8.5f, 10.5f)
29+
.sound(SoundType.DEEPSLATE)
30+
.requiresCorrectToolForDrops());
31+
}
32+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package net.lukeiscoding.minecraft.forge.opitemsmod.blocks;
2+
/*
3+
Copyright (C) 2022 Luke Is Coding
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
import net.minecraft.world.level.block.Block;
20+
import net.minecraft.world.level.block.SoundType;
21+
import net.minecraft.world.level.block.state.BlockBehaviour;
22+
import net.minecraft.world.level.material.Material;
23+
24+
public class RubyOre extends Block {
25+
26+
public RubyOre() {
27+
super(BlockBehaviour.Properties.of(Material.STONE)
28+
.strength(8.5f, 10.5f)
29+
.sound(SoundType.STONE)
30+
.requiresCorrectToolForDrops());
31+
}
32+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package net.lukeiscoding.minecraft.forge.opitemsmod.blocks;
2+
/*
3+
Copyright (C) 2022 Luke Is Coding
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
import net.minecraft.world.level.block.SlabBlock;
20+
import net.minecraft.world.level.block.SoundType;
21+
import net.minecraft.world.level.block.state.BlockBehaviour;
22+
import net.minecraft.world.level.material.Material;
23+
24+
public class RubySlab extends SlabBlock {
25+
26+
public RubySlab() {
27+
super(BlockBehaviour.Properties.of(Material.METAL)
28+
.strength(5.5f, 6.0f)
29+
.sound(SoundType.STONE)
30+
.requiresCorrectToolForDrops());
31+
}
32+
}

src/main/java/net/lukeiscoding/minecraft/forge/opitemsmod/blocks/TopazDeepslateOre.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class TopazDeepslateOre extends Block {
2525

2626
public TopazDeepslateOre() {
2727
super(BlockBehaviour.Properties.of(Material.STONE)
28-
.sound(SoundType.STONE)
28+
.sound(SoundType.DEEPSLATE)
2929
.strength(9.0f, 13.2f)
3030
.requiresCorrectToolForDrops());
3131
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package net.lukeiscoding.minecraft.forge.opitemsmod.blocks;
2+
/*
3+
Copyright (C) 2022 Luke Is Coding
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
import net.minecraft.world.level.block.SlabBlock;
20+
import net.minecraft.world.level.block.SoundType;
21+
import net.minecraft.world.level.block.state.BlockBehaviour;
22+
import net.minecraft.world.level.material.Material;
23+
24+
public class TopazSlab extends SlabBlock {
25+
26+
public TopazSlab() {
27+
super(BlockBehaviour.Properties.of(Material.METAL)
28+
.sound(SoundType.STONE)
29+
.strength(6.5f, 8.44f)
30+
.requiresCorrectToolForDrops());
31+
}
32+
}

0 commit comments

Comments
 (0)