作者:rebot | 分类:模组
Minecraft 版本: 26.1 26.1.1 26.1.2
平台: fabric
标签: cursed decoration mobs
|
|
|
## Underwater Blood Fog
All effects are fully customizable through Mod Menu and Cloth Config API.
Simple Blood provides an API to customize blood behavior for your mod's entities.
import com.bloodmod.BloodModAPI; import net.minecraft.util.Identifier;
// In your mod's initialization:
BloodModAPI.registerEntityBlood(
Identifier.of("yourmod", "custom_mob"),
new BloodModAPI.BloodSettings()
.setColor(0xFF0000) // Custom blood color
.setCanBleed(true) // Enable/disable bleeding
.setCanDripAtLowHealth(true) // Low health dripping
.setTransformToStains(true) // Stains/fog transformation
);
请登录后举报
暂无评论,抢个沙发吧~