Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
8852047
Create SplinterBook
cpaca May 26, 2024
3e9d9ed
Create Splinter.java
cpaca May 26, 2024
48d3bd1
Add Splinter to EnchantmentManager
cpaca May 26, 2024
cc62ac6
Add validity checker
cpaca May 26, 2024
f80031a
Implement the bulk of Splinter
cpaca May 26, 2024
b44319d
Make splinter charge its own function
cpaca May 26, 2024
8edc9e0
Implement addAdjacentBlocks
cpaca May 26, 2024
fbc149a
There's no way a wildcard import is needed there.
cpaca May 26, 2024
974c8b6
Add book to CollectionManager
cpaca May 26, 2024
ee2889c
Bugfixes
cpaca May 26, 2024
c1bab3e
Stop Splinter from changing materials
cpaca May 26, 2024
883a8a4
Update src/main/java/xyz/holocons/mc/holoitemsrevamp/enchantment/Spli…
cpaca May 28, 2024
02f3418
Split splinter validation for location and type.
cpaca Jun 2, 2024
19cc7a1
semicolon
cpaca Jun 2, 2024
14e7a10
Basic refactor of Splinter
cpaca Jun 2, 2024
22443ce
Reorganize splinter veinmine-one-block
cpaca Jun 2, 2024
2319b75
This is pre-checked already
cpaca Jun 2, 2024
e77dd1d
Remove unused variable
cpaca Jun 2, 2024
96cecca
dumb inversion error
cpaca Jun 2, 2024
35a04b9
Make splinter break multiple blocks per tick
cpaca Jun 2, 2024
78d6f05
Start of splinter v2
cpaca Jun 6, 2024
4f67107
Update src/main/java/xyz/holocons/mc/holoitemsrevamp/enchantment/Spli…
cpaca Jun 6, 2024
5dbafd9
Update src/main/java/xyz/holocons/mc/holoitemsrevamp/enchantment/Spli…
cpaca Jun 6, 2024
884a8a1
Fix non-compile bug
cpaca Jun 11, 2024
679ea87
Separate into is-shroom and is-log checks
cpaca Jun 11, 2024
fe66194
Wrong mushroom type check
cpaca Jun 11, 2024
a212ecc
Add isTrunkBlock function
cpaca Jun 11, 2024
8241e2f
Implement getPossibleBranches
cpaca Jun 11, 2024
835ce96
Trunks shouldn't return theirself
cpaca Jun 11, 2024
c514425
Implement getLegalNextMaterials
cpaca Jun 11, 2024
257bf7c
Implement scheduleSplinterAbility
cpaca Jun 11, 2024
d499b16
Fix tryCleanupSplinterData using new function
cpaca Jun 11, 2024
2cb8e2d
Finish up onBlockBreak
cpaca Jun 11, 2024
84f59d9
Forgot shroom branches also go downwards
cpaca Jun 11, 2024
87b8a39
Begin rework
dlee13 Jun 22, 2024
bd562cd
Pre-increment and pre-decrement
dlee13 Jun 22, 2024
57e0166
Avoid storing player objects
dlee13 Jun 22, 2024
a1880e5
Merge branch 'master' into Splinter
cpaca Jun 24, 2024
f6c8446
Fix logic for removing context
dlee13 Jun 24, 2024
acc138a
Merge branch 'Splinter' of https://github.com/cpaca/HoloItems into Sp…
dlee13 Jun 24, 2024
aece464
Add missing check
dlee13 Jun 24, 2024
d11f42e
Add null check for player
cpaca Jun 27, 2024
8c7320d
Move null check
dlee13 Jun 28, 2024
067f589
Merge branch 'master' into Splinter
dlee13 Jun 30, 2024
c505c98
Remove comment
dlee13 Jun 30, 2024
3ceadc8
Implement search for mushroom stem and brown mushroom block
dlee13 Jul 2, 2024
2fc8a42
Implement search for red mushroom block
dlee13 Jul 3, 2024
735a263
Merge branch 'master' into Splinter
dlee13 Jul 3, 2024
e58d635
Fix Splinter stopping too early
dlee13 Jul 3, 2024
97bcc55
Add special case splinter types
dlee13 Jul 3, 2024
382d9b5
Implement cherry
dlee13 Jul 5, 2024
c5b8e18
Implement acacia
dlee13 Jul 5, 2024
417cca1
Implement generic branch
dlee13 Jul 5, 2024
843ea78
Fix edge case for oak
dlee13 Jul 5, 2024
5c6b90a
Fix typo
dlee13 Jul 5, 2024
4b3e9fb
Merge branch 'master' into Splinter
dlee13 Jul 15, 2024
c42929e
Begin to implement mangrove
dlee13 Jul 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ private static Set<CustomEnchantment> buildCustomEnchantments(HoloItemsRevamp pl
new Memento(plugin),
new TideRider(plugin),
new Backdash(plugin),
new Splinter(plugin),
new Plow(plugin)
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ public List<Component> getLore() {
}

private static Idol buildFlare(HoloItemsRevamp plugin) {
return new Idol() {
return new Idol(new SplinterBook(plugin)) {

@Override
public @NotNull String getSkinUrl() {
Expand Down
Loading