Started by
OffsetPaladin89
on
Topic category: Help with Minecraft modding (Java Edition)
What I want to do is make it possible for pigs to drop pig chunks. Pig chunks are custom items that I want to have a set drop chance and amount from pigs. Is there a way for me to implement this?
Make a procedure select the event "on entity dies"
add a check if entity is a subtype of pig{
spawn gem(pig chunk)
}
How would I make it so a vanilla block drops a modded item?