Compare commits
13
Commits
780a561c0b
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d06793cfe1 | ||
|
|
df1e0d6d23 | ||
|
|
a265349c69 | ||
|
|
31ca3cff21 | ||
|
|
ecfa584f3c | ||
|
|
3b83beeba4 | ||
|
|
fc8f4c2c15 | ||
|
|
783c1f12ad | ||
|
|
2c5fb71889 | ||
|
|
fd3918e147 | ||
|
|
c2d6eb8034 | ||
|
|
ad3a76a3ca | ||
|
|
5a92832d99 |
BIN
Binary file not shown.
Vendored
+9
-5
@@ -1,11 +1,15 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
stage('Gradle') {
|
// stage('Gradle') {
|
||||||
steps {
|
// steps {
|
||||||
sh './zip.sh'
|
// sh '''
|
||||||
}
|
// set +x
|
||||||
}
|
// chmod +x zip.sh
|
||||||
|
// ./zip.sh
|
||||||
|
// '''
|
||||||
|
// }
|
||||||
|
// }
|
||||||
stage('Archive') {
|
stage('Archive') {
|
||||||
steps {
|
steps {
|
||||||
archiveArtifacts artifacts: 'Galaxy.zip', followSymlinks: false
|
archiveArtifacts artifacts: 'Galaxy.zip', followSymlinks: false
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "minecraft:gift",
|
|
||||||
"pools": [
|
|
||||||
{
|
|
||||||
"rolls": 1,
|
|
||||||
"entries": [
|
|
||||||
{
|
|
||||||
"type": "minecraft:item",
|
|
||||||
"quality": 1,
|
|
||||||
"name": "minecraft:elytra",
|
|
||||||
"weight": 30
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "minecraft:item",
|
|
||||||
"quality": 1,
|
|
||||||
"name": "minecraft:dragon_head",
|
|
||||||
"weight": 30
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "minecraft:item",
|
|
||||||
"functions": [
|
|
||||||
{
|
|
||||||
"add": false,
|
|
||||||
"count": {
|
|
||||||
"type": "minecraft:uniform",
|
|
||||||
"max": 8.0,
|
|
||||||
"min": 2.0
|
|
||||||
},
|
|
||||||
"function": "minecraft:set_count"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"name": "minecraft:dragon_breath",
|
|
||||||
"weight": 40
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:stonecutting",
|
"type": "minecraft:stonecutting",
|
||||||
"ingredient": "minecraft:copper_block",
|
"ingredient": "minecraft:weathered_copper",
|
||||||
"result": {
|
"result": {
|
||||||
"count": 3,
|
"count": 3,
|
||||||
"id": "minecraft:weathered_copper_trapdoor"
|
"id": "minecraft:weathered_copper_trapdoor"
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"pattern": [
|
||||||
|
" # ",
|
||||||
|
"#G#",
|
||||||
|
" # "
|
||||||
|
],
|
||||||
|
"key": {
|
||||||
|
"#": "minecraft:obsidian",
|
||||||
|
"G": "minecraft:ghast_tear"
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:crying_obsidian",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"key": {
|
||||||
|
"#": "minecraft:stick",
|
||||||
|
"X": "minecraft:string",
|
||||||
|
"Y": "minecraft:dropper"
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
" #X",
|
||||||
|
"#YX",
|
||||||
|
" #X"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:dispenser"
|
||||||
|
},
|
||||||
|
"group": "dispenser"
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "building",
|
||||||
|
"key": {
|
||||||
|
"#": [
|
||||||
|
"minecraft:podzol",
|
||||||
|
"minecraft:coarse_dirt",
|
||||||
|
"minecraft:mycelium",
|
||||||
|
"minecraft:rooted_dirt",
|
||||||
|
"minecraft:dirt"
|
||||||
|
],
|
||||||
|
"S": [
|
||||||
|
"minecraft:wheat_seeds",
|
||||||
|
"minecraft:melon_seeds",
|
||||||
|
"minecraft:pumpkin_seeds",
|
||||||
|
"minecraft:beetroot_seeds"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
" S ",
|
||||||
|
"S#S",
|
||||||
|
" S "
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:grass_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"category": "redstone",
|
||||||
|
"ingredients": [
|
||||||
|
"minecraft:dropper",
|
||||||
|
"minecraft:bow"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:dispenser"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "redstone",
|
||||||
|
"key": {
|
||||||
|
"#": "minecraft:stick",
|
||||||
|
"X": "minecraft:string",
|
||||||
|
"Y": "minecraft:dropper"
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
" #X",
|
||||||
|
"#YX",
|
||||||
|
" #X"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:dispenser"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:blasting",
|
||||||
|
"category": "misc",
|
||||||
|
"cookingtime": 800,
|
||||||
|
"experience": 5.6,
|
||||||
|
"group": "copper_block",
|
||||||
|
"ingredient": "minecraft:raw_copper_block",
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:copper_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:smelting",
|
||||||
|
"category": "misc",
|
||||||
|
"cookingtime": 1600,
|
||||||
|
"experience": 5.6,
|
||||||
|
"group": "copper_block",
|
||||||
|
"ingredient": "minecraft:raw_copper_block",
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:copper_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:blasting",
|
||||||
|
"category": "misc",
|
||||||
|
"cookingtime": 800,
|
||||||
|
"experience": 9.0,
|
||||||
|
"group": "gold_block",
|
||||||
|
"ingredient": "minecraft:raw_gold_block",
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:gold_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:smelting",
|
||||||
|
"category": "misc",
|
||||||
|
"cookingtime": 1600,
|
||||||
|
"experience": 9.0,
|
||||||
|
"group": "gold_block",
|
||||||
|
"ingredient": "minecraft:raw_gold_block",
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:gold_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:blasting",
|
||||||
|
"category": "misc",
|
||||||
|
"cookingtime": 800,
|
||||||
|
"experience": 5.6,
|
||||||
|
"group": "iron_block",
|
||||||
|
"ingredient": "minecraft:raw_iron_block",
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:iron_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:smelting",
|
||||||
|
"category": "misc",
|
||||||
|
"cookingtime": 1600,
|
||||||
|
"experience": 5.6,
|
||||||
|
"group": "iron_block",
|
||||||
|
"ingredient": "minecraft:raw_iron_block",
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:iron_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
+2
-3
@@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"pack": {
|
"pack": {
|
||||||
"pack_format": 48,
|
"pack_format": 81,
|
||||||
"description": "Data pack for resources provided by Galaxy",
|
"description": "Data pack for resources provided by Altitude"
|
||||||
"supported_formats": {"min_inclusive": 48, "max_inclusive": 48}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user