Skip to content

Commit b6549e2

Browse files
committed
Merge remote-tracking branch 'origin/master' into feat/jerrysworkshop
# Conflicts: # configuration/skyblock/Minestom.regions.csv
2 parents f31fe39 + dc3d03e commit b6549e2

240 files changed

Lines changed: 3216 additions & 269 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: 7 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
@@ -582,6 +583,10 @@ public enum ItemType {
582583
MINER_ARMOR_LEGGINGS(Material.IRON_LEGGINGS, Rarity.RARE),
583584
MINER_ARMOR_BOOTS(Material.IRON_BOOTS, Rarity.RARE),
584585

586+
CHARLIE_TROUSERS(Material.LEATHER_LEGGINGS, Rarity.COMMON),
587+
KELLY_TSHIRT(Material.LEATHER_CHESTPLATE, Rarity.COMMON),
588+
MELODY_SHOES(Material.LEATHER_BOOTS, Rarity.COMMON),
589+
585590
/**
586591
* Pickaxes
587592
*/
@@ -743,6 +748,8 @@ public enum ItemType {
743748
HUB_DARK_AUCTION_TRAVEL_SCROLL(Material.MAP, Rarity.EPIC),
744749
HUB_CRYPTS_TRAVEL_SCROLL(Material.MAP, Rarity.EPIC),
745750

751+
FORAGING_1_TRAVEL_SCROLL(Material.MAP, Rarity.RARE),
752+
746753
/**
747754
* Crimson Isles
748755
*/

configuration/skyblock/Minestom.regions.csv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ 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
9192
sherry,SHERRYS_SHOWROOM,21,98,86,7,76,108,JERRYS_WORKSHOP
9293
jerry,JERRYS_WORKSHOP,139,183,200,-163,30,-167,JERRYS_WORKSHOP
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"
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
items:
2+
- id: CHARLIE_TROUSERS
3+
rarity: COMMON
4+
default_statistics:
5+
defense: 15
6+
health: 45
7+
foraging_fortune: 6
8+
components:
9+
- id: CUSTOM_DISPLAY_NAME
10+
display_name: Charlie's Trousers
11+
- id: STANDARD_ITEM
12+
standard_item_type: HELMET
13+
- id: LEATHER_COLOR
14+
r: '20'
15+
g: '121'
16+
b: '100'
17+
- id: TRACKED_UNIQUE
18+
- id: MUSEUM
19+
museum_category: ARMOR_SETS

configuration/skyblock/items/travelscroll.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ items:
3535
components:
3636
- id: TRAVEL_SCROLL
3737
scroll_type: HUB_DARK_AUCTION
38+
- id: FORAGING_1_TRAVEL_SCROLL
39+
material: PAPER
40+
rarity: RARE
41+
components:
42+
- id: TRAVEL_SCROLL
43+
scroll_type: THE_PARK
3844
- id: HUB_CRYPTS_TRAVEL_SCROLL
3945
material: PAPER
4046
rarity: UNCOMMON

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
});

0 commit comments

Comments
 (0)