https://github.com/quat1024/boat-with-everything
boat with everything
https://github.com/quat1024/boat-with-everything
modfest modfest-singularity
Last synced: 4 months ago
JSON representation
boat with everything
- Host: GitHub
- URL: https://github.com/quat1024/boat-with-everything
- Owner: quat1024
- Created: 2022-08-13T04:09:58.000Z (almost 4 years ago)
- Default Branch: trunk
- Last Pushed: 2022-09-17T05:04:13.000Z (over 3 years ago)
- Last Synced: 2025-07-03T11:03:28.455Z (11 months ago)
- Topics: modfest, modfest-singularity
- Language: Java
- Homepage:
- Size: 3.01 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Boat with Everything
An exercise in how far you have to take a joke before it starts being funny. It's for both the modloaders, you can stop complaining now!
This is the 1.19 xplat branch. 1.18.2-fabric work is on the [1.18.2-back](https://github.com/quat1024/boat-with-everything/tree/1.18.2-back) branch.
Research:
* Can it be a more ✨ *well-integrated* ✨ mod, i.e use modloader services instead of aggressively hacking up the boat entity class lol.
* Apparently it does have incompatibilities with some other fabric mods, but the one i checked was... poorly put together. Yes this mod is a giant "coremod" but I at least tried to be polite with my patches.
* Make the 1.18.2 backport for forge too (I mean it's doable it's just going to be a giant pain in the tail)
## Inspiration
> *"boat with dirt block"*
- *[kingbdogz](https://twitter.com/kingbdogz/status/1513184765804961797)*
## Funny todo
currently it acts like an item frame. the boat stores "what blockstate should render in te boat" and "what itemstack was used to place that block" so that the same itemstack can be returned when you remove the block from the boat. i think this is what players expect, as opposed to vanilla block-like where if you rename stone then place and break it it loses the name
it's a leaky abstraction, though: stuff like flower pots where interacting with it can change the item stack, shulker boxes where the contents of the container should not be spilled on the ground, etc.
so ideally i would instead use the block loot table, right. except there's no actual block that's being broken! and also if you put stone in a boat and remove it you shouldn't get cobblestone so maybe simulate a silk touch tool or something, but also keeping all the itemstack data like name is still important, etc
as well as things like banners which need the block entity information to come from somewhere, and there's nice convenient methods for setting the block entity render up with... an itemstack