Skip to content

Instantly share code, notes, and snippets.

View IMB11's full-sized avatar
🎓
I may be slow to respond.

Calum H. IMB11

🎓
I may be slow to respond.
View GitHub Profile

Loqui is archived. Please see the modrinth page for more information.

<p><img src="https://drive.google.com/file/d/1eJRxwij4G7NSNeFOxW_a0jrXoAR80IoI/preview" alt=""></p>
<p><span style="font-size: 24px;"><img src="https://raw.githubusercontent.com/DashieDev/DoggyTalentsNext/1.20-master/images/Banner1.18.0.png" alt="" width="1017" height="544"><br></span></p>
<p><span style="font-size: 24px;">---------------------------------------</span></p>
<p><span style="font-size: 18px;"><strong>【 狼才能次 】-</strong>おおかみさいのうつぎ</span></p>
<p><span style="font-family: helvetica, arial, sans-serif;"><span style="font-size: 36px;"><strong>🦴</strong><strong>Doggy Talents Next&nbsp;</strong></span><span style="font-size: 18px;">&nbsp;<em>Minecraft Wolf - <strong>Reimagined</strong>.<span style="font-size: 36px;">🦴</span></em></span></span></p>
<blockquote>
<p><span style="font-size: 12px;"><em>"Maybe he was trying to set an example by showing you <strong>how anyone, even a dog could have an adventure.</strong>" - Issun,&nbsp;<em><strong>Ōkami (2006).</strong></em></em></span></p>
</blockquote>
<p>&n
@IMB11
IMB11 / portfolio.md
Created February 1, 2024 21:11
Portfolio

My Portfolio

Welcome to my Portfolio page! Here you can browse the various projects I have worked on, and the technologies used.

Full-Stack Development

I have created websites, databases and other software for myself and others. Here are some of the projects I am particularaly proud of:

name: Game Crashes on Launch!
description: If your game crashes on launch, use this template.
title: Game Crashes on Launch
labels:
- support
body:
- type: markdown
attributes:
value: >-
## **Where are my Logs?**
@IMB11
IMB11 / wiki:start.doku
Last active June 9, 2023 21:48
Wiki start doku rewrite
====== Welcome to the Fabric Wiki! ======
This resource is dedicated to Fabric, Fabric is a modular modding toolchain targeting Minecraft: Java Edition 1.14 and above, including snapshots.
Some pages on the wiki may be out-of-date or a work in progress.
https://fabricmc.net/wiki/wiki_meta
This wiki is also available in the following languages:
* {{:china.png?nolink&32|}} [[zh_cn:start|简体中文 (Simplified Chinese)]]
BiomeModifications.create(Woof.id("wolf_additions")).add(ModificationPhase.REPLACEMENTS, biomeSelectionContext -> true, (biomeSelectionContext, biomeModificationContext) -> {
// Iterate all wolf variant types.
for (Map.Entry<RegistryKey<Variant>, Variant> variantRegistryKey : WoofAPI.VARIANT_REGISTRY.getEntrySet()) {
// Check if variant can spawn in biome.
if (!variantRegistryKey.getValue().biomePredicate().apply(biomeSelectionContext.getBiomeRegistryEntry()))
continue;
biomeModificationContext.getSpawnSettings().removeSpawnsOfEntityType(EntityType.WOLF);
biomeModificationContext.getSpawnSettings().addSpawn(SpawnGroup.MISC, new SpawnSettings.SpawnEntry(EntityType.WOLF, 5, 1, 2));
}
});
BiomeModifications.create(Woof.id("wolf_additions")).add(ModificationPhase.REPLACEMENTS, biomeSelectionContext -> true, (biomeSelectionContext, biomeModificationContext) -> {
for (Map.Entry<RegistryKey<Variant>, Variant> variantRegistryKey : WoofAPI.VARIANT_REGISTRY.getEntrySet()) {
if (!variantRegistryKey.getValue().biomePredicate().apply(biomeSelectionContext.getBiomeRegistryEntry()))
continue;
biomeModificationContext.getSpawnSettings().removeSpawnsOfEntityType(EntityType.WOLF);
biomeModificationContext.getSpawnSettings().addSpawn(SpawnGroup.MISC, new SpawnSettings.SpawnEntry(EntityType.WOLF, 5, 1, 2));
}
});
@IMB11
IMB11 / e
Created September 28, 2022 13:48
gist
e