Skip to content

Why but here #4

Description

@Devusiks

Hello I am coming from cucumberjs but I couldn't post it there so here it is also I can't have toolsjs in my modpack because its not yet on 1.20.1 forge
Why do my paxels (all of them exept netherite, diamond, gold, stone, wood) have attackdamage 7 in game
code:

const PAXEL_MATERIALS = [
  {
    name: 'wooden',
    tier: 'wood',
    mod: 'minecraft:',
    durability: 400,
    speed: 2,
    attackDamage: 8,
  },
  {
    name: 'stone',
    tier: 'stone',
    mod: 'minecraft:',
    durability: 800,
    speed: 4,
    attackDamage: 10,
  },
  {
    name: 'copper',
    tier: 'copper',
    mod: 'leafscopperbackport:',
    durability: 338,
    speed: 5,
    attackDamage: 9,
  },
  {
    name: 'nether_quartz',
    tier: 'nether_quartz',
    mod: 'ae2:',
    durability: 400,
    speed: 12,
    attackDamage: 8,
  },
  {
    name: 'fluix',
    tier: 'fluix',
    mod: 'ae2',
    durability: 750,
    speed: 7.2,
    attackDamage: 9.4,
  },
  {
    name: 'certus_quartz',
    tier: 'certus_quartz',
    mod: 'ae2',
    durability: 250,
    speed: 6,
    attackDamage: 9,
  },
  {
    name: 'infinity',
    tier: 'infinity',
    mod: 'avaritia:',
    durability: 9999999,
    speed: 9999,
    attackDamage: 9999999,
  },
  {
    name: 'crystal',
    tier: 'crystal',
    mod: 'avaritia:',
    durability: 8888,
    speed: 100,
    attackDamage: 51,
  },
  {
    name: 'blaze',
    tier: 'blaze',
    mod: 'avaritia:',
    durability: 7777,
    speed: 25,
    attackDamage: 26,
  },
  {
    name: 'skyroot',
    tier: 'skyroot',
    mod: 'aether:',
    durability: 59,
    speed: 2,
    attackDamage: 7,
  },
  {
    name: 'holystone',
    tier: 'holystone',
    mod: 'aether:',
    durability: 131,
    speed: 4,
    attackDamage: 9,
  },
  {
    name: 'zanite',
    tier: 'zanite',
    mod: 'aether:',
    durability: 250,
    speed: 6,
    attackDamage: 9,
  },
  {
    name: 'gravitite',
    tier: 'gravitite',
    mod: 'aether:',
    durability: 1561,
    speed: 8,
    attackDamage: 9,
  },
  {
    name: 'valkyrie',
    tier: 'valkyrie',
    mod: 'aether:',
    durability: 1561,
    speed: 8,
    attackDamage: 9,
  },
  {
   name: 'silver',
    tier: 'silver',
    mod: 'iceandfire:',
    durability: 460,
    speed: 11,
    attackDamage: 7,
  },
  {
    name: 'steeleaf',
    tier: 'steeleaf',
    mod: 'twilightforest:',
    durability: 131,
    speed: 8,
    attackDamage: 10,
  },
  {
    name: 'ironwood',
    tier: 'ironwood',
    mod: 'twilightforest:',
    durability: 512,
    speed: 6.5,
    attackDamage: 9,
  },
  {
    name: 'dragonsteel_lightning',
    tier: 'dragonsteel_lightning',
    mod: 'iceandfire:',
    durability: 8000,
    speed: 10,
    attackDamage: 30,
  },
  {
    name: 'dragonsteel_fire',
    tier: 'dragonsteel_fire',
    mod: 'iceandfire:',
    durability: 8000,
    speed: 10,
    attackDamage: 30,
  },

  {
    name: 'dragonsteel_ice',
    tier: 'dragonsteel_ice',
    mod: 'iceandfire:',
    durability: 8000,
    speed: 10,
    attackDamage: 30,
  },
  {
    name: 'dragonbone',
    tier: 'dragonbone',
    mod: 'iceandfire:',
    durability: 1660,
    speed: 10,
    attackDamage: 10,
  },
  {
    name: 'iron',
    tier: 'iron',
    mod: 'minecraft:',
    durability: 3600,
    speed: 8,
    attackDamage: 10,
  },
  {
    name: 'golden',
    tier: 'gold',
    mod: 'minecraft:',
    durability: 128,
    speed: 12,
    attackDamage: 8,
  },
  {
    name: 'diamond',
    tier: 'diamond',
    mod: 'minecraft:',
    durability: 3122,
    speed: 9,
    attackDamage: 10,
  },
  {
    name: 'netherite',
    tier: 'netherite',
    mod: 'minecraft:',
    durability: 6800,
    speed: 9,
    attackDamage: 11,
  },
  {
    name: 'osmium',
    tier: 'mekanism:osmium',
    mod: 'mekanismtools:',
    durability: 2048,
    speed: 4,
    attackDamage: 14,
  },
  {
    name: 'steel',
    tier: 'steel',
    mod: 'mekanismtools:',
    durability: 1000,
    speed: 8,
    attackDamage: 12,
  },
  {
    name: 'bronze',
    tier: 'bronze',
    mod: 'mekanismtools:',
    durability: 750,
    speed: 7,
    attackDamage: 11,
  },
  {
    name: 'lapis_lazuli',
    tier: 'lapis_lazuli',
    mod: 'mekanismtools:',
    durability: 256,
    speed: 9,
    attackDamage: 7,
  },
  {
    name: 'refined_obsidian',
    tier: 'refined_obsidian',
    mod: 'mekanismtools:',
    durability: 8192,
    speed: 12,
    attackDamage: 17,
  },
  {
    name: 'refined_glowstone',
    tier: 'refined_glowstone',
    mod: 'mekanismtools:',
    durability: 768,
    speed: 15,
    attackDamage: 10,
  }
]

console.info('KubeJS: items.js loaded');
StartupEvents.registry('item', event => {
  PAXEL_MATERIALS.forEach(mat => {
    event.create(`${mat.name}_paxel`, 'paxel')
      .tier(mat.tier)
      .maxDamage(mat.durability)
      .speed(mat.speed)
      .attackDamageBaseline(mat.attackDamage)
      .tag('forge:tools')
      .tag('forge:tools/paxels')
      .tag('minecraft:tools')
      .tag('minecraft:breaks_decorated_pots')
      .tag('create:upright_on_deployer')
      .tag('minecraft:cluster_max_harvestables')
})
})

modlist:

  • .connector
  • 1.21 Paintings backport [1.0.0]
  • 3d-Skin-Layers [1.9.2]
  • AE2 EMI Crafting Integration [1.3.1]
  • AE2 Insert Export Card [1.20.1-1.3.0]
  • AE2 Pattern Encoding Access Terminal [1.0.3]
  • AE2WTLib [15.3.1-forge]
  • AEInfinityBooster [1.20.1-1.0.0+20]
  • Ad Astra [1.15.20]
  • Ad Astra : Distant Horizons [1.1.0]
  • Addons Lib [1.20.1-1.4]
  • Advanced AE [1.3.0-1.20.1]
  • AdvancedLootInfo [1.20.1-1.3.8]
  • Aether Villages [1.0.7]
  • Aether: Lost Content [1.2.3]
  • Aggro Indicator [1.1.4+forge1.20.1]
  • Alex's Caves [2.0.2]
  • Alex's Mobs [1.22.9]
  • All The Leaks [1.0.8+1.20.1-forge]
  • AlmostUnified [1.20.1-0.10.1]
  • Amendments [1.20-2.2.1]
  • AppleSkin [2.5.1+mc1.20.1]
  • Applied Energistics 2 [15.4.10]
  • Applied Mekanistics [1.4.2]
  • Aquaculture 2 [2.5.5]
  • Aquamirae [6.1.0]
  • Aquamirae Mod EXTRA Music [1.0.0]
  • ArcaneAbilities [0.3.0]
  • Architectury [9.2.14]
  • Ars Nouveau [4.12.7]
  • Ars Nouveau's Flavors & Delight [1.1.6]
  • Ars Structurize [1.0.0]
  • Ars Énergistique [1.2.0]
  • Artifacts [9.5.16]
  • AstikorCarts Redux [1.1.8]
  • Athena [3.1.2]
  • AutoFish for Forge [6.0.0]
  • Automobility [0.4.2+1.20.1-forge]
  • Auudio [1.0.3]
  • Avaritia-Tweak [1.0.1]
  • Backported Wolves [1.0.3-1.20.1]
  • BadOptimizations [2.4.1]
  • Balm [7.3.37]
  • Better Advancements [0.4.2.25]
  • Better Clouds [1.3.37-beta+1.20.1-forge.rev.e63efe2]
  • Better Compatibility Checker [3.0.1-build.58+mc1.20]
  • BetterThanMending [1.7.2]
  • Biome Replacer [2.2-hippo]
  • Biome Replacer Neoforge [1.3]
  • Biomes O' Plenty [19.0.0.96]
  • Block Swap [5.0.0.0]
  • Blueprint [7.1.3]
  • Bookshelf [20.2.13]
  • Bosses of Mass Destruction [1.1.2]
  • Botarium [2.3.4]
  • Bountiful [6.0.4+1.20.1]
  • BucketLib [1.20.1-2.3.7.1]
  • Cable Facades [1.3.2]
  • CapyCraft [0.0.1-1.20.1]
  • Carry On [2.1.2.7]
  • Catalogue [1.8.0]
  • Cerbons API [1.1.0]
  • Chat Heads [0.14.0]
  • Cherished Worlds [6.1.7+1.20.1]
  • Chipped [3.0.7]
  • Chunky [1.3.146]
  • Citadel [2.6.2]
  • Cloth Config v10 API [11.1.136]
  • Clumps [12.0.0.4]
  • Collective [8.13]
  • Combat Nouveau [8.0.5]
  • Comforts [6.4.0+1.20.1]
  • Comics Bubbles Chat [1.3.4]
  • Compat API [1.0.1]
  • Compat Artifacts [1.0.0]
  • Connectivity Mod [1.20.1-7.2]
  • Connector Extras [1.11.2+1.20.1]
  • Connector-1.0.0-beta.46+1.20.1
  • Constant Music [1.0.6]
  • Construction Wand [1.20.1-2.11]
  • Continuity [3.0.0+1.20.1.forge]
  • Controlling [12.0.2]
  • CookingForBlockheads [16.0.14]
  • CorgiLib [4.0.3.4]
  • CosmeticArmorReworked [1.20.1-v1a]
  • CraftTweaker [14.0.59]
  • Crafting On A Stick [1.1.5]
  • Crash Assistant [1.10.15]
  • Create [6.0.6]
  • Create Applied Kinetics [1.5.1-1.20.1]
  • Create Crafts & Additions [1.20.1-1.3.1]
  • Create Deco [2.0.3-1.20.1-forge]
  • Create Diesel Generators [1.20.1-1.3.5]
  • Create Encased [1.7.2-fix1]
  • Create Enchantment Industry [1.3.3-for-create-6.0.6]
  • Create Goggles [6.1.0]
  • Create Questing [1.0.0]
  • Create Railways Navigator [1.20.1-beta-0.8.4-C6]
  • Create Sifter [1.20.1-1.8.6-6.0.6]
  • Create Slice & Dice [3.5.2]
  • Create Stock Bridge [0.1.5]
  • Create Stuff & Additions [2.1.0]
  • Create: Addon Compatibility [0.2.4]
  • Create: Bells & Whistles [0.4.3-1.20.x]
  • Create: Better Motors [3.0.3]
  • Create: Central Kitchen [1.4.3b]
  • Create: Connected [1.1.7-mc1.20.1]
  • Create: Copycats+ [3.0.2+mc.1.20.1-forge]
  • Create: Interiors [0.5.6]
  • Create: Mixed Casing [1.1.0]
  • Create: Numismatics [1.0.15+forge-mc1.20.1]
  • Create: Power Loader [2.0.3-mc1.20.1]
  • Create: Renewable Brass [1.0.1]
  • Create: Renewable Diamonds [1.0.0]
  • Create: Renewable Netherite [2.0.0]
  • Create: Steam 'n' Rails [1.6.13-alpha+forge-mc1.20.1]
  • Create: Stones [2.0.0]
  • CreativeCore [2.12.32]
  • Cucumber Library [7.0.7]
  • CucumberJS [0.0.1-1.20.1]
  • CullLeaves [3.2.0]
  • Cupboard utilities [1.20.1-2.7]
  • Curios API [5.14.1+1.20.1]
  • Customizable Player Models [-]
  • Cut Through [8.0.2]
  • Deep Aether [1.20.1-1.1.7]
  • Delightful [3.7.6]
  • Delightful Burgers [1.20.1]
  • Deltabox Lib [2.2.0]
  • Ding [1.5.0]
  • Distant Horizons [2.4.5-b]
  • Distraction Free Recipes (EMI) [1.2.1]
  • Divein [0.1.12-1.20.1-forge]
  • DoesPotatoTick [1.20.1-5.5.4]
  • DragonLib [1.20.1-2.2.24]
  • Duplicationless [1.20.1-1.1.3]
  • Dynamic Lights [1.9+mod]
  • EMI [1.1.22+1.20.1+forge]
  • EMI Enchants [1.0.0]
  • EMI Loot [0.7.6+1.20.1+forge]
  • EMI Ores [1.2+1.20.1+forge]
  • EMI Professions (EMIP) [1.0.3]
  • EMI Trades [1.2.1+mc1.20.1]
  • EMI: Create Schematics [1.0.3]
  • EMIffect [1.1.2+mc1.20.1]
  • Easy Anvils [8.0.2]
  • Easy Elytra Takeoff [4.5]
  • Easy Piglins [1.20.1-1.1.0]
  • Easy Villagers [1.20.1-1.1.35]
  • Ecologics [2.2.2]
  • Embeddium [0.3.31+mc1.20.1]
  • EnchantmentDescriptions [17.1.19]
  • End Remastered [5.3.3-R-1.20.1]
  • Enhanced Boss Bars [1.20.1-1.0.0]
  • Entity Model Features [3.0.1]
  • Entity Texture Features [7.0.2]
  • EntityCulling [1.9.2]
  • Every Compat [1.20-2.9.9]
  • Exordium [1.2.1]
  • Explorify [1.6.4]
  • Explosive Enhancement [1.1.0]
  • Extended Terminal [0.1.1]
  • ExtendedAE [1.20-1.4.8-forge]
  • Extra Mod Integrations [0.4.7+1.20.1]
  • ExtraBounties [1.3.7]
  • ExtraLib [1.8.6]
  • ExtraQuests [1.5.8]
  • Extreme Sound Muffler [3.48]
  • Eyes of Ice and Fire [1.1.0-1.20.1]
  • FPS Reducer [1.20.1-2.5.1]
  • FTB Filter System [20.0.1]
  • FTB Library [2001.2.10]
  • FTB Quests [2001.4.14]
  • FTB Ranks [2001.1.7]
  • FTB Teams [2001.3.1]
  • FTB Ultimine [2001.1.7]
  • FTB XMod Compat [2.1.3]
  • FTBQuestsOptimizer [2.0.5-1.20.1]
  • Fabric Language Kotlin [1.13.7+kotlin.2.2.21]
  • Fairy Lights [7.0.0]
  • FallingTree [4.3.4]
  • Farmer's Delight [1.20.1-1.2.9]
  • Fast IP Ping [1.0.7]
  • Fast Workbench [8.0.4]
  • FastEvent [1.1.1]
  • FastFurnace [8.0.2]
  • Faster Portals [1.0.4]
  • Ferrite Core [6.0.1]
  • Followers Teleport Too [2.7]
  • Forgified Fabric API [0.92.6+1.11.14+1.20.1]
  • FramedBlocks [9.4.2]
  • Framework [0.7.15]
  • Freecam [1.2.1+1.20]
  • From The Fog [1.9.2]
  • Fuel Goes Here [1.20.0-1.0.1]
  • Fullblock Energistics [1.7.3-1.20.1]
  • Fusion [1.2.11+a]
  • Fzzy Config [0.7.3+1.20.1+forge]
  • Game Menu Remove GFARB [2.1.2]
  • GameStages [15.0.2]
  • GeckoLib 4 [4.8.2]
  • Gems Realm [1.20-2.9.3]
  • GlitchCore [0.0.1.1]
  • Glodium [1.20-1.5-forge]
  • GuideME [20.1.14]
  • Handcrafted [3.0.6]
  • Highlighter [1.1.9]
  • HorseInBoat [1.1.4]
  • Hostile Neural Networks [5.3.3]
  • I'm Fast [1.0.2]
  • Ice and Fire [2.1.13-1.20.1]
  • Iceberg [1.1.25]
  • ImmediatelyFast [1.5.2+1.20.4]
  • Immersive Aircraft [1.4.0+1.20.1]
  • Immersive Damage Indicators [1.0.0]
  • Immersive Melodies [0.6.0+1.20.1]
  • Immersive Messages API [1.0.18]
  • Immersive Paintings [0.6.8+1.20.1]
  • Immersive Weathering [1.20.1-2.0.5]
  • In-Game Account Switcher [9.0.4]
  • Integrated API [1.5.1+1.20.1-forge]
  • Integrated Dungeons Arise [2.0.3]
  • Integrated Dungeons and Structures [1.10.3+1.20.1]
  • Integrated Simply Swords [1.3.0+1.20.1]
  • Integrated Stronghold [1.1.1+1.20.1-forge]
  • Integrated Villages [1.1.4+1.20.1-forge]
  • Iron Furnaces [4.1.6]
  • Item Collectors [1.1.11]
  • Item Obliterator [2.3.0]
  • Jade [11.13.2+forge]
  • Jellyfishing [2.0.0]
  • Joy of Painting [1.20.1-1.0.1]
  • Just Enough Breeding [2.2.1]
  • Kambrik [6.1.1+1.20.1]
  • KeyBindJS [2001-2.2.3]
  • Kiwi Library [11.9.2+forge]
  • Konkrete [1.8.0]
  • Kotlin for Forge [hmeyC41q]
  • KubeJS [2001.6.5-build.16]
  • KubeJS Addditions (Forge) [4.3.4]
  • KubeJS Ars Nouveau [1.2.2]
  • KubeJS Create [2001.3.0-build.8]
  • KubeJS Mekanism [2001.1.5.1-build.2]
  • KubeLoader [0.0.6-2]
  • KubeUtils [20.1.1]
  • LanguageReload [1.0.1]
  • Leaf's Copper Backport [1.0.0]
  • LibX [1.20.1-5.0.14]
  • LionfishAPI [2.4]
  • Lithostitched [1.4.11]
  • LootJS [1.20.1-2.13.0]
  • LowDragLib [1.0.45]
  • ME Requester [1.20.1-1.1.5]
  • MEGA Cells [2.4.6-1.20.1]
  • MaFgLib [0.1.14-mc1.20.1]
  • Macaw's Bridges [3.1.0]
  • Macaw's Doors [1.1.2]
  • Macaw's Fences and Walls [1.2.0]
  • Macaw's Lights and Lamps [1.1.2]
  • Macaw's Roofs [2.3.2]
  • Macaw's Stairs and Balconies [1.0.1]
  • Macaw's Trapdoors [1.1.4]
  • Macaw's Windows [2.4.1]
  • Mantle [1.11.79]
  • MaxHealthFix [12.0.3]
  • Mekanism [10.4.16]
  • Mekanism Cardboard Tooltip [1.4.0]
  • Mekanism Covers [1.3-BETA+1.20]
  • Mekanism Curios [1.2.1]
  • Mekanism Pipez Fix [1.0.0]
  • Mekanism: Tools [10.4.16]
  • Melody [1.0.2]
  • Memory Leak Fix [1.1.5]
  • Mermod [3.0.1]
  • MidnightLib [1.4.2]
  • MmmMmmMmmmmm [1.20-2.0.9]
  • Mob Grinding Utils [1.20.1-1.1.0]
  • Model Gap Fix [1.15]
  • Modern World Creation [2.0.2]
  • ModernFix [5.24.4+mc1.20.1]
  • Moonlight Library [1.20-2.16.15]
  • More Create Burners [1.20.1-0.3.4]
  • MoreMobility [0.1.2]
  • Mouse Tweaks [2.25.1]
  • MrCrayfish's Furniture Mod: Refurbished [1.0.20]
  • Naturalist [5.0pre3]
  • Nature's Compass [1.20.1-1.11.2-forge]
  • Necronomicon [1.6.0]
  • Neko's Enchanted Books [2.0.3]
  • NetherPortalFix [13.0.1]
  • Netherracked [1.0.4]
  • Nifty Carts x Farm & Charm [1.0]
  • No Chat Reports [1.20.1-v2.2.2]
  • No Hostiles Around Campfire [7.2]
  • No Report Button [1.5.0]
  • No Resource Pack Warnings Forge [1.0.0]
  • No Telemetry [1.9.0]
  • No Trample [1.20.1-1.0.1]
  • NoRealmsButton [2.0.2]
  • Nolijium [0.5.6]
  • NotEnoughAnimations [1.10.6]
  • Numismatic Bounties [1.1]
  • Numismatic Lootbags [0.0.1]
  • Nvidium [0.2.6-beta]
  • Obscure API [15]
  • OctoLib [0.5.0.1]
  • Oculus [1.8.0]
  • Oh The Trees You'll Grow [1.3.13]
  • Open Parties and Claims [0.25.8]
  • Overflowing Bars [8.0.1]
  • PackagedAuto [3.4.14.44]
  • PackagedAvaritia:Re [2.2.2.13]
  • Paraglider [20.1.3]
  • Patchouli [1.20.1-84.1-FORGE]
  • Paxi [1.20-Forge-4.0]
  • Pehkui [3.8.2+1.20.1-forge]
  • Performance Tweaks [1.0.1;ac;ec;ro]
  • Persistent Creative Inventory [0.0.2]
  • Pick Up Notifier [8.0.0]
  • Pipez [1.20.1-1.2.26]
  • Pizza Delight [1.0.1-1.20.1]
  • PizzaCraft [7.0.8]
  • Placebo [8.6.3]
  • Placement+ [1.19.2_1.0a]
  • Platform [1.2.10.1]
  • Player Animator [1.0.2-rc1+1.20]
  • Polymorph [0.49.10+1.20.1]
  • Polymorphic Energistics [0.1.1-1.20.1]
  • Polytone [1.20-3.5.15]
  • Powah [5.0.11]
  • Pretty Rain [1.1.3]
  • Prism [1.0.5]
  • Pufferfish's Attributes [0.7.6]
  • Pufferfish's Skills [0.16.8]
  • Puzzles Lib [8.1.33]
  • Quark [4.0-462]
  • Quark Oddities [1.20.1]
  • RAC-Compat [0.1.3]
  • RAM-Compat [0.1.4]
  • RAR-Compat [0.5]
  • Radium [0.12.4+git.26c9d8e]
  • Raised [5.0.2]
  • Re-Avaritia [1.3.9.4]
  • Re:Deco [1.14.1]
  • Rechiseled [1.1.6]
  • Rechiseled: AE2 [1.1.0]
  • Rechiseled: Chipped [1.1]
  • Rechiseled: Create [1.0.2+b]
  • Recipes For Create [1.2.1]
  • Relics [0.8.0.11]
  • Remove Reloading Screen [4.0.6.1+mc1.20.1-forge]
  • Replication [1.20.1-1.1.3]
  • Replication AE2 Bridge [2.0.0.0.1]
  • Resourceful Lib [2.1.29]
  • Resourceful Lootbags [2.0.2]
  • Resourcefulconfig [2.1.3]
  • Rhino [2001.2.3-build.10]
  • Ritchie's Projectile Library [2.1.0]
  • SDMGameStagesHelper [1.20.1-1.1.0]
  • SDMLootStages [1.20.1-1.0.0]
  • Saddle Crafting Backport [1.0-mod]
  • ScalingMobs [2.4.1]
  • Schematic Energistics [1.3.1]
  • Searchables [1.0.3]
  • SecurityCraft [1.10.1]
  • Shipping [1.3.0]
  • ShulkerBoxTooltip [4.0.4+1.20.1]
  • Simple Voice Chat [1.20.1-2.6.6]
  • Simply More [1.1.3]
  • Simply Swords [1.56.0-1.20.1]
  • Sophisticated Backpacks [3.24.18.1488]
  • Sophisticated Core [1.2.117.1347]
  • Sophisticated Storage [1.4.19.1416]
  • SparseStructures [3.0]
  • Spyglass Improvements [1.5.12b]
  • Stone Zone [1.20-2.9.7]
  • Stronger Skill tree for pufferfish's skills [1.0]
  • Structure Gel API [2.16.2]
  • Structurify [2.0.6a]
  • Suggestion Tweaker [1.20-1.5.2]
  • SuperMartijn642's Config Library [1.1.8]
  • SuperMartijn642's Core Lib [1.1.18]
  • Supplementaries [1.20-3.1.41]
  • Supplementaries Squared [1.20-1.1.26]
  • Tectonic [3.0.16]
  • TerraBlender [3.0.1.10]
  • The Aether [1.20.1-1.5.2-neoforge]
  • The Endergetic Expansion [5.0.1]
  • The Twilight Forest [4.3.2508]
  • Time In A Bottle [4.0.4-mc1.20.1]
  • Tips [12.1.8]
  • Titanium [3.8.32]
  • Tom's Simple Storage Mod [1.7.1]
  • TooManyRecipeViewers [0.6.4+mc.20.1]
  • ToolStats [16.0.9]
  • Trading Post [8.0.2]
  • Trash Cans [1.0.18b]
  • Traveler's Backpack [9.1.44]
  • Trials Chambers [2.3.3]
  • True Ending: Ender Dragon Overhaul [1-v1.1.0c]
  • TxniLib [1.0.24]
  • UnChipped [1.20-1.1]
  • Unlimited Spawners [1.0.0]
  • Untitled Duck Mod [1.2.0-hotfix]
  • VanillaBackport [1.1.4.3]
  • Visual Recipe Editor [1.1.0]
  • ViveCraft Compat [1.5.0]
  • Vivecraft [1.20.1-1.3.4]
  • WITS [1.1.0+1.20.1-forge]
  • WaterFrames [2.1.22]
  • WaterMedia [2.1.36]
  • Waystones [14.1.17]
  • When Dungeons Arise [2.1.58-1.20.x]
  • Wooden Bucket [1.20.1-2.1.1.0]
  • Wooden Hopper [1.20.1-1.6.0.1]
  • World Play Time [1.2.3]
  • Xaero's Map - Waystones Compability [1.0]
  • Xaero's Minimap [25.2.10]
  • Xaero's World Map [1.39.12]
  • XaeroZoomout [1.1.0]
  • YUNG's API [1.20-Forge-4.0.6]
  • YUNG's Better Dungeons [1.20-Forge-4.0.4]
  • YUNG's Better End Island [1.20-Forge-2.0.6]
  • Yeetus Experimentus [2.3.0-build.4+mc1.20.1]
  • Yet Another Furniture [1.0pre3]
  • YetAnotherConfigLib [3.6.6+1.20.1-forge]
  • Zeta [1.0-30]
  • Zume [1.2.0]
  • [Let's Do] API [1.2.15]
  • [Let's Do] Bakery [2.0.6]
  • [Let's Do] Beachparty [2.0.3]
  • [Let's Do] BloomingNature [1.0.12]
  • [Let's Do] Brewery [2.0.6]
  • [Let's Do] Candlelight [2.0.5]
  • [Let's Do] Farm & Charm [1.0.14]
  • [Let's Do] Furniture [1.0.4]
  • [Let's Do] HerbalBrews [1.0.12]
  • [Let's Do] Meadow [1.3.25]
  • [Let's Do] Vinery [1.4.41]
  • [Let's Do] Wilder Nature [1.0.6]
  • ae2CraftingTree [1.20.1-1.1.1]
  • beer [1.1]
  • cataclysm [3.16]
  • curios-forge-5.14.1+1.20.1.jar.duplicate
  • emi-letsdo-compat [1.8]
  • fastasyncworldsave mod [1.20.1-2.6]
  • flib [0.0.14]
  • iChunUtil [1.0.3]

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions