Started by
DigiDuncan
on
Topic category: Help with Minecraft modding (Java Edition)
I'd like to add a custom painting pool. The idea is a separate painting item that only pulls painting from my custom options, and that my custom painting don't enter the pool for the default painting item in Minecraft. Is this possible?
Totally possible. You'll need to design an entity that mimics the behavior of a painting, (which is the tricky part), but you essentially just need to make an entity that drops your item when punched, or if there isn't a wall directly in whicever direction it's facing. Then just make your custom painting item spawn your custom painting entity. This is basically how vanilla paintings work, and shouldn't be too difficult to replicate.