Skip to content

Commit dc3d03e

Browse files
authored
Merge pull request #608 from ArikSquad/feat/the-park
The Park till Jungle Island
2 parents 347e13c + 82a2642 commit dc3d03e

239 files changed

Lines changed: 2223 additions & 310 deletions

File tree

Some content is hidden

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

commons/src/main/java/net/swofty/commons/skyblock/item/ItemType.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ public enum ItemType {
7474
REZAR_ABICASE(Material.PLAYER_HEAD, Rarity.RARE),
7575
SUMSUNG_G3_ABICASE(Material.PLAYER_HEAD, Rarity.RARE),
7676
SUMSUNG_GG_ABICASE(Material.PLAYER_HEAD, Rarity.RARE),
77+
CAMPFIRE_TALISMAN_1(Material.PLAYER_HEAD, Rarity.COMMON),
7778

7879
/**
7980
* Community Shop Items
@@ -583,6 +584,8 @@ public enum ItemType {
583584
MINER_ARMOR_BOOTS(Material.IRON_BOOTS, Rarity.RARE),
584585

585586
CHARLIE_TROUSERS(Material.LEATHER_LEGGINGS, Rarity.COMMON),
587+
KELLY_TSHIRT(Material.LEATHER_CHESTPLATE, Rarity.COMMON),
588+
MELODY_SHOES(Material.LEATHER_BOOTS, Rarity.COMMON),
586589

587590
/**
588591
* Pickaxes

configuration/skyblock/Minestom.regions.csv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,6 @@ barn_1,THE_BARN,82,26,-177,250,120,-334,THE_FARMING_ISLANDS,
8686
birch_forest,BIRCH_PARK,-255,114,26,-336,41,-90,THE_PARK
8787
spruce_forest,SPRUCE_WOODS,-387,151,-22,-309,59,107,THE_PARK
8888
dark_thicket,DARK_THICKET,-333,148,-24,-415,59,-122,THE_PARK
89-
jungle,JUNGLE_ISLAND,-306,149,-130,-507,68,-18,THE_PARK
89+
trial_of_fire,TRIALS_OF_FIRE,-369,120,-100,-357,101,-88,THE_PARK
90+
jungle,JUNGLE_ISLAND,-417,149,-130,-507,68,-18,THE_PARK
9091
savanna,SAVANNA_WOODLAND,-467,155,-20,-383,56,102,THE_PARK
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
items:
2+
- id: CAMPFIRE_TALISMAN_1
3+
material: PLAYER_HEAD
4+
rarity: COMMON
5+
lore:
6+
- "§7Heal §c4❤ §7 per second while burning"
7+
- " "
8+
- "§6Trial of Fire II"
9+
- "§8§o\"Fire guy!\""
10+
components:
11+
- id: SKULL_HEAD
12+
texture: 3ada666715bfd2aa9fbd81daef59b9fe1c96c4fa0d08dbc72eae5633177dbf88
13+
- id: ACCESSORY
14+
- id: DEFAULT_SOULBOUND
15+
- id: CUSTOM_DISPLAY_NAME
16+
name: "§fCampfire Initiate Badge I"

configuration/skyblock/items/vanilla/blocks/wood/birch.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ items:
2222
material: BIRCH_WOOD
2323
rarity: COMMON
2424
components:
25+
- id: CUSTOM_DROP
26+
rules:
27+
- drops:
28+
- item: BIRCH_LOG
29+
chance: 1
30+
amount: 1
2531
- id: SELLABLE
2632
value: 2.0
2733
- id: PLACEABLE

type.bedwarsgame/src/main/java/net/swofty/type/bedwarsgame/game/GameWorldManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public VillagerProfession profession() {
150150
}
151151

152152
@Override
153-
public boolean looking() {
153+
public boolean looking(HypixelPlayer player) {
154154
return true;
155155
}
156156

@@ -189,7 +189,7 @@ public VillagerProfession profession() {
189189
}
190190

191191
@Override
192-
public boolean looking() {
192+
public boolean looking(HypixelPlayer player) {
193193
return true;
194194
}
195195

type.bedwarslobby/src/main/java/net/swofty/type/bedwarslobby/npcs/NPCDoormanDave.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public Pos position(HypixelPlayer player) {
3636
}
3737

3838
@Override
39-
public boolean looking() {
39+
public boolean looking(HypixelPlayer player) {
4040
return true;
4141
}
4242
});

type.bedwarslobby/src/main/java/net/swofty/type/bedwarslobby/npcs/NPCDoubles.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public Pos position(HypixelPlayer player) {
6363
}
6464

6565
@Override
66-
public boolean looking() {
66+
public boolean looking(HypixelPlayer player) {
6767
return false;
6868
}
6969
});

type.bedwarslobby/src/main/java/net/swofty/type/bedwarslobby/npcs/NPCDream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public Pos position(HypixelPlayer player) {
6262
}
6363

6464
@Override
65-
public boolean looking() {
65+
public boolean looking(HypixelPlayer player) {
6666
return false;
6767
}
6868
});

type.bedwarslobby/src/main/java/net/swofty/type/bedwarslobby/npcs/NPCFourFour.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public Pos position(HypixelPlayer player) {
6262
}
6363

6464
@Override
65-
public boolean looking() {
65+
public boolean looking(HypixelPlayer player) {
6666
return false;
6767
}
6868
});

type.bedwarslobby/src/main/java/net/swofty/type/bedwarslobby/npcs/NPCHolidayMan.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public Pos position(HypixelPlayer player) {
3838
}
3939

4040
@Override
41-
public boolean looking() {
41+
public boolean looking(HypixelPlayer player) {
4242
return false;
4343
}
4444
});

0 commit comments

Comments
 (0)