├── LICENSE_ASSETS ├── .gitattributes ├── datagen ├── libs │ └── tada.jar └── src │ └── main │ └── resources │ └── images │ ├── bow_atlas.png │ ├── flag_atlas.png │ ├── septite_atlas.png │ └── large_flag_atlas.png ├── gradle.properties ├── changelogs └── old │ ├── 1.19.2-1.4.2.md │ ├── 1.19.2-0.2.2.md │ ├── 1.20.1-1.7.4.md │ ├── 1.19.2-1.4.3.md │ ├── 1.20.1-1.8.2.md │ ├── 1.20.1-1.8.5.md │ ├── 1.20.1-1.5.7.md │ └── 1.19.2-0.4.0.md ├── projectPageAssets ├── hero.png └── hosting-code.png ├── src └── main │ └── resources │ ├── assets │ └── minecells │ │ ├── particles │ │ ├── fly.json │ │ ├── aura.json │ │ ├── drop.json │ │ ├── explosion.json │ │ ├── magic_orb.json │ │ ├── protector.json │ │ ├── rising_bubble.json │ │ ├── speckle.json │ │ └── small_drop.json │ │ ├── models │ │ ├── item │ │ │ ├── cell_forge.json │ │ │ ├── chain_pile.json │ │ │ ├── base_crossbow_charged.json │ │ │ ├── putrid_boards.json │ │ │ ├── small_crate.json │ │ │ ├── alchemy_equipment_0.json │ │ │ ├── alchemy_equipment_1.json │ │ │ ├── alchemy_equipment_2.json │ │ │ ├── big_chain.json │ │ │ └── weapon │ │ │ │ └── crowbar.json │ │ ├── block │ │ │ └── teleporter │ │ │ │ └── middle.json │ │ └── arrow │ │ │ ├── ice.json │ │ │ ├── endless.json │ │ │ ├── infantry.json │ │ │ ├── marksman.json │ │ │ ├── quick.json │ │ │ ├── heavy_bolt.json │ │ │ ├── explosive_bolt.json │ │ │ ├── multiple_nocks.json │ │ │ └── nerves_of_steel.json │ │ ├── textures │ │ ├── block │ │ │ ├── colored_torch │ │ │ │ ├── prison.png.mcmeta │ │ │ │ ├── white.png.mcmeta │ │ │ │ ├── promenade.png.mcmeta │ │ │ │ ├── ramparts.png.mcmeta │ │ │ │ ├── prison.png │ │ │ │ ├── sewers.png │ │ │ │ ├── white.png │ │ │ │ ├── promenade.png │ │ │ │ ├── ramparts.png │ │ │ │ └── copper_torch.png │ │ │ ├── fluid │ │ │ │ ├── toxic_sewage.png.mcmeta │ │ │ │ ├── ancient_sewage.png.mcmeta │ │ │ │ ├── ancient_sewage_flowing.png.mcmeta │ │ │ │ ├── toxic_sewage_flowing.png.mcmeta │ │ │ │ ├── toxic_sewage.png │ │ │ │ ├── ancient_sewage.png │ │ │ │ ├── toxic_sewage_flowing.png │ │ │ │ └── ancient_sewage_flowing.png │ │ │ ├── big_chain_dash.png.mcmeta │ │ │ ├── corpse.png │ │ │ ├── crate.png │ │ │ ├── spikes.png │ │ │ ├── skeleton.png │ │ │ ├── big_chain.png │ │ │ ├── bloomrock.png │ │ │ ├── cage_bars.png │ │ │ ├── cage_base.png │ │ │ ├── crate_top.png │ │ │ ├── flag_pole.png │ │ │ ├── hardstone.png │ │ │ ├── metal_torch.png │ │ │ ├── prison_bars.png │ │ │ ├── putrid_log.png │ │ │ ├── putrid_wood.png │ │ │ ├── runic_vine.png │ │ │ ├── small_crate.png │ │ │ ├── teleporter.png │ │ │ ├── cell_crafter.png │ │ │ ├── prison_bricks.png │ │ │ ├── prison_stone.png │ │ │ ├── putrid_fence.png │ │ │ ├── putrid_planks.png │ │ │ ├── return_stone.png │ │ │ ├── spawner_rune.png │ │ │ ├── spikes_bloody.png │ │ │ ├── wilted_leaves.png │ │ │ ├── alchemy_bottles.png │ │ │ ├── big_chain_dash.png │ │ │ ├── bloomrock_bricks.png │ │ │ ├── bloomrock_tiles.png │ │ │ ├── brittle_barrel.png │ │ │ ├── broken_cage_bars.png │ │ │ ├── chain_pile_block.png │ │ │ ├── doorway │ │ │ │ ├── prison.png │ │ │ │ ├── ramparts.png │ │ │ │ ├── overworld.png │ │ │ │ ├── promenade.png │ │ │ │ ├── black_bridge.png │ │ │ │ ├── insufferable_crypt.png │ │ │ │ ├── prison_background.png │ │ │ │ ├── overworld_background.png │ │ │ │ ├── promenade_background.png │ │ │ │ ├── ramparts_background.png │ │ │ │ └── black_bridge_background.png │ │ │ ├── putrid_door_top.png │ │ │ ├── putrid_log_top.png │ │ │ ├── putrid_sapling.png │ │ │ ├── putrid_trapdoor.png │ │ │ ├── rotting_corpse.png │ │ │ ├── runic_vine_plant.png │ │ │ ├── runic_vine_stone.png │ │ │ ├── runic_vine_top.png │ │ │ ├── brittle_barrel_rim.png │ │ │ ├── brittle_barrel_top.png │ │ │ ├── elevator_assembler.png │ │ │ ├── prison_cobblestone.png │ │ │ ├── putrid_board_block.png │ │ │ ├── putrid_door_bottom.png │ │ │ ├── red_putrid_sapling.png │ │ │ ├── red_wilted_leaves.png │ │ │ ├── wilted_grass_block.png │ │ │ ├── wilted_wall_leaves.png │ │ │ ├── cracked_prison_bricks.png │ │ │ ├── hanged_skeleton_chain.png │ │ │ ├── kingdom_portal_core.png │ │ │ ├── orange_alchemy_spill.png │ │ │ ├── orange_putrid_sapling.png │ │ │ ├── orange_wilted_leaves.png │ │ │ ├── overgrown_bloomrock.png │ │ │ ├── small_prison_bricks.png │ │ │ ├── sprouting_bloomrock.png │ │ │ ├── stripped_putrid_log.png │ │ │ ├── stripped_putrid_wood.png │ │ │ ├── wilted_hanging_leaves.png │ │ │ ├── orange_alchemy_bottles.png │ │ │ ├── red_wilted_wall_leaves.png │ │ │ ├── stripped_putrid_log_top.png │ │ │ ├── cracked_bloomrock_bricks.png │ │ │ ├── orange_wilted_wall_leaves.png │ │ │ ├── red_wilted_hanging_leaves.png │ │ │ ├── wilted_grass_block_overlay.png │ │ │ ├── wilted_wall_leaves_detail.png │ │ │ ├── bloomrock_wilted_grass_block.png │ │ │ ├── orange_wilted_hanging_leaves.png │ │ │ └── red_wilted_wall_leaves_detail.png │ │ ├── item │ │ │ ├── doorway_glow.png.mcmeta │ │ │ ├── monster_cell.png.mcmeta │ │ │ ├── cage.png │ │ │ ├── guts.png │ │ │ ├── cleaver.png │ │ │ ├── crowbar.png │ │ │ ├── dimensional_rune_glow.png.mcmeta │ │ │ ├── flint.png │ │ │ ├── phaser.png │ │ │ ├── big_chain.png │ │ │ ├── guidebook.png │ │ │ ├── ice_arrow.png │ │ │ ├── tentacle.png │ │ │ ├── vine_rune.png │ │ │ ├── arcane_goo.png │ │ │ ├── arrow_sign.png │ │ │ ├── barrier_rune.png │ │ │ ├── biome_banner.png │ │ │ ├── blank_rune.png │ │ │ ├── blood_bottle.png │ │ │ ├── blood_sword.png │ │ │ ├── broadsword.png │ │ │ ├── broken_cage.png │ │ │ ├── cursed_sword.png │ │ │ ├── doorway_glow.png │ │ │ ├── firebrands.png │ │ │ ├── frost_blast.png │ │ │ ├── health_flask.png │ │ │ ├── king_statue.png │ │ │ ├── metal_shards.png │ │ │ ├── molten_chunk.png │ │ │ ├── monster_cell.png │ │ │ ├── monsters_eye.png │ │ │ ├── nutcracker.png │ │ │ ├── prison_torch.png │ │ │ ├── putrid_door.png │ │ │ ├── putrid_sign.png │ │ │ ├── reset_rune.png │ │ │ ├── spite_sword.png │ │ │ ├── balanced_blade.png │ │ │ ├── boss_stem_cell.png │ │ │ ├── cell_holder │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── empty.png │ │ │ ├── doorway_frame.png │ │ │ ├── electric_whip.png │ │ │ ├── explosive_bolt.png │ │ │ ├── explosive_bulb.png │ │ │ ├── heavy_crossbow.png │ │ │ ├── infected_flesh.png │ │ │ ├── lightning_bolt.png │ │ │ ├── sewage_bucket.png │ │ │ ├── sewer_calamari.png │ │ │ ├── shield │ │ │ │ ├── cudgel.png │ │ │ │ ├── rampart.png │ │ │ │ ├── 3d │ │ │ │ │ ├── cudgel.png │ │ │ │ │ ├── rampart.png │ │ │ │ │ ├── greed_shield.png │ │ │ │ │ ├── ice_shield.png │ │ │ │ │ ├── assault_shield.png │ │ │ │ │ └── bloodthirsty_shield.png │ │ │ │ ├── ice_shield.png │ │ │ │ ├── greed_shield.png │ │ │ │ ├── assault_shield.png │ │ │ │ └── bloodthirsty_shield.png │ │ │ ├── throwing_knife.png │ │ │ ├── arrow_entity │ │ │ │ ├── ice.png │ │ │ │ ├── quick.png │ │ │ │ ├── default.png │ │ │ │ ├── endless.png │ │ │ │ ├── infantry.png │ │ │ │ ├── marksman.png │ │ │ │ ├── firebrands.png │ │ │ │ ├── heavy_bolt.png │ │ │ │ ├── explosive_bolt.png │ │ │ │ ├── multiple_nocks.png │ │ │ │ ├── throwing_knife.png │ │ │ │ └── nerves_of_steel.png │ │ │ ├── assassins_dagger.png │ │ │ ├── buzzcutter_fang.png │ │ │ ├── hattoris_katana.png │ │ │ ├── promenade_torch.png │ │ │ ├── runic_vine_item.png │ │ │ ├── spawn_eggs │ │ │ │ ├── runner.png │ │ │ │ ├── kamikaze.png │ │ │ │ ├── scorpion.png │ │ │ │ ├── shocker.png │ │ │ │ ├── sweeper.png │ │ │ │ ├── buzzcutter.png │ │ │ │ ├── grenadier.png │ │ │ │ ├── inquisitor.png │ │ │ │ ├── mutated_bat.png │ │ │ │ ├── protector.png │ │ │ │ ├── rancid_rat.png │ │ │ │ ├── shieldbearer.png │ │ │ │ ├── undead_archer.png │ │ │ │ ├── disgusting_worm.png │ │ │ │ ├── leaping_zombie.png │ │ │ │ └── sewers_tentacle.png │ │ │ ├── cell_infused_steel.png │ │ │ ├── elevator_mechanism.png │ │ │ ├── transposition_core.png │ │ │ ├── ancient_sewage_bucket.png │ │ │ ├── concierge_respawn_rune.png │ │ │ ├── cooked_sewer_calamari.png │ │ │ ├── dimensional_rune_base.png │ │ │ ├── dimensional_rune_glow.png │ │ │ ├── interdimensional_rune.png │ │ │ ├── conjunctivius_respawn_rune.png │ │ │ └── charged_interdimensional_rune.png │ │ ├── gui │ │ │ ├── group.png │ │ │ ├── tabs.png │ │ │ ├── boss_bars.png │ │ │ ├── button │ │ │ │ ├── kofi.png │ │ │ │ └── discord.png │ │ │ ├── guidebook │ │ │ │ ├── book.png │ │ │ │ ├── crafting.png │ │ │ │ ├── filler.png │ │ │ │ └── images │ │ │ │ │ ├── prison.png │ │ │ │ │ ├── elevator.png │ │ │ │ │ ├── ramparts.png │ │ │ │ │ ├── overworld.png │ │ │ │ │ ├── promenade.png │ │ │ │ │ └── black_bridge.png │ │ │ ├── toast │ │ │ │ └── background.png │ │ │ ├── cell_crafter │ │ │ │ ├── recipes.png │ │ │ │ ├── container.png │ │ │ │ ├── emi_arrow.png │ │ │ │ └── recipe_button.png │ │ │ ├── doorway_selection │ │ │ │ └── close.png │ │ │ └── crosshair │ │ │ │ └── crit_indicator.png │ │ ├── entity │ │ │ ├── cell.png │ │ │ ├── elevator.png │ │ │ ├── inquisitor.png │ │ │ ├── kamikaze.png │ │ │ ├── effect │ │ │ │ ├── star.png │ │ │ │ ├── red_star.png │ │ │ │ ├── stunned.png │ │ │ │ └── blood_overlay.png │ │ │ ├── mutated_bat.png │ │ │ ├── shieldbearer.png │ │ │ ├── signs │ │ │ │ └── putrid.png │ │ │ ├── fly │ │ │ │ ├── buzzcutter.png │ │ │ │ └── buzzcutter_glow.png │ │ │ ├── obelisk │ │ │ │ ├── elite.png │ │ │ │ ├── concierge.png │ │ │ │ └── conjunctivius.png │ │ │ ├── runner │ │ │ │ ├── runner.png │ │ │ │ └── runner_glow.png │ │ │ ├── scorpion │ │ │ │ ├── spit.png │ │ │ │ ├── scorpion.png │ │ │ │ └── scorpion_glow.png │ │ │ ├── shocker │ │ │ │ ├── shocker.png │ │ │ │ ├── shocker_glow.png │ │ │ │ └── shocker_glow_angry.png │ │ │ ├── sweeper │ │ │ │ ├── sweeper.png │ │ │ │ └── sweeper_glow.png │ │ │ ├── tentacle_weapon.png │ │ │ ├── undead_archer.png │ │ │ ├── grenades │ │ │ │ ├── grenade.png │ │ │ │ ├── big_grenade.png │ │ │ │ └── disgusting_worm_egg.png │ │ │ ├── boss_bars │ │ │ │ └── boss_bars.png │ │ │ ├── concierge │ │ │ │ ├── concierge.png │ │ │ │ └── concierge_glow.png │ │ │ ├── conjunctivius │ │ │ │ ├── chain.png │ │ │ │ ├── eyelid.png │ │ │ │ ├── spike.png │ │ │ │ ├── eye_blue.png │ │ │ │ ├── eye_pink.png │ │ │ │ ├── eye_green.png │ │ │ │ ├── eye_yellow.png │ │ │ │ ├── projectile.png │ │ │ │ └── conjunctivius.png │ │ │ ├── grenadier │ │ │ │ ├── grenadier.png │ │ │ │ └── grenadier_glow.png │ │ │ ├── protector │ │ │ │ ├── protector.png │ │ │ │ └── protector_glow.png │ │ │ ├── sewers_tentacle │ │ │ │ ├── blue.png │ │ │ │ ├── red.png │ │ │ │ └── purple.png │ │ │ ├── rancid_rat │ │ │ │ ├── rancid_rat.png │ │ │ │ └── rancid_rat_glow.png │ │ │ └── leaping_zombie │ │ │ │ └── leaping_zombie.png │ │ ├── particle │ │ │ ├── fly.png │ │ │ ├── aura.png │ │ │ ├── bubble.png │ │ │ ├── explosion.png │ │ │ ├── magic_orb.png │ │ │ ├── protector.png │ │ │ ├── drop │ │ │ │ ├── drop_big.png │ │ │ │ └── drop_small.png │ │ │ ├── electricity │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ ├── charge │ │ │ │ ├── charge_0.png │ │ │ │ ├── charge_1.png │ │ │ │ ├── charge_2.png │ │ │ │ └── charge_3.png │ │ │ └── falling_leaf │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── misc │ │ │ ├── hint_marker.png │ │ │ ├── electric_arch.png │ │ │ └── protected_circle.png │ │ ├── mob_effect │ │ │ ├── cursed.png │ │ │ ├── frozen.png │ │ │ ├── bleeding.png │ │ │ ├── disarmed.png │ │ │ ├── stunned.png │ │ │ ├── electrified.png │ │ │ ├── protected.png │ │ │ └── assassins_strength.png │ │ └── blockentity │ │ │ ├── arrow_sign.png │ │ │ ├── big_door.png │ │ │ ├── rift │ │ │ ├── base.png │ │ │ └── background.png │ │ │ ├── banner │ │ │ ├── elite.png │ │ │ ├── ramparts.png │ │ │ ├── black_bridge.png │ │ │ ├── kings_crest.png │ │ │ ├── insufferable_crypt.png │ │ │ └── torn_kings_crest.png │ │ │ ├── statue │ │ │ └── king.png │ │ │ ├── kingdom_portal.png │ │ │ ├── teleporter_core.png │ │ │ ├── wormhole │ │ │ └── base.png │ │ │ ├── kingdom_portal_glow.png │ │ │ └── kingdom_portal_unlit.png │ │ ├── icon.png │ │ ├── sounds │ │ ├── buzz.ogg │ │ ├── crit.ogg │ │ ├── rise.ogg │ │ ├── charge.ogg │ │ ├── freeze.ogg │ │ ├── shock.ogg │ │ ├── explosion.ogg │ │ ├── fly │ │ │ ├── fly.ogg │ │ │ ├── charge.ogg │ │ │ └── release.ogg │ │ ├── obelisk.ogg │ │ ├── cell_absorb.ogg │ │ ├── curse_death.ogg │ │ ├── portal │ │ │ ├── use.ogg │ │ │ └── activate.ogg │ │ ├── concierge │ │ │ ├── step.ogg │ │ │ ├── shout.ogg │ │ │ ├── leap │ │ │ │ ├── land.ogg │ │ │ │ └── charge.ogg │ │ │ ├── aura │ │ │ │ ├── charge.ogg │ │ │ │ └── release.ogg │ │ │ ├── punch │ │ │ │ ├── charge.ogg │ │ │ │ └── release.ogg │ │ │ └── shockwave │ │ │ │ ├── charge.ogg │ │ │ │ └── release.ogg │ │ ├── elevator_start.ogg │ │ ├── elevator_stop.ogg │ │ ├── kamikaze │ │ │ ├── death.ogg │ │ │ ├── wake.ogg │ │ │ └── charge.ogg │ │ ├── shocker │ │ │ ├── charge.ogg │ │ │ ├── death.ogg │ │ │ └── release.ogg │ │ ├── sweeper │ │ │ ├── charge.ogg │ │ │ └── release.ogg │ │ ├── weapon │ │ │ ├── swipe │ │ │ │ ├── 0.ogg │ │ │ │ ├── 1.ogg │ │ │ │ └── 2.ogg │ │ │ ├── bow │ │ │ │ ├── charge.ogg │ │ │ │ └── release.ogg │ │ │ ├── flint │ │ │ │ ├── charge.ogg │ │ │ │ └── release.ogg │ │ │ ├── hit_floor │ │ │ │ ├── 0.ogg │ │ │ │ └── 1.ogg │ │ │ ├── katana │ │ │ │ ├── charge.ogg │ │ │ │ └── release.ogg │ │ │ ├── tentacle │ │ │ │ ├── charge.ogg │ │ │ │ └── release.ogg │ │ │ └── frost_blast │ │ │ │ └── release.ogg │ │ ├── grenadier │ │ │ └── charge.ogg │ │ ├── teleport │ │ │ ├── charge.ogg │ │ │ └── release.ogg │ │ ├── conjunctivius │ │ │ ├── death.ogg │ │ │ ├── dying.ogg │ │ │ ├── hit.ogg │ │ │ ├── move.ogg │ │ │ ├── shot.ogg │ │ │ ├── shout.ogg │ │ │ └── dash │ │ │ │ ├── charge.ogg │ │ │ │ └── release.ogg │ │ ├── inquisitor │ │ │ ├── charge.ogg │ │ │ └── release.ogg │ │ ├── leaping_zombie │ │ │ ├── hit.ogg │ │ │ ├── death.ogg │ │ │ └── leap │ │ │ │ ├── charge.ogg │ │ │ │ └── release.ogg │ │ ├── mutated_bat │ │ │ ├── charge.ogg │ │ │ └── release.ogg │ │ ├── rancid_rat │ │ │ ├── charge.ogg │ │ │ └── release.ogg │ │ ├── scorpion │ │ │ └── charge │ │ │ │ ├── 0.ogg │ │ │ │ └── 1.ogg │ │ ├── shieldbearer │ │ │ ├── charge.ogg │ │ │ └── release.ogg │ │ ├── disgusting_worm │ │ │ ├── death.ogg │ │ │ └── attack.ogg │ │ └── sewers_tentacle │ │ │ └── death.ogg │ │ ├── blockstates │ │ ├── king_statue.json │ │ ├── barrier_rune.json │ │ ├── biome_banner.json │ │ ├── brittle_barrel.json │ │ └── teleporter_core.json │ │ └── misc │ │ └── protected_glint.png │ ├── data │ ├── minecells │ │ ├── weapon_attributes │ │ │ ├── crowbar.json │ │ │ ├── balanced_blade.json │ │ │ └── hattoris_katana.json │ │ ├── value_calculators │ │ │ ├── shields │ │ │ │ ├── ice.json │ │ │ │ ├── blood.json │ │ │ │ ├── greed.json │ │ │ │ ├── cudgel.json │ │ │ │ └── rampart.json │ │ │ ├── spells │ │ │ │ ├── phaser.json │ │ │ │ ├── electric_whip.json │ │ │ │ ├── frost_blast.json │ │ │ │ └── lightning_bolt.json │ │ │ ├── melee │ │ │ │ ├── broadsword.json │ │ │ │ ├── cursed_sword.json │ │ │ │ ├── crowbar.json │ │ │ │ ├── global.json │ │ │ │ ├── nutcracker.json │ │ │ │ ├── spite_sword.json │ │ │ │ ├── assassins_dagger.json │ │ │ │ └── balanced_blade.json │ │ │ └── ranged │ │ │ │ ├── ice.json │ │ │ │ ├── endless.json │ │ │ │ ├── infantry.json │ │ │ │ ├── explosive_bolt.json │ │ │ │ └── multiple_nocks.json │ │ ├── recipes │ │ │ └── special │ │ │ │ ├── clear_doorway.json │ │ │ │ └── clone_doorway.json │ │ ├── tags │ │ │ ├── blocks │ │ │ │ └── conjunctivius_breakable.json │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── valid_portal_biomes.json │ │ ├── structures │ │ │ ├── ramparts │ │ │ │ ├── end.nbt │ │ │ │ ├── base.nbt │ │ │ │ ├── spawn.nbt │ │ │ │ ├── bottom.nbt │ │ │ │ ├── pole │ │ │ │ │ ├── 0.nbt │ │ │ │ │ ├── 1.nbt │ │ │ │ │ ├── 2.nbt │ │ │ │ │ └── 3.nbt │ │ │ │ ├── top │ │ │ │ │ ├── flat.nbt │ │ │ │ │ ├── room.nbt │ │ │ │ │ ├── shooting_range.nbt │ │ │ │ │ ├── two_sweepers.nbt │ │ │ │ │ ├── wooden_platform.nbt │ │ │ │ │ ├── floating_platforms.nbt │ │ │ │ │ └── wooden_over_spikes.nbt │ │ │ │ ├── bottom_end.nbt │ │ │ │ ├── room_end │ │ │ │ │ └── 0.nbt │ │ │ │ ├── spawn_end.nbt │ │ │ │ ├── tower │ │ │ │ │ ├── base.nbt │ │ │ │ │ ├── bottom.nbt │ │ │ │ │ ├── room │ │ │ │ │ │ ├── 0.nbt │ │ │ │ │ │ ├── 1.nbt │ │ │ │ │ │ ├── 2.nbt │ │ │ │ │ │ ├── 3.nbt │ │ │ │ │ │ └── 4.nbt │ │ │ │ │ ├── top │ │ │ │ │ │ ├── 0.nbt │ │ │ │ │ │ └── 1.nbt │ │ │ │ │ └── entry_room │ │ │ │ │ │ └── double.nbt │ │ │ │ ├── room │ │ │ │ │ ├── corridor.nbt │ │ │ │ │ ├── gated_corridor.nbt │ │ │ │ │ ├── elevated_platform.nbt │ │ │ │ │ ├── stacked_corridor.nbt │ │ │ │ │ ├── wooden_see_through.nbt │ │ │ │ │ └── corridor_with_alcove.nbt │ │ │ │ ├── room_entry │ │ │ │ │ ├── 0.nbt │ │ │ │ │ └── 1.nbt │ │ │ │ ├── room_exit │ │ │ │ │ └── 0.nbt │ │ │ │ ├── secret_room │ │ │ │ │ ├── 0.nbt │ │ │ │ │ ├── 1.nbt │ │ │ │ │ └── empty.nbt │ │ │ │ ├── top_entry │ │ │ │ │ ├── 0.nbt │ │ │ │ │ └── 1.nbt │ │ │ │ ├── end_tower │ │ │ │ │ ├── exit.nbt │ │ │ │ │ ├── entrance.nbt │ │ │ │ │ └── elevator_shaft.nbt │ │ │ │ ├── platform │ │ │ │ │ ├── bridge.nbt │ │ │ │ │ ├── islands.nbt │ │ │ │ │ └── broken_bridge.nbt │ │ │ │ ├── elevator_shaft │ │ │ │ │ ├── 0.nbt │ │ │ │ │ ├── 1.nbt │ │ │ │ │ ├── 2.nbt │ │ │ │ │ └── 3.nbt │ │ │ │ └── platform_up │ │ │ │ │ ├── bridge.nbt │ │ │ │ │ └── islands.nbt │ │ │ ├── black_bridge │ │ │ │ ├── top0.nbt │ │ │ │ ├── top1.nbt │ │ │ │ ├── top2.nbt │ │ │ │ ├── top3.nbt │ │ │ │ ├── bottom0.nbt │ │ │ │ ├── bottom1.nbt │ │ │ │ ├── bottom2.nbt │ │ │ │ └── bottom3.nbt │ │ │ ├── overworld_portal.nbt │ │ │ ├── promenade │ │ │ │ ├── end │ │ │ │ │ ├── top.nbt │ │ │ │ │ └── bottom.nbt │ │ │ │ ├── spawn.nbt │ │ │ │ ├── gallows │ │ │ │ │ ├── 0.nbt │ │ │ │ │ └── 1.nbt │ │ │ │ ├── path │ │ │ │ │ ├── half.nbt │ │ │ │ │ ├── turn.nbt │ │ │ │ │ ├── turn │ │ │ │ │ │ ├── 0.nbt │ │ │ │ │ │ └── 1.nbt │ │ │ │ │ ├── building │ │ │ │ │ │ ├── 0.nbt │ │ │ │ │ │ └── 1.nbt │ │ │ │ │ ├── crossroads.nbt │ │ │ │ │ ├── straight │ │ │ │ │ │ ├── 0.nbt │ │ │ │ │ │ ├── 1.nbt │ │ │ │ │ │ ├── 2.nbt │ │ │ │ │ │ └── special │ │ │ │ │ │ │ └── 0.nbt │ │ │ │ │ ├── post │ │ │ │ │ │ └── vine_rune.nbt │ │ │ │ │ └── crossroads_post.nbt │ │ │ │ ├── chain_pile │ │ │ │ │ ├── 0.nbt │ │ │ │ │ ├── 1.nbt │ │ │ │ │ ├── 2.nbt │ │ │ │ │ └── 3.nbt │ │ │ │ ├── king_statue.nbt │ │ │ │ ├── overground │ │ │ │ │ ├── 0.nbt │ │ │ │ │ ├── 1.nbt │ │ │ │ │ ├── 2.nbt │ │ │ │ │ ├── 3.nbt │ │ │ │ │ └── 4.nbt │ │ │ │ ├── stairs │ │ │ │ │ ├── end.nbt │ │ │ │ │ └── spawn.nbt │ │ │ │ ├── ramparts_tower.nbt │ │ │ │ ├── underground │ │ │ │ │ ├── 0.nbt │ │ │ │ │ ├── 1.nbt │ │ │ │ │ ├── 2.nbt │ │ │ │ │ ├── 3.nbt │ │ │ │ │ ├── 4.nbt │ │ │ │ │ └── 5.nbt │ │ │ │ ├── wall_segment │ │ │ │ │ ├── 0.nbt │ │ │ │ │ ├── 1.nbt │ │ │ │ │ ├── 2.nbt │ │ │ │ │ ├── 3.nbt │ │ │ │ │ ├── 4.nbt │ │ │ │ │ └── 5.nbt │ │ │ │ ├── border_wall │ │ │ │ │ ├── top.nbt │ │ │ │ │ ├── bottom.nbt │ │ │ │ │ ├── middle.nbt │ │ │ │ │ └── underground.nbt │ │ │ │ ├── overground_base.nbt │ │ │ │ ├── overground_end │ │ │ │ │ ├── 0.nbt │ │ │ │ │ ├── 1.nbt │ │ │ │ │ └── 2.nbt │ │ │ │ ├── overground_top │ │ │ │ │ ├── 0.nbt │ │ │ │ │ ├── 1.nbt │ │ │ │ │ ├── 2.nbt │ │ │ │ │ ├── 3.nbt │ │ │ │ │ ├── 4.nbt │ │ │ │ │ ├── 5.nbt │ │ │ │ │ ├── 6.nbt │ │ │ │ │ └── 7.nbt │ │ │ │ ├── special │ │ │ │ │ └── vine_rune.nbt │ │ │ │ ├── underground_end │ │ │ │ │ └── 0.nbt │ │ │ │ └── overground_elevator.nbt │ │ │ ├── common │ │ │ │ ├── support_beam.nbt │ │ │ │ ├── corpse │ │ │ │ │ ├── corpse.nbt │ │ │ │ │ ├── skeleton.nbt │ │ │ │ │ └── rotting_corpse.nbt │ │ │ │ ├── hanged_corpse │ │ │ │ │ ├── corpse.nbt │ │ │ │ │ └── skeleton.nbt │ │ │ │ └── standing_cage │ │ │ │ │ ├── cage.nbt │ │ │ │ │ └── broken_cage.nbt │ │ │ ├── better_prison │ │ │ │ ├── promenade.nbt │ │ │ │ ├── turn │ │ │ │ │ ├── hole.nbt │ │ │ │ │ ├── big_doors.nbt │ │ │ │ │ ├── pillar_room.nbt │ │ │ │ │ └── small_doors.nbt │ │ │ │ ├── curve │ │ │ │ │ └── simple.nbt │ │ │ │ ├── spawn │ │ │ │ │ ├── spawn.nbt │ │ │ │ │ ├── outside_far.nbt │ │ │ │ │ └── outside_near.nbt │ │ │ │ ├── stairs │ │ │ │ │ ├── hole.nbt │ │ │ │ │ ├── spiral.nbt │ │ │ │ │ └── centered.nbt │ │ │ │ ├── straight │ │ │ │ │ ├── door.nbt │ │ │ │ │ ├── hole.nbt │ │ │ │ │ ├── room.nbt │ │ │ │ │ ├── bridge.nbt │ │ │ │ │ ├── simple.nbt │ │ │ │ │ └── platform.nbt │ │ │ │ └── terminal │ │ │ │ │ ├── cells.nbt │ │ │ │ │ ├── canteen.nbt │ │ │ │ │ └── storage.nbt │ │ │ └── insufferable_crypt │ │ │ │ ├── spawn.nbt │ │ │ │ ├── boss_room.nbt │ │ │ │ └── elevator_shaft.nbt │ │ ├── damage_type │ │ │ ├── aura.json │ │ │ ├── backstab.json │ │ │ ├── bleeding.json │ │ │ ├── cursed.json │ │ │ ├── elevator.json │ │ │ ├── grenade.json │ │ │ ├── katana.json │ │ │ ├── heavy_bolt.json │ │ │ └── electricity.json │ │ └── worldgen │ │ │ └── noise │ │ │ ├── continentalness.json │ │ │ └── promenade │ │ │ └── cliff.json │ ├── ftbchunks │ │ └── tags │ │ │ ├── blocks │ │ │ └── interact_whitelist.json │ │ │ ├── entity_types │ │ │ └── entity_interact_whitelist.json │ │ │ └── items │ │ │ └── right_click_blacklist.json │ ├── minecraft │ │ └── tags │ │ │ ├── damage_type │ │ │ ├── bypasses_armor.json │ │ │ ├── is_projectile.json │ │ │ ├── no_impact.json │ │ │ └── bypasses_cooldown.json │ │ │ └── blocks │ │ │ ├── climbable.json │ │ │ └── dirt.json │ ├── c │ │ └── tags │ │ │ ├── fluids │ │ │ ├── ancient_sewage.json │ │ │ └── sewage.json │ │ │ ├── entity_types │ │ │ └── bosses.json │ │ │ └── items │ │ │ └── swords.json │ ├── create │ │ └── tags │ │ │ └── items │ │ │ ├── upright_on_belt.json │ │ │ ├── modded_stripped_logs.json │ │ │ └── modded_stripped_wood.json │ ├── bewitchment │ │ └── tags │ │ │ └── items │ │ │ ├── weak_wands.json │ │ │ ├── average_swords.json │ │ │ └── strong_swords.json │ └── supplementaries │ │ └── tags │ │ └── items │ │ └── chains.json │ └── resourcepacks │ └── ribcages │ ├── pack.png │ ├── pack.mcmeta │ └── assets │ └── minecells │ └── models │ └── block │ ├── skeleton.json │ ├── hanged_skeleton.json │ └── rotting_corpse.json ├── gradle └── wrapper │ └── gradle-wrapper.jar └── .idea └── codeStyles └── codeStyleConfig.xml /LICENSE_ASSETS: -------------------------------------------------------------------------------- 1 | Copyright (c) 2024 Mim1q. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /datagen/libs/tada.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/datagen/libs/tada.jar -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Done to increase the memory available to gradle. 2 | org.gradle.jvmargs=-Xmx4G -------------------------------------------------------------------------------- /changelogs/old/1.19.2-1.4.2.md: -------------------------------------------------------------------------------- 1 | # Mine Cells 1.4.2 2 | 3 | - Removed broken RpgDifficulty compatibility -------------------------------------------------------------------------------- /projectPageAssets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/projectPageAssets/hero.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/particles/fly.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecells:fly" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/weapon_attributes/crowbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:blood_sword" 3 | } -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/cell_forge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/cell_forge" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/chain_pile.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/chain_pile" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/particles/aura.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecells:aura" 4 | ] 5 | } -------------------------------------------------------------------------------- /projectPageAssets/hosting-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/projectPageAssets/hosting-code.png -------------------------------------------------------------------------------- /src/main/resources/data/minecells/weapon_attributes/balanced_blade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:blood_sword" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/weapon_attributes/hattoris_katana.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:katana" 3 | } 4 | -------------------------------------------------------------------------------- /changelogs/old/1.19.2-0.2.2.md: -------------------------------------------------------------------------------- 1 | * Added new death messages 2 | * Added new climbable big chain block 3 | * Some small fixes 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/base_crossbow_charged.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:item/base_crossbow" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/particles/drop.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecells:drop/drop_big" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/particles/explosion.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecells:explosion" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/particles/magic_orb.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecells:magic_orb" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/particles/protector.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecells:protector" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/particles/rising_bubble.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecells:bubble" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/particles/speckle.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecraft:generic_0" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/shields/ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/putrid_boards.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/putrid_boards/boarded" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/small_crate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/small_crate/small_crate_0" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/particles/small_drop.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecells:drop/drop_small" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/ftbchunks/tags/blocks/interact_whitelist.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/shields/blood.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/shields/greed.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/damage_type/bypasses_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecells:cursed" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/damage_type/is_projectile.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecells:heavy_bolt" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/damage_type/no_impact.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecells:electricity" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/prison.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/white.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/damage_type/bypasses_cooldown.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecells:heavy_bolt" 4 | ] 5 | } -------------------------------------------------------------------------------- /changelogs/old/1.20.1-1.7.4.md: -------------------------------------------------------------------------------- 1 | # Mine Cells 1.7.4 2 | 3 | Fixed a rare bug that caused the game to crash upon entering the Insufferable Crypt. -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/promenade.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/ramparts.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /datagen/src/main/resources/images/bow_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/datagen/src/main/resources/images/bow_atlas.png -------------------------------------------------------------------------------- /datagen/src/main/resources/images/flag_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/datagen/src/main/resources/images/flag_atlas.png -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/fluids/ancient_sewage.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:sewage" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/fluids/sewage.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:ancient_sewage" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/recipes/special/clear_doorway.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecells:clear_doorway_recipe", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/recipes/special/clone_doorway.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecells:clone_doorway_recipe", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /changelogs/old/1.19.2-1.4.3.md: -------------------------------------------------------------------------------- 1 | # Mine Cells 1.4.3 2 | 3 | - Fixed comparator update bug (Thank you to [jpenilla](https://github.com/jpenilla) on GitHub!) -------------------------------------------------------------------------------- /changelogs/old/1.20.1-1.8.2.md: -------------------------------------------------------------------------------- 1 | # Mine Cells 1.8.2 2 | 3 | - Updated Gimm1q library (fixed mouse movement behaving weirdly after a screenshake event) 4 | -------------------------------------------------------------------------------- /datagen/src/main/resources/images/septite_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/datagen/src/main/resources/images/septite_atlas.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/alchemy_equipment_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/alchemy_equipment/alchemy_equipment_0" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/alchemy_equipment_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/alchemy_equipment/alchemy_equipment_1" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/alchemy_equipment_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/alchemy_equipment/alchemy_equipment_2" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/buzz.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/buzz.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/crit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/crit.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/rise.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/rise.ogg -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/entity_types/bosses.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:conjunctivius" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/data/create/tags/items/upright_on_belt.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:health_flask" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/ribcages/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/resourcepacks/ribcages/pack.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/block/teleporter/middle.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "minecells:block/prison_stone" 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/freeze.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/freeze.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/shock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/shock.ogg -------------------------------------------------------------------------------- /src/main/resources/data/bewitchment/tags/items/weak_wands.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:prison_torch" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/data/supplementaries/tags/items/chains.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:big_chain" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /datagen/src/main/resources/images/large_flag_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/datagen/src/main/resources/images/large_flag_atlas.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/explosion.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/fly/fly.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/fly/fly.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/obelisk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/obelisk.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/doorway_glow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/monster_cell.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/tags/blocks/conjunctivius_breakable.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:big_chain" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/blockstates/king_statue.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/cell_absorb.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/cell_absorb.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/curse_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/curse_death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/fly/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/fly/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/fly/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/fly/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/portal/use.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/portal/use.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/fluid/toxic_sewage.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/group.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/tabs.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/cage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/cage.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/guts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/guts.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/blockstates/barrier_rune.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/barrier" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/misc/protected_glint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/misc/protected_glint.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/step.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/step.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/elevator_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/elevator_start.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/elevator_stop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/elevator_stop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/kamikaze/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/kamikaze/death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/kamikaze/wake.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/kamikaze/wake.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/shocker/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/shocker/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/shocker/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/shocker/death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/sweeper/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/sweeper/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/swipe/0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/swipe/0.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/swipe/1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/swipe/1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/swipe/2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/swipe/2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/big_chain_dash.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "frames": [0, 1, 2, 1, 0] 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/corpse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/corpse.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/crate.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/fluid/ancient_sewage.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/spikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/spikes.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/cell.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/crowbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/crowbar.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/dimensional_rune_glow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/flint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/flint.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/phaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/phaser.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/fly.png -------------------------------------------------------------------------------- /src/main/resources/data/create/tags/items/modded_stripped_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:stripped_putrid_log" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/data/create/tags/items/modded_stripped_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:stripped_putrid_wood" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/data/ftbchunks/tags/entity_types/entity_interact_whitelist.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:elevator" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/end.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/end.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/shields/cudgel.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "block_damage_reduction": 0.25 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/shields/rampart.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "block_damage_reduction": 0.8 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/ribcages/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Replaces corpses with animal bones", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/blockstates/biome_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecells:block/putrid_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/blockstates/brittle_barrel.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecells:block/brittle_barrel" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/big_chain.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "minecells:item/big_chain" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/shout.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/shout.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/grenadier/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/grenadier/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/kamikaze/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/kamikaze/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/portal/activate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/portal/activate.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/shocker/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/shocker/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/sweeper/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/sweeper/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/teleport/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/teleport/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/teleport/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/teleport/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/fluid/ancient_sewage_flowing.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/fluid/toxic_sewage_flowing.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/skeleton.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/boss_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/boss_bars.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/big_chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/big_chain.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/guidebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/guidebook.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/ice_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/ice_arrow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/tentacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/tentacle.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/vine_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/vine_rune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/aura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/aura.png -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/base.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/base.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/spawn.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/spawn.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/spells/phaser.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 4.0, 5 | "cooldown": 1.5 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/blockstates/teleporter_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecells:block/teleporter/middle" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/arrow/ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:arrow/default", 3 | "textures": { 4 | "arrow": "minecells:item/arrow_entity/ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/leap/land.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/leap/land.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/conjunctivius/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/conjunctivius/death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/conjunctivius/dying.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/conjunctivius/dying.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/conjunctivius/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/conjunctivius/hit.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/conjunctivius/move.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/conjunctivius/move.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/conjunctivius/shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/conjunctivius/shot.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/conjunctivius/shout.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/conjunctivius/shout.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/inquisitor/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/inquisitor/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/inquisitor/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/inquisitor/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/leaping_zombie/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/leaping_zombie/hit.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/mutated_bat/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/mutated_bat/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/mutated_bat/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/mutated_bat/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/rancid_rat/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/rancid_rat/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/rancid_rat/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/rancid_rat/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/scorpion/charge/0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/scorpion/charge/0.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/scorpion/charge/1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/scorpion/charge/1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/shieldbearer/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/shieldbearer/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/bow/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/bow/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/bow/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/bow/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/flint/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/flint/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/hit_floor/0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/hit_floor/0.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/hit_floor/1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/hit_floor/1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/big_chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/big_chain.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/bloomrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/bloomrock.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/cage_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/cage_bars.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/cage_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/cage_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/crate_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/crate_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/flag_pole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/flag_pole.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/hardstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/hardstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/metal_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/metal_torch.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/prison_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/prison_bars.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_wood.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/runic_vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/runic_vine.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/small_crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/small_crate.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/teleporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/teleporter.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/elevator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/elevator.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/inquisitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/inquisitor.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/kamikaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/kamikaze.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/button/kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/button/kofi.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arcane_goo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arcane_goo.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/barrier_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/barrier_rune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/biome_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/biome_banner.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/blank_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/blank_rune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/blood_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/blood_bottle.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/blood_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/blood_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/broadsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/broadsword.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/broken_cage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/broken_cage.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/cursed_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/cursed_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/doorway_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/doorway_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/firebrands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/firebrands.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/frost_blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/frost_blast.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/health_flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/health_flask.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/king_statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/king_statue.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/metal_shards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/metal_shards.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/molten_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/molten_chunk.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/monster_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/monster_cell.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/monsters_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/monsters_eye.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/nutcracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/nutcracker.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/prison_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/prison_torch.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/putrid_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/putrid_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/putrid_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/putrid_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/reset_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/reset_rune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spite_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spite_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/misc/hint_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/misc/hint_marker.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/mob_effect/cursed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/mob_effect/cursed.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/mob_effect/frozen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/mob_effect/frozen.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/bubble.png -------------------------------------------------------------------------------- /src/main/resources/data/minecells/damage_type/aura.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "minecells.aura", 3 | "exhaustion": 0, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/black_bridge/top0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/black_bridge/top0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/black_bridge/top1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/black_bridge/top1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/black_bridge/top2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/black_bridge/top2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/black_bridge/top3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/black_bridge/top3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/overworld_portal.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/overworld_portal.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/end/top.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/end/top.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/spawn.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/spawn.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/bottom.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/bottom.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/pole/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/pole/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/pole/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/pole/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/pole/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/pole/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/pole/3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/pole/3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/top/flat.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/top/flat.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/top/room.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/top/room.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/melee/broadsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 10.0, 5 | "speed": 1.1 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/spells/electric_whip.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 7.0, 5 | "cooldown": 0.8 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/spells/frost_blast.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 2.0, 5 | "cooldown": 6.0 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/spells/lightning_bolt.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": "1.0 + 2.0 * INTENSITY" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/climbable.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:big_chain", 5 | "minecells:runic_vine" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/aura/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/aura/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/leap/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/leap/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/disgusting_worm/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/disgusting_worm/death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/leaping_zombie/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/leaping_zombie/death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/sewers_tentacle/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/sewers_tentacle/death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/shieldbearer/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/shieldbearer/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/flint/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/flint/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/katana/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/katana/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/katana/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/katana/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/cell_crafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/cell_crafter.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/prison_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/prison_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/prison_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/prison_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_fence.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/return_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/return_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/spawner_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/spawner_rune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/spikes_bloody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/spikes_bloody.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/wilted_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/wilted_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/effect/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/effect/star.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/mutated_bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/mutated_bat.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/shieldbearer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/shieldbearer.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/signs/putrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/signs/putrid.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/button/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/button/discord.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/guidebook/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/guidebook/book.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/balanced_blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/balanced_blade.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/boss_stem_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/boss_stem_cell.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/cell_holder/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/cell_holder/1.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/cell_holder/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/cell_holder/2.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/cell_holder/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/cell_holder/3.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/doorway_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/doorway_frame.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/electric_whip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/electric_whip.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/explosive_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/explosive_bolt.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/explosive_bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/explosive_bulb.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/heavy_crossbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/heavy_crossbow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/infected_flesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/infected_flesh.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/lightning_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/lightning_bolt.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/sewage_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/sewage_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/sewer_calamari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/sewer_calamari.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/cudgel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/cudgel.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/rampart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/rampart.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/throwing_knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/throwing_knife.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/misc/electric_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/misc/electric_arch.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/mob_effect/bleeding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/mob_effect/bleeding.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/mob_effect/disarmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/mob_effect/disarmed.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/mob_effect/stunned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/mob_effect/stunned.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/explosion.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/magic_orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/magic_orb.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/protector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/protector.png -------------------------------------------------------------------------------- /src/main/resources/data/minecells/damage_type/backstab.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "minecells.backstab", 3 | "exhaustion": 0, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/damage_type/bleeding.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "minecells.bleeding", 3 | "exhaustion": 0, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/damage_type/cursed.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "minecells.cursed", 3 | "exhaustion": 0, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/damage_type/elevator.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "minecells.elevator", 3 | "exhaustion": 0, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/damage_type/grenade.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "minecells.grenade", 3 | "exhaustion": 0, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/damage_type/katana.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "minecells.katana", 3 | "exhaustion": 0, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/common/support_beam.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/common/support_beam.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/gallows/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/gallows/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/gallows/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/gallows/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/half.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/half.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/turn.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/turn.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/bottom_end.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/bottom_end.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room_end/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room_end/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/spawn_end.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/spawn_end.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/base.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/base.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/melee/cursed_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 25.0, 5 | "speed": 1.0 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /changelogs/old/1.20.1-1.8.5.md: -------------------------------------------------------------------------------- 1 | # Mine Cells 1.8.5 2 | 3 | ## Fixed bugs 4 | 5 | - Arrows growing infinitely large. Now they will just spawn a few particles upon disappearing, instead. 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/arrow/endless.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:arrow/default", 3 | "textures": { 4 | "arrow": "minecells:item/arrow_entity/endless" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/arrow/infantry.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:arrow/default", 3 | "textures": { 4 | "arrow": "minecells:item/arrow_entity/infantry" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/arrow/marksman.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:arrow/default", 3 | "textures": { 4 | "arrow": "minecells:item/arrow_entity/marksman" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/arrow/quick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:arrow/default", 3 | "textures": { 4 | "arrow": "minecells:item/arrow_entity/quick" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/aura/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/aura/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/punch/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/punch/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/punch/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/punch/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/disgusting_worm/attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/disgusting_worm/attack.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/tentacle/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/tentacle/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/tentacle/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/tentacle/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/alchemy_bottles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/alchemy_bottles.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/big_chain_dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/big_chain_dash.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/bloomrock_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/bloomrock_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/bloomrock_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/bloomrock_tiles.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/brittle_barrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/brittle_barrel.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/broken_cage_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/broken_cage_bars.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/chain_pile_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/chain_pile_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/prison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/prison.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/ramparts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/ramparts.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_trapdoor.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/rotting_corpse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/rotting_corpse.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/runic_vine_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/runic_vine_plant.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/runic_vine_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/runic_vine_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/runic_vine_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/runic_vine_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/arrow_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/arrow_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/big_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/big_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/rift/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/rift/base.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/effect/red_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/effect/red_star.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/effect/stunned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/effect/stunned.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/fly/buzzcutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/fly/buzzcutter.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/obelisk/elite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/obelisk/elite.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/runner/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/runner/runner.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/scorpion/spit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/scorpion/spit.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/shocker/shocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/shocker/shocker.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/sweeper/sweeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/sweeper/sweeper.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/tentacle_weapon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/tentacle_weapon.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/undead_archer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/undead_archer.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/guidebook/crafting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/guidebook/crafting.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/guidebook/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/guidebook/filler.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/toast/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/toast/background.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/ice.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/assassins_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/assassins_dagger.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/buzzcutter_fang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/buzzcutter_fang.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/cell_holder/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/cell_holder/empty.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/hattoris_katana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/hattoris_katana.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/promenade_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/promenade_torch.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/runic_vine_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/runic_vine_item.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/3d/cudgel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/3d/cudgel.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/3d/rampart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/3d/rampart.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/ice_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/ice_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/runner.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/misc/protected_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/misc/protected_circle.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/mob_effect/electrified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/mob_effect/electrified.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/mob_effect/protected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/mob_effect/protected.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/drop/drop_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/drop/drop_big.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/electricity/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/electricity/0.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/electricity/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/electricity/1.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/electricity/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/electricity/2.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/electricity/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/electricity/3.png -------------------------------------------------------------------------------- /src/main/resources/data/minecells/damage_type/heavy_bolt.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "minecells.heavy_bolt", 3 | "exhaustion": 0, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/black_bridge/bottom0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/black_bridge/bottom0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/black_bridge/bottom1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/black_bridge/bottom1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/black_bridge/bottom2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/black_bridge/bottom2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/black_bridge/bottom3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/black_bridge/bottom3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/common/corpse/corpse.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/common/corpse/corpse.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/common/corpse/skeleton.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/common/corpse/skeleton.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/chain_pile/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/chain_pile/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/chain_pile/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/chain_pile/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/chain_pile/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/chain_pile/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/chain_pile/3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/chain_pile/3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/end/bottom.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/end/bottom.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/king_statue.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/king_statue.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground/3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground/3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground/4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground/4.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/turn/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/turn/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/turn/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/turn/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/stairs/end.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/stairs/end.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/stairs/spawn.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/stairs/spawn.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room/corridor.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room/corridor.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room_entry/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room_entry/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room_entry/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room_entry/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room_exit/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room_exit/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/secret_room/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/secret_room/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/secret_room/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/secret_room/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/top_entry/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/top_entry/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/top_entry/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/top_entry/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/bottom.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/bottom.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/room/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/room/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/room/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/room/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/room/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/room/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/room/3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/room/3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/room/4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/room/4.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/top/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/top/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/top/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/top/1.nbt -------------------------------------------------------------------------------- /changelogs/old/1.20.1-1.5.7.md: -------------------------------------------------------------------------------- 1 | # Mine Cells 1.5.7 2 | 3 | - Fixed portals in the Promenade sometimes getting destroyed by bushes 4 | - Fixed items in hand not displaying in Mine Cells dimensions -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/arrow/heavy_bolt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:arrow/default", 3 | "textures": { 4 | "arrow": "minecells:item/arrow_entity/heavy_bolt" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/shockwave/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/shockwave/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/conjunctivius/dash/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/conjunctivius/dash/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/conjunctivius/dash/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/conjunctivius/dash/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/leaping_zombie/leap/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/leaping_zombie/leap/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/weapon/frost_blast/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/weapon/frost_blast/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/brittle_barrel_rim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/brittle_barrel_rim.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/brittle_barrel_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/brittle_barrel_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/overworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/overworld.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/promenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/promenade.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/elevator_assembler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/elevator_assembler.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/fluid/toxic_sewage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/fluid/toxic_sewage.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/prison_cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/prison_cobblestone.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_board_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_board_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/putrid_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/putrid_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/red_putrid_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/red_putrid_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/red_wilted_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/red_wilted_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/wilted_grass_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/wilted_grass_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/wilted_wall_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/wilted_wall_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/banner/elite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/banner/elite.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/statue/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/statue/king.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/grenades/grenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/grenades/grenade.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/obelisk/concierge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/obelisk/concierge.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/scorpion/scorpion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/scorpion/scorpion.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/cell_crafter/recipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/cell_crafter/recipes.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/quick.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/cell_infused_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/cell_infused_steel.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/elevator_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/elevator_mechanism.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/greed_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/greed_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/kamikaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/kamikaze.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/scorpion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/scorpion.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/shocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/shocker.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/sweeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/sweeper.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/transposition_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/transposition_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/charge/charge_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/charge/charge_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/charge/charge_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/charge/charge_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/charge/charge_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/charge/charge_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/charge/charge_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/charge/charge_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/drop/drop_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/drop/drop_small.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/falling_leaf/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/falling_leaf/0.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/falling_leaf/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/falling_leaf/1.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/falling_leaf/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/falling_leaf/2.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/particle/falling_leaf/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/particle/falling_leaf/3.png -------------------------------------------------------------------------------- /src/main/resources/data/bewitchment/tags/items/average_swords.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:assassins_dagger", 5 | "minecells:blood_sword" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/data/bewitchment/tags/items/strong_swords.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:hattoris_katana", 5 | "minecells:cursed_sword" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/damage_type/electricity.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "minecells.electricity", 3 | "exhaustion": 0.15, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/promenade.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/promenade.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/turn/hole.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/turn/hole.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/insufferable_crypt/spawn.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/insufferable_crypt/spawn.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/ramparts_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/ramparts_tower.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/underground/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/underground/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/underground/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/underground/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/underground/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/underground/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/underground/3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/underground/3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/underground/4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/underground/4.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/underground/5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/underground/5.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/wall_segment/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/wall_segment/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/wall_segment/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/wall_segment/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/wall_segment/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/wall_segment/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/wall_segment/3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/wall_segment/3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/wall_segment/4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/wall_segment/4.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/wall_segment/5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/wall_segment/5.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/end_tower/exit.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/end_tower/exit.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/platform/bridge.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/platform/bridge.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/tags/worldgen/biome/valid_portal_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#c:forest", 5 | "#c:taiga", 6 | "#c:plains" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/ranged/ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 4.0, 5 | "speed": 2.0, 6 | "spread": 1.0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/ribcages/assets/minecells/models/block/skeleton.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/corpse", 3 | "textures": { 4 | "0": "minecells:block/skeleton" 5 | } 6 | } -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/arrow/explosive_bolt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:arrow/default", 3 | "textures": { 4 | "arrow": "minecells:item/arrow_entity/explosive_bolt" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/arrow/multiple_nocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:arrow/default", 3 | "textures": { 4 | "arrow": "minecells:item/arrow_entity/multiple_nocks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/concierge/shockwave/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/concierge/shockwave/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/sounds/leaping_zombie/leap/release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/sounds/leaping_zombie/leap/release.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/prison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/colored_torch/prison.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/sewers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/colored_torch/sewers.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/colored_torch/white.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/cracked_prison_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/cracked_prison_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/black_bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/black_bridge.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/fluid/ancient_sewage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/fluid/ancient_sewage.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/hanged_skeleton_chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/hanged_skeleton_chain.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/kingdom_portal_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/kingdom_portal_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/orange_alchemy_spill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/orange_alchemy_spill.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/orange_putrid_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/orange_putrid_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/orange_wilted_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/orange_wilted_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/overgrown_bloomrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/overgrown_bloomrock.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/small_prison_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/small_prison_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/sprouting_bloomrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/sprouting_bloomrock.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/stripped_putrid_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/stripped_putrid_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/stripped_putrid_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/stripped_putrid_wood.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/wilted_hanging_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/wilted_hanging_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/banner/ramparts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/banner/ramparts.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/kingdom_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/kingdom_portal.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/rift/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/rift/background.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/teleporter_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/teleporter_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/wormhole/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/wormhole/base.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/boss_bars/boss_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/boss_bars/boss_bars.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/concierge/concierge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/concierge/concierge.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/conjunctivius/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/conjunctivius/chain.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/conjunctivius/eyelid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/conjunctivius/eyelid.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/conjunctivius/spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/conjunctivius/spike.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/effect/blood_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/effect/blood_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/fly/buzzcutter_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/fly/buzzcutter_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/grenades/big_grenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/grenades/big_grenade.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/grenadier/grenadier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/grenadier/grenadier.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/protector/protector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/protector/protector.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/runner/runner_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/runner/runner_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/sewers_tentacle/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/sewers_tentacle/blue.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/sewers_tentacle/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/sewers_tentacle/red.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/shocker/shocker_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/shocker/shocker_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/sweeper/sweeper_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/sweeper/sweeper_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/cell_crafter/container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/cell_crafter/container.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/cell_crafter/emi_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/cell_crafter/emi_arrow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/doorway_selection/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/doorway_selection/close.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/guidebook/images/prison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/guidebook/images/prison.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/ancient_sewage_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/ancient_sewage_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/default.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/endless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/endless.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/infantry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/infantry.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/marksman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/marksman.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/concierge_respawn_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/concierge_respawn_rune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/cooked_sewer_calamari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/cooked_sewer_calamari.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/dimensional_rune_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/dimensional_rune_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/dimensional_rune_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/dimensional_rune_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/interdimensional_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/interdimensional_rune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/3d/greed_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/3d/greed_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/3d/ice_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/3d/ice_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/assault_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/assault_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/buzzcutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/buzzcutter.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/grenadier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/grenadier.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/inquisitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/inquisitor.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/mutated_bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/mutated_bat.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/protector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/protector.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/rancid_rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/rancid_rat.png -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/curve/simple.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/curve/simple.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/spawn/spawn.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/spawn/spawn.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/stairs/hole.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/stairs/hole.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/stairs/spiral.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/stairs/spiral.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/straight/door.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/straight/door.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/straight/hole.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/straight/hole.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/straight/room.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/straight/room.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/common/hanged_corpse/corpse.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/common/hanged_corpse/corpse.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/common/standing_cage/cage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/common/standing_cage/cage.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/border_wall/top.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/border_wall/top.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_base.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_base.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_end/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_end/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_end/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_end/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_end/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_end/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_top/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_top/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_top/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_top/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_top/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_top/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_top/3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_top/3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_top/4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_top/4.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_top/5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_top/5.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_top/6.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_top/6.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_top/7.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_top/7.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/building/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/building/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/building/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/building/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/crossroads.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/crossroads.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/straight/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/straight/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/straight/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/straight/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/straight/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/straight/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/special/vine_rune.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/special/vine_rune.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/underground_end/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/underground_end/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/elevator_shaft/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/elevator_shaft/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/elevator_shaft/1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/elevator_shaft/1.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/elevator_shaft/2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/elevator_shaft/2.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/elevator_shaft/3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/elevator_shaft/3.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/end_tower/entrance.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/end_tower/entrance.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/platform/islands.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/platform/islands.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/platform_up/bridge.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/platform_up/bridge.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/secret_room/empty.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/secret_room/empty.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/top/shooting_range.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/top/shooting_range.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/top/two_sweepers.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/top/two_sweepers.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/ranged/endless.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 5.0, 5 | "speed": 2.0, 6 | "spread": 1.0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:wilted_grass_block", 5 | "minecells:bloomrock_wilted_grass_block" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/promenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/colored_torch/promenade.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/ramparts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/colored_torch/ramparts.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/orange_alchemy_bottles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/orange_alchemy_bottles.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/red_wilted_wall_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/red_wilted_wall_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/stripped_putrid_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/stripped_putrid_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/conjunctivius/eye_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/conjunctivius/eye_blue.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/conjunctivius/eye_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/conjunctivius/eye_pink.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/obelisk/conjunctivius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/obelisk/conjunctivius.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/rancid_rat/rancid_rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/rancid_rat/rancid_rat.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/scorpion/scorpion_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/scorpion/scorpion_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/sewers_tentacle/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/sewers_tentacle/purple.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/crosshair/crit_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/crosshair/crit_indicator.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/guidebook/images/elevator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/guidebook/images/elevator.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/guidebook/images/ramparts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/guidebook/images/ramparts.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/firebrands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/firebrands.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/heavy_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/heavy_bolt.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/3d/assault_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/3d/assault_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/shieldbearer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/shieldbearer.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/undead_archer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/undead_archer.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/mob_effect/assassins_strength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/mob_effect/assassins_strength.png -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/items/swords.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:blood_sword", 5 | "minecells:cursed_sword", 6 | "minecells:hattoris_katana" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/stairs/centered.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/stairs/centered.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/straight/bridge.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/straight/bridge.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/straight/simple.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/straight/simple.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/terminal/cells.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/terminal/cells.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/turn/big_doors.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/turn/big_doors.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/common/corpse/rotting_corpse.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/common/corpse/rotting_corpse.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/common/hanged_corpse/skeleton.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/common/hanged_corpse/skeleton.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/insufferable_crypt/boss_room.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/insufferable_crypt/boss_room.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/border_wall/bottom.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/border_wall/bottom.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/border_wall/middle.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/border_wall/middle.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/overground_elevator.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/overground_elevator.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/post/vine_rune.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/post/vine_rune.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/platform_up/islands.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/platform_up/islands.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room/gated_corridor.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room/gated_corridor.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/top/wooden_platform.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/top/wooden_platform.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/melee/crowbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 6.0, 5 | "speed": 1.6, 6 | "crit_damage": 4.0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/melee/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "global_damage_multiplier": 1.0, 5 | "global_speed_multiplier": 1.0 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/ranged/infantry.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 6.0, 5 | "crit_damage": 6.0, 6 | "speed": 2.0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/arrow/nerves_of_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:arrow/default", 3 | "textures": { 4 | "arrow": "minecells:item/arrow_entity/nerves_of_steel" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/models/item/weapon/crowbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "minecells:item/crowbar" 5 | }, 6 | "gui_light": "front" 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/colored_torch/copper_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/colored_torch/copper_torch.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/cracked_bloomrock_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/cracked_bloomrock_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/insufferable_crypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/insufferable_crypt.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/prison_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/prison_background.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/fluid/toxic_sewage_flowing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/fluid/toxic_sewage_flowing.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/orange_wilted_wall_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/orange_wilted_wall_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/red_wilted_hanging_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/red_wilted_hanging_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/wilted_grass_block_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/wilted_grass_block_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/wilted_wall_leaves_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/wilted_wall_leaves_detail.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/banner/black_bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/banner/black_bridge.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/banner/kings_crest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/banner/kings_crest.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/kingdom_portal_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/kingdom_portal_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/kingdom_portal_unlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/kingdom_portal_unlit.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/concierge/concierge_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/concierge/concierge_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/conjunctivius/eye_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/conjunctivius/eye_green.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/conjunctivius/eye_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/conjunctivius/eye_yellow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/conjunctivius/projectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/conjunctivius/projectile.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/grenadier/grenadier_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/grenadier/grenadier_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/protector/protector_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/protector/protector_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/cell_crafter/recipe_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/cell_crafter/recipe_button.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/guidebook/images/overworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/guidebook/images/overworld.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/guidebook/images/promenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/guidebook/images/promenade.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/explosive_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/explosive_bolt.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/multiple_nocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/multiple_nocks.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/throwing_knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/throwing_knife.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/conjunctivius_respawn_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/conjunctivius_respawn_rune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/bloodthirsty_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/bloodthirsty_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/disgusting_worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/disgusting_worm.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/leaping_zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/leaping_zombie.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/spawn_eggs/sewers_tentacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/spawn_eggs/sewers_tentacle.png -------------------------------------------------------------------------------- /src/main/resources/data/ftbchunks/tags/items/right_click_blacklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecells:ancient_sewage_bucket", 5 | "minecells:sewage_bucket" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/spawn/outside_far.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/spawn/outside_far.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/spawn/outside_near.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/spawn/outside_near.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/straight/platform.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/straight/platform.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/terminal/canteen.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/terminal/canteen.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/terminal/storage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/terminal/storage.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/turn/pillar_room.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/turn/pillar_room.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/better_prison/turn/small_doors.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/better_prison/turn/small_doors.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/common/standing_cage/broken_cage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/common/standing_cage/broken_cage.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/crossroads_post.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/crossroads_post.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/platform/broken_bridge.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/platform/broken_bridge.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room/elevated_platform.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room/elevated_platform.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room/stacked_corridor.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room/stacked_corridor.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room/wooden_see_through.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room/wooden_see_through.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/top/floating_platforms.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/top/floating_platforms.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/top/wooden_over_spikes.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/top/wooden_over_spikes.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/tower/entry_room/double.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/tower/entry_room/double.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/melee/nutcracker.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 8.0, 5 | "speed": 1.0, 6 | "crit_damage": 6.0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/melee/spite_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 7.0, 5 | "speed": 1.5, 6 | "crit_damage": 2.0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/ranged/explosive_bolt.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 0.0, 5 | "speed": 2.0, 6 | "spread": 1.0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/ranged/multiple_nocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 5.0, 5 | "speed": 2.0, 6 | "spread": 1.0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/worldgen/noise/continentalness.json: -------------------------------------------------------------------------------- 1 | { 2 | "firstOctave": -8, 3 | "amplitudes": [ 4 | 1, 5 | 1, 6 | 1, 7 | 3, 8 | 4, 9 | 3 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/ribcages/assets/minecells/models/block/hanged_skeleton.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/hanged_corpse", 3 | "textures": { 4 | "0": "minecells:block/skeleton" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/ribcages/assets/minecells/models/block/rotting_corpse.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecells:block/corpse", 3 | "textures": { 4 | "0": "minecells:block/rotting_corpse" 5 | } 6 | } -------------------------------------------------------------------------------- /changelogs/old/1.19.2-0.4.0.md: -------------------------------------------------------------------------------- 1 | # Updated to 1.19! 2 | 3 | ## Entites 4 | 5 | * Scorpion 6 | * Runner (behavior implemented) 7 | 8 | ## Mechanics 9 | 10 | * Cells dropping from entities (currently no use) -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/bloomrock_wilted_grass_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/bloomrock_wilted_grass_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/overworld_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/overworld_background.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/promenade_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/promenade_background.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/ramparts_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/ramparts_background.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/fluid/ancient_sewage_flowing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/fluid/ancient_sewage_flowing.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/orange_wilted_hanging_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/orange_wilted_hanging_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/conjunctivius/conjunctivius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/conjunctivius/conjunctivius.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/rancid_rat/rancid_rat_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/rancid_rat/rancid_rat_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/shocker/shocker_glow_angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/shocker/shocker_glow_angry.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/gui/guidebook/images/black_bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/gui/guidebook/images/black_bridge.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/arrow_entity/nerves_of_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/arrow_entity/nerves_of_steel.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/charged_interdimensional_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/charged_interdimensional_rune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/item/shield/3d/bloodthirsty_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/item/shield/3d/bloodthirsty_shield.png -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/insufferable_crypt/elevator_shaft.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/insufferable_crypt/elevator_shaft.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/border_wall/underground.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/border_wall/underground.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/promenade/path/straight/special/0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/promenade/path/straight/special/0.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/end_tower/elevator_shaft.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/end_tower/elevator_shaft.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/structures/ramparts/room/corridor_with_alcove.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/data/minecells/structures/ramparts/room/corridor_with_alcove.nbt -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/melee/assassins_dagger.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 5.0, 5 | "speed": 1.9, 6 | "crit_damage": 4.0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/value_calculators/melee/balanced_blade.json: -------------------------------------------------------------------------------- 1 | { 2 | "variables": {}, 3 | "equations": { 4 | "damage": 5.0, 5 | "speed": 1.6, 6 | "crit_damage": 0.75 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/data/minecells/worldgen/noise/promenade/cliff.json: -------------------------------------------------------------------------------- 1 | { 2 | "firstOctave": -7, 3 | "amplitudes": [ 4 | 0.5, 5 | 1, 6 | 0, 7 | 1, 8 | 0, 9 | 1 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/doorway/black_bridge_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/doorway/black_bridge_background.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/block/red_wilted_wall_leaves_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/block/red_wilted_wall_leaves_detail.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/banner/insufferable_crypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/banner/insufferable_crypt.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/blockentity/banner/torn_kings_crest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/blockentity/banner/torn_kings_crest.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/grenades/disgusting_worm_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/grenades/disgusting_worm_egg.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecells/textures/entity/leaping_zombie/leaping_zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mim1q/MineCells/HEAD/src/main/resources/assets/minecells/textures/entity/leaping_zombie/leaping_zombie.png --------------------------------------------------------------------------------