9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2026-01-06 15:41:43 +00:00

Pillagers Work

This commit is contained in:
Brian Fopiano
2021-09-23 21:05:39 -07:00
parent 7f1ef752b5
commit 3c6eaa948a
15 changed files with 143 additions and 13 deletions

View File

@@ -71,7 +71,18 @@
"direction": "NORTH_NEGATIVE_Z"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "pillager"
}
],
"overStilt": 0,
"chance": 1,
"meld": false,

View File

@@ -27,7 +27,18 @@
"direction": "EAST_POSITIVE_X"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "pillager"
}
],
"overStilt": 0,
"chance": 1,
"meld": false,

View File

@@ -122,7 +122,18 @@
"direction": "EAST_POSITIVE_X"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "igolem"
}
],
"place": [],
"rotation": {
"enabled": true,

View File

@@ -77,7 +77,18 @@
"direction": "UP_POSITIVE_Y"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "igolem"
}
],
"place": [],
"rotation": {
"enabled": true,

View File

@@ -71,7 +71,18 @@
"direction": "UP_POSITIVE_Y"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "igolem"
}
],
"overStilt": 0,
"chance": 1,
"meld": false,

View File

@@ -53,7 +53,18 @@
"direction": "SOUTH_POSITIVE_Z"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "igolem"
}
],
"overStilt": 0,
"chance": 1,
"meld": false,

View File

@@ -66,7 +66,18 @@
"direction": "SOUTH_POSITIVE_Z"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "igolem"
}
],
"overStilt": 0,
"chance": 1,
"meld": false,

View File

@@ -53,7 +53,18 @@
"direction": "SOUTH_POSITIVE_Z"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "igolem"
}
],
"overStilt": 0,
"chance": 1,
"meld": false,

View File

@@ -53,7 +53,18 @@
"direction": "SOUTH_POSITIVE_Z"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "igolem"
}
],
"overStilt": 0,
"chance": 1,
"meld": false,

View File

@@ -253,7 +253,18 @@
"direction": "UP_POSITIVE_Y"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "pillager"
}
],
"overStilt": 0,
"chance": 1,
"meld": false,

View File

@@ -121,7 +121,18 @@
"direction": "WEST_NEGATIVE_X"
}
],
"placementOptions": {
"placementOptions": {"markers": [
{
"emptyAbove": true,
"maximumMarkers": 1,
"mark": [
{
"block": "minecraft:birch_planks"
}
],
"marker": "pillager"
}
],
"overStilt": 0,
"chance": 1,
"meld": false,

View File

@@ -1,6 +1,5 @@
{
"pieces": [
"pillager_outpost/watchtower",
"pillager_outpost/watchtower",
"pillager_outpost/watchtower",
"pillager_outpost/watchtower_overgrown"

4
markers/igolem.json Normal file
View File

@@ -0,0 +1,4 @@
{
"removeOnChange": true,
"spawners": ["igolem"]
}

View File

@@ -1,4 +1,4 @@
{
"removeOnChange": true,
"spawners": ["pillager"]
"spawners": ["pillager", "pillager-respawn"]
}

6
spawners/igolem.json Normal file
View File

@@ -0,0 +1,6 @@
{"initialSpawns": [{
"entity": "unique/iron_golem",
"rarity": 1,
"maxSpawns": 5,
"minSpawns": 4
}]}