Meshiest / Mooblooms

A mod adding colorful and flowery cows. Moo!

Home Page:https://bit.ly/mooblooms

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mooblooms

Mooblooms is a mod inspired by Minecraft Earth game, adding colorful and flowery cows. Made using Fabric API.


API

Since 1.3.0, Mooblooms provides builders to easily add mooblooms and cluckshrooms to your mod.

Adding Mooblooms to your project

You can use Mooblooms as a library for your gradle project. Add the following in your build.gradle:

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    modCompile "com.github.YanisBft:Mooblooms:${mooblooms_version}"
}

Then, add the version in your gradle.properties:

mooblooms_version = 1.5.0

Available settings

  • name(Identifier name) (required)
  • blockState(BlockState state) (required)
  • blockStateRenderer(float scaleX, float scaleY, float scaleZ, double translationX, double translationY, double translationZ)
  • blockStateRenderer(Vec3f scale, Vec3d translation)
  • fireImmune()
  • validBlocks(BlockGags blocks)
  • validBlocks(List<Block> blocks)
  • cannotPlaceBlocks()
  • ignoredEffects(List<StatusEffect> effects)
  • ignoredDamageSources(List<DamageSource> damageSources)
  • particle(ParticleEffect particle)
  • lootTable(Identifier lootTable)
  • spawnEntry(SpawnEntry spawnEntry)
  • spawnEgg(int primaryColor, int secondaryColor)
  • spawnEgg(int primaryColor, int secondaryColor, ItemGroup group)
  • configCategory(MoobloomConfigCategory configCategory)

What you need to do

Some things still need to be done outside the builders:

  • Make the texture file of your entity
  • Create the model file of your spawn egg
  • Add spawn restriction settings
  • Add a config for your entity

Note that some of these are planned to be added to the builders in the future.

About

A mod adding colorful and flowery cows. Moo!

https://bit.ly/mooblooms

License:GNU Lesser General Public License v3.0


Languages

Language:Java 100.0%