Перейти к содержимому
Mineforgian

Life-Size Bdubs

Befriend a life-size replica of BDoubleO100(Bdubs)! Or add your own friends with data-driven variants! Made for ModFest 1.21!

11K загрузок17 подписчиковMITfabricneoforge

Обновлён 11 января 2026 г. · опубликован 3 ноября 2024 г.

Life-Size Bdubs

Befriend your own life-size Bdubs!

Made for Modfest 1.21!

Ever get tired of being by yourself? Ever wish you could have your own little BDoubleO100(Bdubs) friend? Well now you can!

Good Times With Bdubs

Simply give Bdubs a clock, and he'll do anything for you!
But clocks aren't the only items you can give Bdubs. Giving him a moss block gives him a mossy costume, and giving him a tnt block... well, he becomes slightly unhinged.

Upon giving a Bdubs an item, that Bdubs becomes yours! You can now right-click him to put him on your shoulder! Bdubs tells you little fun facts and quotes while on your shoulder! How fun? (On NeoForge, the messages sent from Bdubs on your shoulder can be disabled in the client config.)

Notice: Giving sugar to Bdubs may result in unexpected consequences. You have been warned!

Additional items can also be given for different variants.

  • A ladder for Etho
  • A Heart of The Sea for GeminiTay
  • An enchanting table for GoodTimesWithScar
  • An egg for Grian
  • A redstone dust for Impulse
  • A snowball for Skizzleman
  • A verdant froglight(the green one) for SmallishBeans(Joel)
  • A saddle for SolidarityGaming(Jimmy/Timmy)
  • A redstone block for TangoTek
  • A sea pickle or pearlescent froglight(the purple one) for PearlescentMoon

Bdubs doesn't want to cause lag on your world though, so after 5 minutes of no interaction from the Bdubs owner, he'll disappear without a trace!

Note: As of Life-Size Bdubs v1.0.0, there is no way of finding a Bdubs entity in survival. He can only be spawned in creative. This may change in the future if I can find a nice vanilla-friendly way to implement it.

Shoulder Entity Locking

If there is an entity on your shoulder, right-clicking a slime ball will toggle the newly added shoulder entity locking. If your shoulder entities are locked, they cannot be removed from your shoulder under most circumstances.

This was done so that you can jump and fly around with Bdubs on your shoulders without needing to worry about him falling off! Do note that there are still ways for them to fall off, like changing gamemodes and dying.

Data Driven Variants

It turns out Bdubs taught data how to drive! Additional Bdubs variants can be added thanks using datapacks. It's quite simple really - so simple even Scar could do it(okay maybe not because the resource packs thing is weird but beyond that its a probably)!

The texture is the exact same as a Minecraft skin, so you can simply copy-paste a skin to add your own variant!

Custom Skins Variant via Commands

Alternatively, you can spawn a Bdubs with a custom skin via commands, just like player heads!

/summon lifesizebdubs:bdubsentity ~ ~ ~ {profile:"<username here>"}

This Bdubs will then take any item without changing skins.

Extras & Special Thanks

This mod was a mod created by a fan of HermitCraft(and friends of the Hermits), and means no harm towards any of the creators mentioned. It was originally a reference to the one bit ZombieCleo did where she made a tiny armor stand of Bdubs.

While all the skin textures were recreated by me to better fit the smaller entity and my art style, it is in no means supposed to undermine the work, creativity, and originality of the creator's original skins and their respective artist.

All the creator's mentioned via built-in Bdubs variants can be found here:

Dependencies & Compat

GeckoLib v4 is required.

For Life-Size Bdubs 1.0.1-1.0.5, Ears features are not supported/rendered, BUT Ears skins (including those with wings enabled) do not cause any transparency issues so long as Ears is installed.

For Life-Size Bdubs 1.1.0+, Ears features have not been tested. Should any issues happen, support might be (re)implemented.

Have fun!!


Adding your own life-size friend!

Adding your own Bdubs variant can be done with a datapack. This page does not tell you how to create a datapack.

Built-in examples: https://github.com/Superkat32/LifesizeBdubs/tree/main/src/main/generated/data/lifesizebdubs/lifesizebdubs/bdubs_variant

Note: The built-in examples assume the resource pack is from the resources folder. If you aren't working with a mod, you'll need to create your own resource pack along with the datapack.

For this example, we will be adding a new variant called "Booga". Let's begin!

Template Json (WIP)

Place your variant texture in your resource pack:
resources/assets/<your pack name>/textures/bdubs/<your variant name>.png

Copy-paste the following template into your data pack:
data/<your pack name>/lifesizebdubs/bdubs_variant/<your variant name>.json
and fill out the information using the guide below.

Note: As of Life-Size Bdubs 1.1.0+, multiple variants CAN use the same item! A random one is chosen at first, then it cycles alphabetically.

{
  "name": "",
  "texture": "",
  "item": "",
  "alt_item": "",
  "messages": [
    "",
    ""
  ],
  "timed_messages": [
    {
      "msg": "",
      "time": 12500
    }
  ]
}

Json explained

  • name: The name shown when the Bdubs variant sends messages and dies (Text component).
  • item: The item needed to give a Bdubs entity to turn it into that variant (Item).
  • alt_item*: An alternative item to give the Bdubs entity (Item).
  • texture: The texture used for the Bdubs variant (Resource location).
  • messages* : The list of possible messages the Bdubs variant can send once on their owner's shoulder (Text component array)
  • timed_messages*: A list of messages to be sent at a specific time to the owner if the Bdubs entity is on their shoulder (Array of Pair of Text component & Integer).
    • msg: The message sent at the specific time (Text component)
    • time: The time of day the message of msg should be sent. (Integer 0-24000)

*Optional fields - should not be added if you don't plan on using it.

Adding your own variant (WIP)

For this example, we will be adding a new variant called "Booga". Let's begin!

Add your skin texture

Add a Minecraft skin texture in:
resources/assets/<your pack name>/textures/bdubs/booga.png

Add your json file

Create a new json file in:
data/<your pack name here>/lifesizebdubs/bdubs_variant/booga.json

Copy-paste the template above into that newly created json file.

Change all the instances of <pack name here> to your pack name(sometimes referred to as pack id). Replace all instances of booga with your variant name, if you want a different one.

For rest of this example, the pack name is boogapack

{
  "name": "Mini Booga",
  "texture": "boogapack:textures/bdubs/booga.png",
  "item": "minecraft:diamond",
  "messages": [
    "Booga message 1",
    "Booga message 2 electric boogaloo"
  ],
  "timed_messages": [
    {
      "msg": "Timed booga!",
      "time": 12500
    }
  ]
}

And that's it! Load up the game and try giving your new variant the item you defined in your json(a diamond in this case).

You can add as many messages as you like too. The messages and timed_messages fields are optional, meaning you can remove them if you don't use them.

You can summon a Bdubs with a specific variant using
/summon lifesizebdubs:bdubsentity ~ ~ ~ {variant:"<pack name>:<variant name>"}

For our example Booga, it would be
/summon lifesizebdubs:bdubsentity ~ ~ ~ {variant:"boogapack:booga"}

If you want to showoff your Bdubs entity, there's a special NBT tag for that!
/summon lifesizebdubs:bdubsentity ~ ~ ~ {variant:"<pack name>:<variant name>", showcaseMode:true}
This will summon a Bdubs entity of your variant who doesn't despawn, can't be pushed, and can't be damaged(in non-creative mode)!

If you want to make sure nobody can change the variant, set its owner to yourself.
/summon lifesizebdubs:bdubsentity ~ ~ ~ {variant:"<pack name>:<variant name>", showcaseMode:true, Owner:"<your username>"}

Центр версий

9 версий
  • Релиз279 КБ
  • Релиз279 КБ
  • Релиз259 КБ
  • Релиз243 КБ
  • Релиз243 КБ
  • Релиз194 КБ
  • Релиз194 КБ
  • Релиз194 КБ
  • Релиз175 КБ

Ченджлог

1.1.2Релиз1.21.1 · 11 января 2026 г.

Life-Size Bdubs 1.1.2

Eugh

Quickly added a gamerule, bdubsAutoDespawn (boolean) to determine whether Bdubs should automatically despawn after 5 minutes or not.

1.1.1Релиз1.21.1 · 25 марта 2025 г.

Life-Size Bdubs 1.1.1

Introducing... More Variants!

Coming to a BlanketCon near you, more default variants(via data) have been added! Along with that, a couple bugs I found have also been fixed!

New variants, and their items:

  • Geminitay (referred to as Gem): Heart of the sea
  • PearlescentMoon (referred to as Pearl): Sea pickle or pearlescent froglight(the purple one)
  • SmallishBeans (referred to as Joel): Verdant froglight(the green one)
  • TangoTek (referred to as Tango): Redstone block
  • ImpulseSV (referred to as Impulse): Redstone dust

Just like the previous built-in variants, I have slightly modified the skins to better fit my art style and the smaller scale of the model. Also like last time, this is not supposed to undermine the original skins.

Bug fixes:

  • Bdubs on your shoulder will now actually send messages on a server.
  • Bdubs on your shoulder will now move their head properly for the owner's screen when on a server.
  • Giving a Bdubs their alternative/secondary item will now switch their item instead of picking them up.
1.1.0Релиз1.21.1 · 15 марта 2025 г.

Life-Size Bdubs 1.1.0

Life-Size Bdubs is now on Fabric for BlanketCon!

New fixes, same silly! Life-Size Bdubs now works on Fabric! And with that, some fixes and new features have been added!

  • Variants can now use the same item! If multiple variants have the same item, a random one is chosen at first, and it'll cycle through the variants after giving the Bdubs the same item.
  • Bdubs with custom skins can now be quickly spawned! Using the nbt tag, profile, you can specifiy a player username or UUID just like player heads! (e.g. /summon lifesizebdubs:bdubsentity ~ ~ ~ {profile:"GoodTimeWithScar"}).
  • New idle animations have been added! (Note: it is a known bug that some of the more complex animations don't properly transition from their end frame to the start frame of the normal idle animation - this might be fixed later).
  • All variant strings, such as variant name, messages, & timed messages, now use Minecraft's Text instead of strings. This allows for some extra formatting.
  • Variants can now have sugar as their item! Sneak-right click to give the Bdubs sugar to change variant. Spyglass as the variant item may or may not work, haven't tested yet.
1.0.5Релиз1.21.1 · 28 ноября 2024 г.

Mending books in the water? Wrong! I caught a Bdubs!

Fixed fishing rods moving Bdubs entities in showcase mode.

1.0.4Релиз1.21.1 · 27 ноября 2024 г.

Bdubs Mecha

muahahahaha

  • Added the Bdubs mecha skin for Armistice. It looks beautiful.
  • Added two new NBT tags for the Bdubs entity, pushable and shouldDespawn. Both are booleans.
  • Updated showcaseMode. Instead of enabling NoAI and Invulnerable, it now enables Invulnerable, pushable, and disables shouldDespawn. This allows the Bdubs entity to look at the nearby players, which I wanted. I don't believe previous Bdubs entities with this tag will be automatically updated.
  • Added new optional altItem field for the Bdubs variant datagen. It's just that, an alternative item for the variant.
  • Improved the spyglass waving feature slightly.
  • Made it so locked shoulder entities stay locked after relogging.
  • Added imposter egg and tnt block items for use in ModFest.
1.0.3Релиз1.21.1 · 24 ноября 2024 г.

fix adventure mode

that's it

1.0.2Релиз1.21.1 · 23 ноября 2024 г.

The "Me when that feeling when feeling when the the snails crash the video game but it isn't even the snails fault its actually my poor code in a typical "didn't read the folder correctly" fasion" Update!

Fixed an issue where the Bdubs texture transparency patcher accidentally read the "bdubsnail.png" textures.

Fixed an issue where, if dodaylightcycle was turned off, the sugar spinning effect would not be applied.

Made it where it was expected for Bdubs to be given an owner via items even when the Bdubs isn't the default variant.

1.0.1Релиз1.21.1 · 17 ноября 2024 г.

Bdubs, Not Bugs

uh fixed some things I forgot what all I did because I took a week break but here's what I remember

  • Enabled transparency on the second layer of the bdubs texture/player skin.
  • If Ears is installed, the changes to a bdubs texture/skin made by Ears will be undone, looking normal. (Ears features are not rendered, but no transparency issues or otherwise should appear).
  • Skizz's item is now a snowball instead of a wind charge(to allow for the variant to be in ModFest)
  • Being damaged no longer knocks off shoulder locked entities.
  • Added a sound for when a Bdubs entity is removed from a player's shoulder.
  • Made the messages field in a bdubs variant optional.
  • Added a bdubsnail picture for future use in ModFest.
  • Added an eefo picture for future use in ModFest.

Комментарии

Загружаем…