minecraft_items 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/minecraft_items.gemspec +2 -4
- metadata +2 -3
- data/lib/item_list.rb +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea0afe68a5c059f2044e9ae46bafaac8f96fcdd8006f97c152d78428733df5a5
|
4
|
+
data.tar.gz: 4519a1275cd10268b41e4469c478d481d18b4123c821b9dcd3f01ef3a5658822
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2c2767d450f4b96a7fd53e8423f1efc817b4aa7a817d21282594efe963caaf37c6c3916c7d43e5aed5668f85fa436eec1c73dec54fc6f7cdb0bf763096c3f55
|
7
|
+
data.tar.gz: 3be37bfecd8c45dc00a2cd2ce7da704a155fcd5f7bd28e27ac4fcdda04394c477638d5d7f2432740e9261ca5c8acfee8fbbfd84ce16aac65ff7ccb8c68cf774a
|
data/minecraft_items.gemspec
CHANGED
@@ -1,13 +1,11 @@
|
|
1
|
-
$:.push File.expand_path("../lib", __FILE__)
|
2
|
-
|
3
1
|
Gem::Specification.new do |s|
|
4
2
|
s.name = 'minecraft_items'
|
5
|
-
s.version = '0.1.
|
3
|
+
s.version = '0.1.3'
|
6
4
|
s.licenses = ['MIT']
|
7
5
|
s.summary = "A list of most minecraft items"
|
8
6
|
s.description = "With a few simple commands return all the types of blocks as well as each types variant."
|
9
7
|
s.authors = ["Maximilian Alexander", "Zane Sandin"]
|
10
8
|
s.email = 'maxx.stack15@gmail.com'
|
11
9
|
s.homepage = 'https://github.com/malexander15/minecraft_items'
|
12
|
-
s.files = Dir['lib
|
10
|
+
s.files = Dir['lib/block_types.rb', 'lib/minecraft_items.rb', 'lib/concerns/*.rb', 'lib/concerns/*.yml', 'minecraft_items.gemspec', 'README.md', 'LICENSE.md', 'Gemfile']
|
13
11
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minecraft_items
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maximilian Alexander
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-03-
|
12
|
+
date: 2023-03-15 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: With a few simple commands return all the types of blocks as well as
|
15
15
|
each types variant.
|
@@ -26,7 +26,6 @@ files:
|
|
26
26
|
- lib/concerns/minecraft_variants.rb
|
27
27
|
- lib/concerns/types.yml
|
28
28
|
- lib/concerns/variants.yml
|
29
|
-
- lib/item_list.rb
|
30
29
|
- lib/minecraft_items.rb
|
31
30
|
- minecraft_items.gemspec
|
32
31
|
homepage: https://github.com/malexander15/minecraft_items
|
data/lib/item_list.rb
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
WOODS = {
|
2
|
-
"Acacia" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"],
|
3
|
-
"Oak" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"],
|
4
|
-
"Birch" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"],
|
5
|
-
"Jungle" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"],
|
6
|
-
"Dark Oak" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"],
|
7
|
-
"Spruce" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"],
|
8
|
-
"Spruce" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"],
|
9
|
-
"Crimson" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"],
|
10
|
-
"Warped" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"],
|
11
|
-
"Mangrove" => ["Block", "Slab", "Stairs", "Fence", "Gate", "Trapdoor", "Pressure plate"]
|
12
|
-
}
|
13
|
-
ROCKS = {
|
14
|
-
"Stone" => ["Slab", "Stairs", "Wall"],
|
15
|
-
"Smooth Stone" => ["Slab", "Stairs", "Wall"],
|
16
|
-
"Cobblestone" => ["Slab", "Stairs", "Wall"],
|
17
|
-
"Stone Brick" => ["Slab", "Stairs", "Wall"],
|
18
|
-
"Andesite" => ["Slab", "Stairs", "Wall"],
|
19
|
-
"Polished Andesite",["Slab", "Stairs", "Wall"],
|
20
|
-
"Diorite" => ["Slab", "Stairs", "Wall"],
|
21
|
-
"Polished Diorite" => ["Slab", "Stairs", "Wall"],
|
22
|
-
"Granite" => ["Slab", "Stairs", "Wall"],
|
23
|
-
"Polished Granite" => ["Slab", "Stairs", "Wall"],
|
24
|
-
"Sandstone" => ["Slab", "Stairs", "Wall"],
|
25
|
-
"Red Sandstone" => ["Slab", "Stairs", "Wall"],
|
26
|
-
"Brick" => ["Slab", "Stairs", "Wall"],
|
27
|
-
"Prismarine" => ["Slab", "Stairs", "Wall"],
|
28
|
-
"Nether Brick" => ["Slab", "Stairs", "Wall"],
|
29
|
-
"Quartz" => ["Slab", "Stairs", "Wall"],
|
30
|
-
"Purpur" => ["Slab", "Stairs", "Wall"],
|
31
|
-
"Endstone" => ["Slab", "Stairs", "Wall"],
|
32
|
-
"Blackstone" => ["Slab", "Stairs", "Wall"],
|
33
|
-
"Copper" => ["Slab", "Stairs", "Wall"],
|
34
|
-
"Deepslate" => ["Slab", "Stairs", "Wall"],
|
35
|
-
"Mud" => ["Slab", "Stairs", "Wall"]
|
36
|
-
}
|
37
|
-
REDSTONE = %w(Comparator Repeater Redstone_dust Redstone_torch Sculk Target_block Tripwire Button Pressure_plate Dispenser Dropper Hopper Chest Piston Stick_piston Activator_rails Detector_rails Powered_rails Rails Jukebox Notblock TNT Iron)
|