├── .github └── workflows │ ├── lint.yml │ └── release.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── ComponentVftable.py ├── Justfile ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── api_examples ├── ew_api_example │ ├── compatibility.xml │ ├── init.lua │ ├── mod.xml │ └── module.lua └── noita_api_example │ ├── Cargo.lock │ ├── Cargo.toml │ ├── material_converter │ ├── init.lua │ ├── material_converter.dll │ └── mod.xml │ └── src │ └── lib.rs ├── blob_guy ├── Cargo.lock ├── Cargo.toml ├── blob_guy │ ├── init.lua │ ├── materials.xml │ └── mod.xml ├── examples │ └── blob │ │ └── main.rs └── src │ ├── blob_guy.rs │ ├── chunk.rs │ └── lib.rs ├── contributing.md ├── docs ├── capabilities.md ├── distributed_world_sync.drawio ├── hooks.md ├── perks_that_dont_work_properly.md └── testing_wands.md ├── ewext ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── src │ ├── debug.rs │ ├── lib.rs │ ├── modules.rs │ ├── modules │ │ ├── entity_sync.rs │ │ ├── entity_sync │ │ │ ├── diff_model.rs │ │ │ └── interest.rs │ │ ├── world_sync.rs │ │ └── world_sync │ │ │ └── change_tracker.rs │ └── net.rs └── vftables.txt ├── extra ├── dll_injector │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── malloc_probe │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ └── lib.rs └── mem_reader │ ├── Cargo.lock │ ├── Cargo.toml │ ├── src │ └── main.rs │ └── vftables.txt ├── flake.lock ├── flake.nix ├── last_release_notes.md ├── nix ├── overlays │ ├── default.nix │ └── rust-package.nix ├── packages │ └── noita-proxy.nix └── shell.nix ├── noita-proxy ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Cross.toml ├── assets │ ├── Info.plist │ ├── discord-mark-white.png │ ├── font │ │ ├── MiSans-Light.ttf │ │ ├── NotoSans-Regular.ttf │ │ ├── NotoSansJP-Light.ttf │ │ ├── NotoSansKR-Light.ttf │ │ └── NotoSansSChinese-Light.ttf │ ├── icon.ico │ ├── icon.png │ ├── lang │ │ ├── de-DE │ │ │ └── main.ftl │ │ ├── en-US │ │ │ └── main.ftl │ │ ├── es-ES │ │ │ └── main.ftl │ │ ├── fr-FR │ │ │ └── main.ftl │ │ ├── ja-JP │ │ │ └── main.ftl │ │ ├── ko-KR │ │ │ └── main.ftl │ │ ├── pt-BR │ │ │ └── main.ftl │ │ ├── ru-RU │ │ │ └── main.ftl │ │ └── zh-CN │ │ │ └── main.ftl │ ├── longleg.png │ ├── mat_colors.txt │ ├── noita_ew_logo_sq.webp │ └── notplayer.png ├── build.rs ├── notplayer.png └── src │ ├── bookkeeping │ ├── mod.rs │ ├── mod_manager.rs │ ├── noita_launcher.rs │ ├── releases.rs │ ├── save_paths.rs │ ├── save_state.rs │ ├── self_restart.rs │ └── self_update.rs │ ├── lib.rs │ ├── lobby_code.rs │ ├── main.rs │ ├── net.rs │ ├── net │ ├── audio.rs │ ├── des.rs │ ├── messages.rs │ ├── omni.rs │ ├── proxy_opt.rs │ ├── steam_networking.rs │ ├── world.rs │ └── world │ │ ├── world_info.rs │ │ ├── world_model.rs │ │ └── world_model │ │ ├── chunk.rs │ │ └── encoding.rs │ ├── player_cosmetics.rs │ └── util │ ├── args.rs │ ├── lang.rs │ ├── mod.rs │ └── steam_helper.rs ├── noita_api ├── Cargo.lock ├── Cargo.toml ├── noita_api_macro │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ ├── components.json │ │ ├── lib.rs │ │ └── lua_api.json └── src │ ├── addr_grabber.rs │ ├── heap.rs │ ├── lib.rs │ ├── lua.rs │ ├── lua │ └── lua_bindings.rs │ ├── noita │ ├── init_data.rs │ ├── mod.rs │ ├── types.rs │ ├── types │ │ ├── component.rs │ │ ├── component_data.rs │ │ ├── entity.rs │ │ ├── misc.rs │ │ ├── objects.rs │ │ ├── platform.rs │ │ ├── vftables.rs │ │ └── world.rs │ └── world.rs │ └── serialize.rs ├── quant.ew ├── NoitaPatcher │ ├── load.lua │ ├── noitapatcher.dll │ ├── noitapatcher.pdb │ └── noitapatcher │ │ └── nsew │ │ ├── native_dll.lua │ │ ├── nsew_native.dll │ │ ├── rect.lua │ │ ├── world.lua │ │ └── world_ffi.lua ├── compatibility.xml ├── data │ ├── entities │ │ ├── animals │ │ │ ├── boss_alchemist │ │ │ │ └── create_wand.lua │ │ │ ├── boss_fish │ │ │ │ └── eye.lua │ │ │ ├── boss_ghost │ │ │ │ └── spawn_ghost.lua │ │ │ ├── boss_limbs │ │ │ │ ├── boss_limbs_spawn.lua │ │ │ │ └── boss_limbs_trigger.xml │ │ │ ├── boss_pit │ │ │ │ ├── boss_pit_logic.lua │ │ │ │ ├── boss_pit_spawner.lua │ │ │ │ ├── wand.lua │ │ │ │ └── wand_rotate.lua │ │ │ ├── boss_robot │ │ │ │ ├── spell_eater.lua │ │ │ │ └── state.lua │ │ │ ├── boss_sky │ │ │ │ └── boss_sky_damage.lua │ │ │ ├── boss_spirit │ │ │ │ ├── create_wand.lua │ │ │ │ ├── islandspirit.lua │ │ │ │ └── spawner.lua │ │ │ ├── boss_wizard │ │ │ │ └── orb_rotation.lua │ │ │ ├── maggot_tiny │ │ │ │ └── orb.xml │ │ │ └── nibbana.xml │ │ ├── items │ │ │ └── pickup │ │ │ │ ├── chest_leggy.xml │ │ │ │ └── potion_mimic.xml │ │ ├── misc │ │ │ ├── orb_07_pitcheck_a.xml │ │ │ ├── orb_07_pitcheck_b.xml │ │ │ ├── physics_ragdoll_ai.xml │ │ │ └── random_explosion.xml │ │ └── props │ │ │ └── physics │ │ │ └── minecart.xml │ ├── generated │ │ └── sprite_uv_maps │ │ │ ├── .gitignore │ │ │ └── mods.quant.ew.files.system.local_health.notplayer.notplayer.png │ └── scripts │ │ ├── animals │ │ ├── fungus_big_death.lua │ │ ├── fungus_death.lua │ │ ├── fungus_giga_pollen.lua │ │ ├── fungus_powder.lua │ │ ├── fungus_powder_bad.lua │ │ ├── homunculus_teleport.lua │ │ ├── monk_hand_shoot.lua │ │ ├── necromancer_super_chase.lua │ │ ├── necromancer_super_chase_begin.lua │ │ ├── rat_powder.lua │ │ ├── tiny_ghost_move.lua │ │ ├── tiny_ghost_spawn.lua │ │ └── wand_ghost.lua │ │ ├── buildings │ │ ├── dragonspot.lua │ │ ├── firebugnest.lua │ │ ├── flynest.lua │ │ ├── forge_item_check.lua │ │ ├── maggotspot.lua │ │ ├── orb_07_pitcheck_b.lua │ │ ├── racing_cart_check.lua │ │ ├── racing_cart_move.lua │ │ ├── spidernest.lua │ │ ├── statue_hand_modified.lua │ │ ├── statue_trap.lua │ │ ├── wizardcave_gate.lua │ │ ├── workshop_exit.lua │ │ └── workshop_exit_final.lua │ │ ├── essences │ │ ├── air.lua │ │ ├── fire.lua │ │ ├── laser.lua │ │ └── water.lua │ │ ├── items │ │ ├── chest_leggy.lua │ │ └── potion_mimic.lua │ │ ├── magic │ │ ├── dark_moon_altar_init.lua │ │ ├── eradicate.lua │ │ └── moon_altar_init.lua │ │ ├── perks │ │ ├── angry_ghost_shoot.lua │ │ ├── angry_levitation_death.lua │ │ ├── fungal_disease_effect.lua │ │ ├── homunculus_check_biome.lua │ │ ├── levitation_trail.lua │ │ ├── lukki_minion_movement.lua │ │ ├── mana_from_kills_death.lua │ │ ├── revenge_bullet.lua │ │ ├── revenge_explosion.lua │ │ ├── revenge_tentacle.lua │ │ └── teleportitis_dodge.lua │ │ ├── projectiles │ │ ├── fizzle.lua │ │ ├── homing_area.lua │ │ ├── projectile_transmutation.lua │ │ ├── random_explosion.lua │ │ ├── teleport_cast.lua │ │ └── transmutation.lua │ │ └── props │ │ ├── chain_to_ceiling.lua │ │ └── suspended_container_physics_objects.lua ├── files │ ├── api │ │ ├── ew_api.lua │ │ ├── ew_crosscalls.lua │ │ ├── extra_modules.lua │ │ └── global_perks.lua │ ├── core │ │ ├── constants.lua │ │ ├── ctx.lua │ │ ├── early_init.lua │ │ ├── inventory_helper.lua │ │ ├── net.lua │ │ ├── net_handling.lua │ │ ├── perk_fns.lua │ │ ├── player_fns.lua │ │ └── util.lua │ ├── lib │ │ ├── EZWand.lua │ │ ├── bitser.lua │ │ ├── genhex.py │ │ ├── hex.lua │ │ ├── nxml.lua │ │ └── pretty_print.lua │ ├── magic.xml │ ├── magic_numbers.xml │ ├── resource │ │ ├── append │ │ │ ├── action_fix.lua │ │ │ ├── gun.lua │ │ │ └── no_default_death_handling.lua │ │ ├── base64.lua │ │ ├── cbs │ │ │ ├── chest_sync.lua │ │ │ ├── count_times_wand_fired.lua │ │ │ ├── death_notify.lua │ │ │ ├── immortal.lua │ │ │ ├── item_death_notify.lua │ │ │ ├── item_notify.lua │ │ │ ├── throw_item.lua │ │ │ └── util_runner.lua │ │ ├── debug │ │ │ ├── box_128x128.png │ │ │ └── marker.png │ │ ├── entities │ │ │ └── chunk_loader.xml │ │ ├── font_pixel_runes.xml │ │ ├── health_slider_back.png │ │ ├── health_slider_front.png │ │ ├── interned_filenames.txt │ │ ├── kill_root.lua │ │ ├── shoot_projectile_fix.lua │ │ ├── sprites │ │ │ ├── cursor.png │ │ │ └── cursor_notplayer.png │ │ └── util_min.lua │ └── system │ │ ├── angry_ghost_memory │ │ └── angry_ghost_memory.lua │ │ ├── boss_damage │ │ └── boss_damage.lua │ │ ├── damage │ │ ├── append │ │ │ ├── game_helpers.lua │ │ │ ├── hearty_effect.xml │ │ │ ├── hearty_end.lua │ │ │ └── hearty_start.lua │ │ ├── cbs │ │ │ ├── adjust_damage.lua │ │ │ ├── host_adjust_received_damage.lua │ │ │ ├── send_damage_to_client.lua │ │ │ └── send_damage_to_host.lua │ │ └── damage.lua │ │ ├── debug.lua │ │ ├── dice │ │ └── dice.lua │ │ ├── effect_data_sync │ │ └── effect_data_sync.lua │ │ ├── end_fight │ │ ├── end_fight.lua │ │ └── gold_effect.xml │ │ ├── ending │ │ ├── ending.lua │ │ ├── ending_sequence.lua │ │ └── update_fix.lua │ │ ├── enemy_scaling │ │ └── enemy_scaling.lua │ │ ├── entity_sync_helper │ │ ├── death_notify.lua │ │ ├── entity_sync_helper.lua │ │ ├── immortal.lua │ │ ├── item_notify.lua │ │ └── scripts │ │ │ ├── kill_on_drop.lua │ │ │ └── killself.lua │ │ ├── essence_sync │ │ └── essence_sync.lua │ │ ├── ewext_init │ │ └── ewext_init.lua │ │ ├── explosion_cuts │ │ └── explosion_cuts.lua │ │ ├── extra_genomes │ │ └── extra_genomes.lua │ │ ├── flag_sync │ │ ├── append │ │ │ └── has_flag_hook.lua │ │ ├── flag_sync.lua │ │ └── readme.md │ │ ├── forge │ │ └── forge_item_convert.xml │ │ ├── fungal_shift │ │ ├── append │ │ │ └── fungal_shift.lua │ │ └── fungal_shift.lua │ │ ├── game_effect_sync │ │ └── game_effect_sync.lua │ │ ├── gate_boss │ │ ├── gate_boss.lua │ │ └── wizardcave_gate_monster_spawner.xml │ │ ├── gen_sync │ │ ├── append │ │ │ └── shop_spawn.lua │ │ ├── gen_sync.lua │ │ ├── tmp_shop_area.xml │ │ └── tmp_shop_script.lua │ │ ├── greed │ │ └── greed.lua │ │ ├── hamis │ │ ├── append.lua │ │ └── hamis.lua │ │ ├── heart_pickups │ │ ├── append │ │ │ ├── heart.lua │ │ │ ├── heart_better.lua │ │ │ ├── heart_evil.lua │ │ │ ├── heart_fullhp.lua │ │ │ └── heart_fullhp_temple.lua │ │ └── heart_pickups.lua │ │ ├── homunculus │ │ └── homunculus.lua │ │ ├── karl │ │ └── karl.lua │ │ ├── kivi_patch │ │ └── kivi_patch.lua │ │ ├── kolmi │ │ ├── append │ │ │ ├── boss_arena.lua │ │ │ ├── boss_update.lua │ │ │ └── spawn_kolmi.lua │ │ └── kolmi.lua │ │ ├── local_health │ │ ├── entities │ │ │ ├── magical_symbol_player.xml │ │ │ └── soul_orb.xml │ │ ├── grab_damage_message.lua │ │ ├── immortal.lua │ │ ├── local_health.lua │ │ ├── mimic_potion.lua │ │ ├── mimic_potion.xml │ │ ├── notplayer │ │ │ ├── cessation.lua │ │ │ ├── cessation.xml │ │ │ ├── iron_stomach.xml │ │ │ ├── knee.png │ │ │ ├── limb_a.png │ │ │ ├── limb_b.png │ │ │ ├── notplayer.png │ │ │ ├── notplayer.xml │ │ │ ├── notplayer_arm.png │ │ │ ├── notplayer_arm.xml │ │ │ ├── notplayer_cape.xml │ │ │ ├── notplayer_dc.png │ │ │ ├── notplayer_sprite.xml │ │ │ ├── notplayer_sprite_dc.xml │ │ │ ├── poly_effect.xml │ │ │ ├── safe_effect.xml │ │ │ └── safe_effect2.xml │ │ ├── poly.xml │ │ └── revive.png │ │ ├── map │ │ ├── append.lua │ │ ├── icon.png │ │ ├── icon_notplayer.png │ │ └── map.lua │ │ ├── meat │ │ └── meat.lua │ │ ├── nickname.lua │ │ ├── notplayer_ai │ │ ├── damage_tracker.lua │ │ ├── notplayer_ai.lua │ │ └── wandfinder.lua │ │ ├── orb_sync │ │ └── orb_sync.lua │ │ ├── patch_dragon_boss │ │ ├── dragonspot_script.lua │ │ └── patch_dragon_boss.lua │ │ ├── patch_meat_biome │ │ ├── append │ │ │ └── biome_check.lua │ │ └── patch_meat_biome.lua │ │ ├── perk_patches │ │ ├── append │ │ │ ├── cosmetics_append.lua │ │ │ ├── perks_common.lua │ │ │ ├── perks_local.lua │ │ │ └── perks_shared.lua │ │ └── perk_patches.lua │ │ ├── player │ │ ├── filenames.txt │ │ ├── head.png │ │ ├── knee.png │ │ ├── left_arm.png │ │ ├── left_hand.png │ │ ├── left_thigh.png │ │ ├── limb_a.png │ │ ├── limb_b.png │ │ ├── player_cosmetics.lua │ │ ├── player_uv.png │ │ ├── right_arm.png │ │ ├── right_hand.png │ │ ├── right_thigh.png │ │ ├── torso.png │ │ ├── twwe.xml │ │ ├── unmodified.png │ │ ├── unmodified.xml │ │ ├── unmodified_arm.png │ │ ├── unmodified_arm.xml │ │ ├── unmodified_base.xml │ │ ├── unmodified_cape.xml │ │ ├── unmodified_lukki.png │ │ └── unmodified_lukki.xml │ │ ├── player_arrows │ │ ├── arrow.png │ │ ├── arrow_host.png │ │ ├── arrow_host_notplayer.png │ │ ├── arrow_notplayer.png │ │ └── player_arrows.lua │ │ ├── player_ping │ │ ├── arrow.png │ │ └── player_ping.lua │ │ ├── player_sync.lua │ │ ├── player_tether │ │ ├── player_tether.lua │ │ └── zone_entity.xml │ │ ├── polymorph │ │ └── polymorph.lua │ │ ├── potion_mimic │ │ ├── pickup.lua │ │ ├── poly.xml │ │ └── potion_mimic.lua │ │ ├── proxy_info.lua │ │ ├── pvp │ │ ├── ase.xml │ │ ├── pvp.lua │ │ ├── safe_effect.xml │ │ ├── tp.png │ │ └── tp.xml │ │ ├── ragdoll_fix │ │ └── ragdoll_fix.lua │ │ ├── randomize_perks │ │ ├── override_perk_list.lua │ │ └── randomize_perks.lua │ │ ├── remove_wand_sound │ │ ├── remove_sound.lua │ │ └── remove_wand_sound.lua │ │ ├── rnd_wands │ │ └── rnd_wands.lua │ │ ├── sampo │ │ └── sampo.lua │ │ ├── shiny_orb │ │ ├── append.lua │ │ ├── append_greed.lua │ │ └── shiny_orb.lua │ │ ├── spawn_hooks │ │ ├── append │ │ │ ├── director_helpers.lua │ │ │ └── item_spawnlist.lua │ │ └── spawn_hooks.lua │ │ ├── spectate │ │ ├── no_tinker.xml │ │ └── spectate.lua │ │ ├── spectator_helps │ │ ├── shield_base.xml │ │ └── spectator_helps.lua │ │ ├── spell_patches │ │ ├── banned_spells.lua │ │ ├── essence_to_power.lua │ │ ├── spell_patches.lua │ │ └── spells_to_power.lua │ │ ├── spell_refresh │ │ ├── append.lua │ │ └── spell_refresh.lua │ │ ├── stevari │ │ ├── append.lua │ │ ├── spawn_necromancer_shop.xml │ │ └── stevari.lua │ │ ├── streaming_sync │ │ ├── event_hook.lua │ │ └── streaming_sync.lua │ │ ├── tapion │ │ ├── spawn_portal.xml │ │ └── tapion.lua │ │ ├── telekenisis │ │ └── telekenisis.lua │ │ ├── text │ │ └── text.lua │ │ ├── uniq_flags │ │ └── uniq_flags.lua │ │ ├── wand_charm │ │ ├── append.lua │ │ ├── charm.lua │ │ └── wand_charm.lua │ │ ├── wang_hooks │ │ ├── files_with_spawnhooks.txt │ │ ├── synced_pixel_scenes.lua │ │ ├── wang_hooks.lua │ │ └── wang_scripts.csv │ │ ├── weather_sync.lua │ │ ├── world_sync_cuts │ │ ├── patch_cut_through_world.lua │ │ └── world_sync_cuts.lua │ │ └── worms │ │ └── worms.lua ├── init.lua ├── mod.xml ├── settings.lua └── translations.csv ├── redist ├── libsteam_api.dylib ├── libsteam_api.so ├── release_text.md └── steam_api64.dll ├── scripts ├── .gitignore ├── check_pre_ci.py ├── ci_make_archives.py ├── ci_version.py ├── extract_steam_redist.py ├── gdb_ext.py ├── gdb_parse_ghidra.py ├── make_release_assets.py ├── mat_colors.py ├── parse_components.py ├── parse_lua_api.py ├── perf.sh ├── prepare_release.py └── start-lutris.sh └── shared ├── Cargo.lock ├── Cargo.toml └── src ├── basic_types.rs ├── des.rs ├── lib.rs ├── message_socket.rs └── world_sync.rs /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ComponentVftable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ComponentVftable.py -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/README.md -------------------------------------------------------------------------------- /api_examples/ew_api_example/compatibility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/ew_api_example/compatibility.xml -------------------------------------------------------------------------------- /api_examples/ew_api_example/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/ew_api_example/init.lua -------------------------------------------------------------------------------- /api_examples/ew_api_example/mod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/ew_api_example/mod.xml -------------------------------------------------------------------------------- /api_examples/ew_api_example/module.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/ew_api_example/module.lua -------------------------------------------------------------------------------- /api_examples/noita_api_example/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/noita_api_example/Cargo.lock -------------------------------------------------------------------------------- /api_examples/noita_api_example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/noita_api_example/Cargo.toml -------------------------------------------------------------------------------- /api_examples/noita_api_example/material_converter/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/noita_api_example/material_converter/init.lua -------------------------------------------------------------------------------- /api_examples/noita_api_example/material_converter/material_converter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/noita_api_example/material_converter/material_converter.dll -------------------------------------------------------------------------------- /api_examples/noita_api_example/material_converter/mod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/noita_api_example/material_converter/mod.xml -------------------------------------------------------------------------------- /api_examples/noita_api_example/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/api_examples/noita_api_example/src/lib.rs -------------------------------------------------------------------------------- /blob_guy/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/blob_guy/Cargo.lock -------------------------------------------------------------------------------- /blob_guy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/blob_guy/Cargo.toml -------------------------------------------------------------------------------- /blob_guy/blob_guy/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/blob_guy/blob_guy/init.lua -------------------------------------------------------------------------------- /blob_guy/blob_guy/materials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/blob_guy/blob_guy/materials.xml -------------------------------------------------------------------------------- /blob_guy/blob_guy/mod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/blob_guy/blob_guy/mod.xml -------------------------------------------------------------------------------- /blob_guy/examples/blob/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/blob_guy/examples/blob/main.rs -------------------------------------------------------------------------------- /blob_guy/src/blob_guy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/blob_guy/src/blob_guy.rs -------------------------------------------------------------------------------- /blob_guy/src/chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/blob_guy/src/chunk.rs -------------------------------------------------------------------------------- /blob_guy/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/blob_guy/src/lib.rs -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/capabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/docs/capabilities.md -------------------------------------------------------------------------------- /docs/distributed_world_sync.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/docs/distributed_world_sync.drawio -------------------------------------------------------------------------------- /docs/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/docs/hooks.md -------------------------------------------------------------------------------- /docs/perks_that_dont_work_properly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/docs/perks_that_dont_work_properly.md -------------------------------------------------------------------------------- /docs/testing_wands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/docs/testing_wands.md -------------------------------------------------------------------------------- /ewext/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "i686-pc-windows-gnu" 3 | -------------------------------------------------------------------------------- /ewext/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/Cargo.lock -------------------------------------------------------------------------------- /ewext/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/Cargo.toml -------------------------------------------------------------------------------- /ewext/src/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/src/debug.rs -------------------------------------------------------------------------------- /ewext/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/src/lib.rs -------------------------------------------------------------------------------- /ewext/src/modules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/src/modules.rs -------------------------------------------------------------------------------- /ewext/src/modules/entity_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/src/modules/entity_sync.rs -------------------------------------------------------------------------------- /ewext/src/modules/entity_sync/diff_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/src/modules/entity_sync/diff_model.rs -------------------------------------------------------------------------------- /ewext/src/modules/entity_sync/interest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/src/modules/entity_sync/interest.rs -------------------------------------------------------------------------------- /ewext/src/modules/world_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/src/modules/world_sync.rs -------------------------------------------------------------------------------- /ewext/src/modules/world_sync/change_tracker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/src/modules/world_sync/change_tracker.rs -------------------------------------------------------------------------------- /ewext/src/net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/src/net.rs -------------------------------------------------------------------------------- /ewext/vftables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/ewext/vftables.txt -------------------------------------------------------------------------------- /extra/dll_injector/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/dll_injector/Cargo.lock -------------------------------------------------------------------------------- /extra/dll_injector/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/dll_injector/Cargo.toml -------------------------------------------------------------------------------- /extra/dll_injector/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/dll_injector/src/main.rs -------------------------------------------------------------------------------- /extra/malloc_probe/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "i686-pc-windows-gnu" 3 | -------------------------------------------------------------------------------- /extra/malloc_probe/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/malloc_probe/Cargo.lock -------------------------------------------------------------------------------- /extra/malloc_probe/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/malloc_probe/Cargo.toml -------------------------------------------------------------------------------- /extra/malloc_probe/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/malloc_probe/build.rs -------------------------------------------------------------------------------- /extra/malloc_probe/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/malloc_probe/src/lib.rs -------------------------------------------------------------------------------- /extra/mem_reader/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/mem_reader/Cargo.lock -------------------------------------------------------------------------------- /extra/mem_reader/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/mem_reader/Cargo.toml -------------------------------------------------------------------------------- /extra/mem_reader/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/mem_reader/src/main.rs -------------------------------------------------------------------------------- /extra/mem_reader/vftables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/extra/mem_reader/vftables.txt -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/flake.nix -------------------------------------------------------------------------------- /last_release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/last_release_notes.md -------------------------------------------------------------------------------- /nix/overlays/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/nix/overlays/default.nix -------------------------------------------------------------------------------- /nix/overlays/rust-package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/nix/overlays/rust-package.nix -------------------------------------------------------------------------------- /nix/packages/noita-proxy.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/nix/packages/noita-proxy.nix -------------------------------------------------------------------------------- /nix/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/nix/shell.nix -------------------------------------------------------------------------------- /noita-proxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/.gitignore -------------------------------------------------------------------------------- /noita-proxy/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/Cargo.lock -------------------------------------------------------------------------------- /noita-proxy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/Cargo.toml -------------------------------------------------------------------------------- /noita-proxy/Cross.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/Cross.toml -------------------------------------------------------------------------------- /noita-proxy/assets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/Info.plist -------------------------------------------------------------------------------- /noita-proxy/assets/discord-mark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/discord-mark-white.png -------------------------------------------------------------------------------- /noita-proxy/assets/font/MiSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/font/MiSans-Light.ttf -------------------------------------------------------------------------------- /noita-proxy/assets/font/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/font/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /noita-proxy/assets/font/NotoSansJP-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/font/NotoSansJP-Light.ttf -------------------------------------------------------------------------------- /noita-proxy/assets/font/NotoSansKR-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/font/NotoSansKR-Light.ttf -------------------------------------------------------------------------------- /noita-proxy/assets/font/NotoSansSChinese-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/font/NotoSansSChinese-Light.ttf -------------------------------------------------------------------------------- /noita-proxy/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/icon.ico -------------------------------------------------------------------------------- /noita-proxy/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/icon.png -------------------------------------------------------------------------------- /noita-proxy/assets/lang/de-DE/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/lang/de-DE/main.ftl -------------------------------------------------------------------------------- /noita-proxy/assets/lang/en-US/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/lang/en-US/main.ftl -------------------------------------------------------------------------------- /noita-proxy/assets/lang/es-ES/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/lang/es-ES/main.ftl -------------------------------------------------------------------------------- /noita-proxy/assets/lang/fr-FR/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/lang/fr-FR/main.ftl -------------------------------------------------------------------------------- /noita-proxy/assets/lang/ja-JP/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/lang/ja-JP/main.ftl -------------------------------------------------------------------------------- /noita-proxy/assets/lang/ko-KR/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/lang/ko-KR/main.ftl -------------------------------------------------------------------------------- /noita-proxy/assets/lang/pt-BR/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/lang/pt-BR/main.ftl -------------------------------------------------------------------------------- /noita-proxy/assets/lang/ru-RU/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/lang/ru-RU/main.ftl -------------------------------------------------------------------------------- /noita-proxy/assets/lang/zh-CN/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/lang/zh-CN/main.ftl -------------------------------------------------------------------------------- /noita-proxy/assets/longleg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/longleg.png -------------------------------------------------------------------------------- /noita-proxy/assets/mat_colors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /noita-proxy/assets/noita_ew_logo_sq.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/noita_ew_logo_sq.webp -------------------------------------------------------------------------------- /noita-proxy/assets/notplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/assets/notplayer.png -------------------------------------------------------------------------------- /noita-proxy/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/build.rs -------------------------------------------------------------------------------- /noita-proxy/notplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/notplayer.png -------------------------------------------------------------------------------- /noita-proxy/src/bookkeeping/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/bookkeeping/mod.rs -------------------------------------------------------------------------------- /noita-proxy/src/bookkeeping/mod_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/bookkeeping/mod_manager.rs -------------------------------------------------------------------------------- /noita-proxy/src/bookkeeping/noita_launcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/bookkeeping/noita_launcher.rs -------------------------------------------------------------------------------- /noita-proxy/src/bookkeeping/releases.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/bookkeeping/releases.rs -------------------------------------------------------------------------------- /noita-proxy/src/bookkeeping/save_paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/bookkeeping/save_paths.rs -------------------------------------------------------------------------------- /noita-proxy/src/bookkeeping/save_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/bookkeeping/save_state.rs -------------------------------------------------------------------------------- /noita-proxy/src/bookkeeping/self_restart.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/bookkeeping/self_restart.rs -------------------------------------------------------------------------------- /noita-proxy/src/bookkeeping/self_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/bookkeeping/self_update.rs -------------------------------------------------------------------------------- /noita-proxy/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/lib.rs -------------------------------------------------------------------------------- /noita-proxy/src/lobby_code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/lobby_code.rs -------------------------------------------------------------------------------- /noita-proxy/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/main.rs -------------------------------------------------------------------------------- /noita-proxy/src/net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/audio.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/des.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/des.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/messages.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/omni.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/omni.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/proxy_opt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/proxy_opt.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/steam_networking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/steam_networking.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/world.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/world/world_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/world/world_info.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/world/world_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/world/world_model.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/world/world_model/chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/world/world_model/chunk.rs -------------------------------------------------------------------------------- /noita-proxy/src/net/world/world_model/encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/net/world/world_model/encoding.rs -------------------------------------------------------------------------------- /noita-proxy/src/player_cosmetics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/player_cosmetics.rs -------------------------------------------------------------------------------- /noita-proxy/src/util/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/util/args.rs -------------------------------------------------------------------------------- /noita-proxy/src/util/lang.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/util/lang.rs -------------------------------------------------------------------------------- /noita-proxy/src/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/util/mod.rs -------------------------------------------------------------------------------- /noita-proxy/src/util/steam_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita-proxy/src/util/steam_helper.rs -------------------------------------------------------------------------------- /noita_api/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/Cargo.lock -------------------------------------------------------------------------------- /noita_api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/Cargo.toml -------------------------------------------------------------------------------- /noita_api/noita_api_macro/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/noita_api_macro/Cargo.lock -------------------------------------------------------------------------------- /noita_api/noita_api_macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/noita_api_macro/Cargo.toml -------------------------------------------------------------------------------- /noita_api/noita_api_macro/src/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/noita_api_macro/src/components.json -------------------------------------------------------------------------------- /noita_api/noita_api_macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/noita_api_macro/src/lib.rs -------------------------------------------------------------------------------- /noita_api/noita_api_macro/src/lua_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/noita_api_macro/src/lua_api.json -------------------------------------------------------------------------------- /noita_api/src/addr_grabber.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/addr_grabber.rs -------------------------------------------------------------------------------- /noita_api/src/heap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/heap.rs -------------------------------------------------------------------------------- /noita_api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/lib.rs -------------------------------------------------------------------------------- /noita_api/src/lua.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/lua.rs -------------------------------------------------------------------------------- /noita_api/src/lua/lua_bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/lua/lua_bindings.rs -------------------------------------------------------------------------------- /noita_api/src/noita/init_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/init_data.rs -------------------------------------------------------------------------------- /noita_api/src/noita/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/mod.rs -------------------------------------------------------------------------------- /noita_api/src/noita/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/types.rs -------------------------------------------------------------------------------- /noita_api/src/noita/types/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/types/component.rs -------------------------------------------------------------------------------- /noita_api/src/noita/types/component_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/types/component_data.rs -------------------------------------------------------------------------------- /noita_api/src/noita/types/entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/types/entity.rs -------------------------------------------------------------------------------- /noita_api/src/noita/types/misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/types/misc.rs -------------------------------------------------------------------------------- /noita_api/src/noita/types/objects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/types/objects.rs -------------------------------------------------------------------------------- /noita_api/src/noita/types/platform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/types/platform.rs -------------------------------------------------------------------------------- /noita_api/src/noita/types/vftables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/types/vftables.rs -------------------------------------------------------------------------------- /noita_api/src/noita/types/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/types/world.rs -------------------------------------------------------------------------------- /noita_api/src/noita/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/noita/world.rs -------------------------------------------------------------------------------- /noita_api/src/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/noita_api/src/serialize.rs -------------------------------------------------------------------------------- /quant.ew/NoitaPatcher/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/NoitaPatcher/load.lua -------------------------------------------------------------------------------- /quant.ew/NoitaPatcher/noitapatcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/NoitaPatcher/noitapatcher.dll -------------------------------------------------------------------------------- /quant.ew/NoitaPatcher/noitapatcher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/NoitaPatcher/noitapatcher.pdb -------------------------------------------------------------------------------- /quant.ew/NoitaPatcher/noitapatcher/nsew/native_dll.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/NoitaPatcher/noitapatcher/nsew/native_dll.lua -------------------------------------------------------------------------------- /quant.ew/NoitaPatcher/noitapatcher/nsew/nsew_native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/NoitaPatcher/noitapatcher/nsew/nsew_native.dll -------------------------------------------------------------------------------- /quant.ew/NoitaPatcher/noitapatcher/nsew/rect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/NoitaPatcher/noitapatcher/nsew/rect.lua -------------------------------------------------------------------------------- /quant.ew/NoitaPatcher/noitapatcher/nsew/world.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/NoitaPatcher/noitapatcher/nsew/world.lua -------------------------------------------------------------------------------- /quant.ew/NoitaPatcher/noitapatcher/nsew/world_ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/NoitaPatcher/noitapatcher/nsew/world_ffi.lua -------------------------------------------------------------------------------- /quant.ew/compatibility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/compatibility.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_alchemist/create_wand.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_alchemist/create_wand.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_fish/eye.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_fish/eye.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_ghost/spawn_ghost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_ghost/spawn_ghost.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_limbs/boss_limbs_spawn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_limbs/boss_limbs_spawn.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_limbs/boss_limbs_trigger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_limbs/boss_limbs_trigger.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_pit/boss_pit_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_pit/boss_pit_logic.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_pit/boss_pit_spawner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_pit/boss_pit_spawner.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_pit/wand.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_pit/wand.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_pit/wand_rotate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_pit/wand_rotate.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_robot/spell_eater.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_robot/spell_eater.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_robot/state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_robot/state.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_sky/boss_sky_damage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_sky/boss_sky_damage.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_spirit/create_wand.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_spirit/create_wand.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_spirit/islandspirit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_spirit/islandspirit.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_spirit/spawner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_spirit/spawner.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/boss_wizard/orb_rotation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/boss_wizard/orb_rotation.lua -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/maggot_tiny/orb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/maggot_tiny/orb.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/animals/nibbana.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/animals/nibbana.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/items/pickup/chest_leggy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/items/pickup/chest_leggy.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/items/pickup/potion_mimic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/items/pickup/potion_mimic.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/misc/orb_07_pitcheck_a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/misc/orb_07_pitcheck_a.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/misc/orb_07_pitcheck_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/misc/orb_07_pitcheck_b.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/misc/physics_ragdoll_ai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/misc/physics_ragdoll_ai.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/misc/random_explosion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/misc/random_explosion.xml -------------------------------------------------------------------------------- /quant.ew/data/entities/props/physics/minecart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/entities/props/physics/minecart.xml -------------------------------------------------------------------------------- /quant.ew/data/generated/sprite_uv_maps/.gitignore: -------------------------------------------------------------------------------- 1 | mods.quant.ew.files.system.player.tmp.*.png -------------------------------------------------------------------------------- /quant.ew/data/generated/sprite_uv_maps/mods.quant.ew.files.system.local_health.notplayer.notplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/generated/sprite_uv_maps/mods.quant.ew.files.system.local_health.notplayer.notplayer.png -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/fungus_big_death.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/fungus_big_death.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/fungus_death.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/fungus_death.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/fungus_giga_pollen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/fungus_giga_pollen.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/fungus_powder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/fungus_powder.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/fungus_powder_bad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/fungus_powder_bad.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/homunculus_teleport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/homunculus_teleport.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/monk_hand_shoot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/monk_hand_shoot.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/necromancer_super_chase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/necromancer_super_chase.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/necromancer_super_chase_begin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/necromancer_super_chase_begin.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/rat_powder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/rat_powder.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/tiny_ghost_move.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/tiny_ghost_move.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/tiny_ghost_spawn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/tiny_ghost_spawn.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/animals/wand_ghost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/animals/wand_ghost.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/dragonspot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/dragonspot.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/firebugnest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/firebugnest.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/flynest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/flynest.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/forge_item_check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/forge_item_check.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/maggotspot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/maggotspot.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/orb_07_pitcheck_b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/orb_07_pitcheck_b.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/racing_cart_check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/racing_cart_check.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/racing_cart_move.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/racing_cart_move.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/spidernest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/spidernest.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/statue_hand_modified.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/statue_hand_modified.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/statue_trap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/statue_trap.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/wizardcave_gate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/wizardcave_gate.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/workshop_exit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/workshop_exit.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/buildings/workshop_exit_final.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/buildings/workshop_exit_final.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/essences/air.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/essences/air.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/essences/fire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/essences/fire.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/essences/laser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/essences/laser.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/essences/water.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/essences/water.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/items/chest_leggy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/items/chest_leggy.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/items/potion_mimic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/items/potion_mimic.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/magic/dark_moon_altar_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/magic/dark_moon_altar_init.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/magic/eradicate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/magic/eradicate.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/magic/moon_altar_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/magic/moon_altar_init.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/angry_ghost_shoot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/angry_ghost_shoot.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/angry_levitation_death.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/angry_levitation_death.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/fungal_disease_effect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/fungal_disease_effect.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/homunculus_check_biome.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/homunculus_check_biome.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/levitation_trail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/levitation_trail.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/lukki_minion_movement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/lukki_minion_movement.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/mana_from_kills_death.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/mana_from_kills_death.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/revenge_bullet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/revenge_bullet.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/revenge_explosion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/revenge_explosion.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/revenge_tentacle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/revenge_tentacle.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/perks/teleportitis_dodge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/perks/teleportitis_dodge.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/projectiles/fizzle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/projectiles/fizzle.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/projectiles/homing_area.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/projectiles/homing_area.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/projectiles/projectile_transmutation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/projectiles/projectile_transmutation.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/projectiles/random_explosion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/projectiles/random_explosion.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/projectiles/teleport_cast.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/projectiles/teleport_cast.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/projectiles/transmutation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/projectiles/transmutation.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/props/chain_to_ceiling.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/props/chain_to_ceiling.lua -------------------------------------------------------------------------------- /quant.ew/data/scripts/props/suspended_container_physics_objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/data/scripts/props/suspended_container_physics_objects.lua -------------------------------------------------------------------------------- /quant.ew/files/api/ew_api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/api/ew_api.lua -------------------------------------------------------------------------------- /quant.ew/files/api/ew_crosscalls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/api/ew_crosscalls.lua -------------------------------------------------------------------------------- /quant.ew/files/api/extra_modules.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/api/extra_modules.lua -------------------------------------------------------------------------------- /quant.ew/files/api/global_perks.lua: -------------------------------------------------------------------------------- 1 | --example 2 | --return {"PEACE_WITH_GODS"} 3 | -------------------------------------------------------------------------------- /quant.ew/files/core/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/core/constants.lua -------------------------------------------------------------------------------- /quant.ew/files/core/ctx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/core/ctx.lua -------------------------------------------------------------------------------- /quant.ew/files/core/early_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/core/early_init.lua -------------------------------------------------------------------------------- /quant.ew/files/core/inventory_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/core/inventory_helper.lua -------------------------------------------------------------------------------- /quant.ew/files/core/net.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/core/net.lua -------------------------------------------------------------------------------- /quant.ew/files/core/net_handling.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/core/net_handling.lua -------------------------------------------------------------------------------- /quant.ew/files/core/perk_fns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/core/perk_fns.lua -------------------------------------------------------------------------------- /quant.ew/files/core/player_fns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/core/player_fns.lua -------------------------------------------------------------------------------- /quant.ew/files/core/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/core/util.lua -------------------------------------------------------------------------------- /quant.ew/files/lib/EZWand.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/lib/EZWand.lua -------------------------------------------------------------------------------- /quant.ew/files/lib/bitser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/lib/bitser.lua -------------------------------------------------------------------------------- /quant.ew/files/lib/genhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/lib/genhex.py -------------------------------------------------------------------------------- /quant.ew/files/lib/hex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/lib/hex.lua -------------------------------------------------------------------------------- /quant.ew/files/lib/nxml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/lib/nxml.lua -------------------------------------------------------------------------------- /quant.ew/files/lib/pretty_print.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/lib/pretty_print.lua -------------------------------------------------------------------------------- /quant.ew/files/magic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/magic.xml -------------------------------------------------------------------------------- /quant.ew/files/magic_numbers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/magic_numbers.xml -------------------------------------------------------------------------------- /quant.ew/files/resource/append/action_fix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/append/action_fix.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/append/gun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/append/gun.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/append/no_default_death_handling.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/append/no_default_death_handling.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/base64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/base64.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/cbs/chest_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/cbs/chest_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/cbs/count_times_wand_fired.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/cbs/count_times_wand_fired.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/cbs/death_notify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/cbs/death_notify.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/cbs/immortal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/cbs/immortal.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/cbs/item_death_notify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/cbs/item_death_notify.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/cbs/item_notify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/cbs/item_notify.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/cbs/throw_item.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/cbs/throw_item.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/cbs/util_runner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/cbs/util_runner.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/debug/box_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/debug/box_128x128.png -------------------------------------------------------------------------------- /quant.ew/files/resource/debug/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/debug/marker.png -------------------------------------------------------------------------------- /quant.ew/files/resource/entities/chunk_loader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/entities/chunk_loader.xml -------------------------------------------------------------------------------- /quant.ew/files/resource/font_pixel_runes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/font_pixel_runes.xml -------------------------------------------------------------------------------- /quant.ew/files/resource/health_slider_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/health_slider_back.png -------------------------------------------------------------------------------- /quant.ew/files/resource/health_slider_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/health_slider_front.png -------------------------------------------------------------------------------- /quant.ew/files/resource/interned_filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/interned_filenames.txt -------------------------------------------------------------------------------- /quant.ew/files/resource/kill_root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/kill_root.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/shoot_projectile_fix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/shoot_projectile_fix.lua -------------------------------------------------------------------------------- /quant.ew/files/resource/sprites/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/sprites/cursor.png -------------------------------------------------------------------------------- /quant.ew/files/resource/sprites/cursor_notplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/sprites/cursor_notplayer.png -------------------------------------------------------------------------------- /quant.ew/files/resource/util_min.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/resource/util_min.lua -------------------------------------------------------------------------------- /quant.ew/files/system/angry_ghost_memory/angry_ghost_memory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/angry_ghost_memory/angry_ghost_memory.lua -------------------------------------------------------------------------------- /quant.ew/files/system/boss_damage/boss_damage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/boss_damage/boss_damage.lua -------------------------------------------------------------------------------- /quant.ew/files/system/damage/append/game_helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/damage/append/game_helpers.lua -------------------------------------------------------------------------------- /quant.ew/files/system/damage/append/hearty_effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/damage/append/hearty_effect.xml -------------------------------------------------------------------------------- /quant.ew/files/system/damage/append/hearty_end.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/damage/append/hearty_end.lua -------------------------------------------------------------------------------- /quant.ew/files/system/damage/append/hearty_start.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/damage/append/hearty_start.lua -------------------------------------------------------------------------------- /quant.ew/files/system/damage/cbs/adjust_damage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/damage/cbs/adjust_damage.lua -------------------------------------------------------------------------------- /quant.ew/files/system/damage/cbs/host_adjust_received_damage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/damage/cbs/host_adjust_received_damage.lua -------------------------------------------------------------------------------- /quant.ew/files/system/damage/cbs/send_damage_to_client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/damage/cbs/send_damage_to_client.lua -------------------------------------------------------------------------------- /quant.ew/files/system/damage/cbs/send_damage_to_host.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/damage/cbs/send_damage_to_host.lua -------------------------------------------------------------------------------- /quant.ew/files/system/damage/damage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/damage/damage.lua -------------------------------------------------------------------------------- /quant.ew/files/system/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/debug.lua -------------------------------------------------------------------------------- /quant.ew/files/system/dice/dice.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/dice/dice.lua -------------------------------------------------------------------------------- /quant.ew/files/system/effect_data_sync/effect_data_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/effect_data_sync/effect_data_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/system/end_fight/end_fight.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/end_fight/end_fight.lua -------------------------------------------------------------------------------- /quant.ew/files/system/end_fight/gold_effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/end_fight/gold_effect.xml -------------------------------------------------------------------------------- /quant.ew/files/system/ending/ending.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/ending/ending.lua -------------------------------------------------------------------------------- /quant.ew/files/system/ending/ending_sequence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/ending/ending_sequence.lua -------------------------------------------------------------------------------- /quant.ew/files/system/ending/update_fix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/ending/update_fix.lua -------------------------------------------------------------------------------- /quant.ew/files/system/enemy_scaling/enemy_scaling.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/enemy_scaling/enemy_scaling.lua -------------------------------------------------------------------------------- /quant.ew/files/system/entity_sync_helper/death_notify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/entity_sync_helper/death_notify.lua -------------------------------------------------------------------------------- /quant.ew/files/system/entity_sync_helper/entity_sync_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/entity_sync_helper/entity_sync_helper.lua -------------------------------------------------------------------------------- /quant.ew/files/system/entity_sync_helper/immortal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/entity_sync_helper/immortal.lua -------------------------------------------------------------------------------- /quant.ew/files/system/entity_sync_helper/item_notify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/entity_sync_helper/item_notify.lua -------------------------------------------------------------------------------- /quant.ew/files/system/entity_sync_helper/scripts/kill_on_drop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/entity_sync_helper/scripts/kill_on_drop.lua -------------------------------------------------------------------------------- /quant.ew/files/system/entity_sync_helper/scripts/killself.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/entity_sync_helper/scripts/killself.lua -------------------------------------------------------------------------------- /quant.ew/files/system/essence_sync/essence_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/essence_sync/essence_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/system/ewext_init/ewext_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/ewext_init/ewext_init.lua -------------------------------------------------------------------------------- /quant.ew/files/system/explosion_cuts/explosion_cuts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/explosion_cuts/explosion_cuts.lua -------------------------------------------------------------------------------- /quant.ew/files/system/extra_genomes/extra_genomes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/extra_genomes/extra_genomes.lua -------------------------------------------------------------------------------- /quant.ew/files/system/flag_sync/append/has_flag_hook.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/flag_sync/append/has_flag_hook.lua -------------------------------------------------------------------------------- /quant.ew/files/system/flag_sync/flag_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/flag_sync/flag_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/system/flag_sync/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/flag_sync/readme.md -------------------------------------------------------------------------------- /quant.ew/files/system/forge/forge_item_convert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/forge/forge_item_convert.xml -------------------------------------------------------------------------------- /quant.ew/files/system/fungal_shift/append/fungal_shift.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/fungal_shift/append/fungal_shift.lua -------------------------------------------------------------------------------- /quant.ew/files/system/fungal_shift/fungal_shift.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/fungal_shift/fungal_shift.lua -------------------------------------------------------------------------------- /quant.ew/files/system/game_effect_sync/game_effect_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/game_effect_sync/game_effect_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/system/gate_boss/gate_boss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/gate_boss/gate_boss.lua -------------------------------------------------------------------------------- /quant.ew/files/system/gate_boss/wizardcave_gate_monster_spawner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/gate_boss/wizardcave_gate_monster_spawner.xml -------------------------------------------------------------------------------- /quant.ew/files/system/gen_sync/append/shop_spawn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/gen_sync/append/shop_spawn.lua -------------------------------------------------------------------------------- /quant.ew/files/system/gen_sync/gen_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/gen_sync/gen_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/system/gen_sync/tmp_shop_area.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/gen_sync/tmp_shop_area.xml -------------------------------------------------------------------------------- /quant.ew/files/system/gen_sync/tmp_shop_script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/gen_sync/tmp_shop_script.lua -------------------------------------------------------------------------------- /quant.ew/files/system/greed/greed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/greed/greed.lua -------------------------------------------------------------------------------- /quant.ew/files/system/hamis/append.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/hamis/append.lua -------------------------------------------------------------------------------- /quant.ew/files/system/hamis/hamis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/hamis/hamis.lua -------------------------------------------------------------------------------- /quant.ew/files/system/heart_pickups/append/heart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/heart_pickups/append/heart.lua -------------------------------------------------------------------------------- /quant.ew/files/system/heart_pickups/append/heart_better.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/heart_pickups/append/heart_better.lua -------------------------------------------------------------------------------- /quant.ew/files/system/heart_pickups/append/heart_evil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/heart_pickups/append/heart_evil.lua -------------------------------------------------------------------------------- /quant.ew/files/system/heart_pickups/append/heart_fullhp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/heart_pickups/append/heart_fullhp.lua -------------------------------------------------------------------------------- /quant.ew/files/system/heart_pickups/append/heart_fullhp_temple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/heart_pickups/append/heart_fullhp_temple.lua -------------------------------------------------------------------------------- /quant.ew/files/system/heart_pickups/heart_pickups.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/heart_pickups/heart_pickups.lua -------------------------------------------------------------------------------- /quant.ew/files/system/homunculus/homunculus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/homunculus/homunculus.lua -------------------------------------------------------------------------------- /quant.ew/files/system/karl/karl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/karl/karl.lua -------------------------------------------------------------------------------- /quant.ew/files/system/kivi_patch/kivi_patch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/kivi_patch/kivi_patch.lua -------------------------------------------------------------------------------- /quant.ew/files/system/kolmi/append/boss_arena.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/kolmi/append/boss_arena.lua -------------------------------------------------------------------------------- /quant.ew/files/system/kolmi/append/boss_update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/kolmi/append/boss_update.lua -------------------------------------------------------------------------------- /quant.ew/files/system/kolmi/append/spawn_kolmi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/kolmi/append/spawn_kolmi.lua -------------------------------------------------------------------------------- /quant.ew/files/system/kolmi/kolmi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/kolmi/kolmi.lua -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/entities/magical_symbol_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/entities/magical_symbol_player.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/entities/soul_orb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/entities/soul_orb.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/grab_damage_message.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/grab_damage_message.lua -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/immortal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/immortal.lua -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/local_health.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/local_health.lua -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/mimic_potion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/mimic_potion.lua -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/mimic_potion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/mimic_potion.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/cessation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/cessation.lua -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/cessation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/cessation.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/iron_stomach.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/iron_stomach.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/knee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/knee.png -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/limb_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/limb_a.png -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/limb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/limb_b.png -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/notplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/notplayer.png -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/notplayer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/notplayer.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/notplayer_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/notplayer_arm.png -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/notplayer_arm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/notplayer_arm.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/notplayer_cape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/notplayer_cape.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/notplayer_dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/notplayer_dc.png -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/notplayer_sprite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/notplayer_sprite.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/notplayer_sprite_dc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/notplayer_sprite_dc.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/poly_effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/poly_effect.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/safe_effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/safe_effect.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/notplayer/safe_effect2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/notplayer/safe_effect2.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/poly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/poly.xml -------------------------------------------------------------------------------- /quant.ew/files/system/local_health/revive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/local_health/revive.png -------------------------------------------------------------------------------- /quant.ew/files/system/map/append.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/map/append.lua -------------------------------------------------------------------------------- /quant.ew/files/system/map/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/map/icon.png -------------------------------------------------------------------------------- /quant.ew/files/system/map/icon_notplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/map/icon_notplayer.png -------------------------------------------------------------------------------- /quant.ew/files/system/map/map.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/map/map.lua -------------------------------------------------------------------------------- /quant.ew/files/system/meat/meat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/meat/meat.lua -------------------------------------------------------------------------------- /quant.ew/files/system/nickname.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/nickname.lua -------------------------------------------------------------------------------- /quant.ew/files/system/notplayer_ai/damage_tracker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/notplayer_ai/damage_tracker.lua -------------------------------------------------------------------------------- /quant.ew/files/system/notplayer_ai/notplayer_ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/notplayer_ai/notplayer_ai.lua -------------------------------------------------------------------------------- /quant.ew/files/system/notplayer_ai/wandfinder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/notplayer_ai/wandfinder.lua -------------------------------------------------------------------------------- /quant.ew/files/system/orb_sync/orb_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/orb_sync/orb_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/system/patch_dragon_boss/dragonspot_script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/patch_dragon_boss/dragonspot_script.lua -------------------------------------------------------------------------------- /quant.ew/files/system/patch_dragon_boss/patch_dragon_boss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/patch_dragon_boss/patch_dragon_boss.lua -------------------------------------------------------------------------------- /quant.ew/files/system/patch_meat_biome/append/biome_check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/patch_meat_biome/append/biome_check.lua -------------------------------------------------------------------------------- /quant.ew/files/system/patch_meat_biome/patch_meat_biome.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/patch_meat_biome/patch_meat_biome.lua -------------------------------------------------------------------------------- /quant.ew/files/system/perk_patches/append/cosmetics_append.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/perk_patches/append/cosmetics_append.lua -------------------------------------------------------------------------------- /quant.ew/files/system/perk_patches/append/perks_common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/perk_patches/append/perks_common.lua -------------------------------------------------------------------------------- /quant.ew/files/system/perk_patches/append/perks_local.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/perk_patches/append/perks_local.lua -------------------------------------------------------------------------------- /quant.ew/files/system/perk_patches/append/perks_shared.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/perk_patches/append/perks_shared.lua -------------------------------------------------------------------------------- /quant.ew/files/system/perk_patches/perk_patches.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/perk_patches/perk_patches.lua -------------------------------------------------------------------------------- /quant.ew/files/system/player/filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/filenames.txt -------------------------------------------------------------------------------- /quant.ew/files/system/player/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/head.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/knee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/knee.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/left_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/left_arm.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/left_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/left_hand.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/left_thigh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/left_thigh.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/limb_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/limb_a.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/limb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/limb_b.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/player_cosmetics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/player_cosmetics.lua -------------------------------------------------------------------------------- /quant.ew/files/system/player/player_uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/player_uv.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/right_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/right_arm.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/right_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/right_hand.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/right_thigh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/right_thigh.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/torso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/torso.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/twwe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/twwe.xml -------------------------------------------------------------------------------- /quant.ew/files/system/player/unmodified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/unmodified.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/unmodified.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/unmodified.xml -------------------------------------------------------------------------------- /quant.ew/files/system/player/unmodified_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/unmodified_arm.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/unmodified_arm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/unmodified_arm.xml -------------------------------------------------------------------------------- /quant.ew/files/system/player/unmodified_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/unmodified_base.xml -------------------------------------------------------------------------------- /quant.ew/files/system/player/unmodified_cape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/unmodified_cape.xml -------------------------------------------------------------------------------- /quant.ew/files/system/player/unmodified_lukki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/unmodified_lukki.png -------------------------------------------------------------------------------- /quant.ew/files/system/player/unmodified_lukki.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player/unmodified_lukki.xml -------------------------------------------------------------------------------- /quant.ew/files/system/player_arrows/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_arrows/arrow.png -------------------------------------------------------------------------------- /quant.ew/files/system/player_arrows/arrow_host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_arrows/arrow_host.png -------------------------------------------------------------------------------- /quant.ew/files/system/player_arrows/arrow_host_notplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_arrows/arrow_host_notplayer.png -------------------------------------------------------------------------------- /quant.ew/files/system/player_arrows/arrow_notplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_arrows/arrow_notplayer.png -------------------------------------------------------------------------------- /quant.ew/files/system/player_arrows/player_arrows.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_arrows/player_arrows.lua -------------------------------------------------------------------------------- /quant.ew/files/system/player_ping/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_ping/arrow.png -------------------------------------------------------------------------------- /quant.ew/files/system/player_ping/player_ping.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_ping/player_ping.lua -------------------------------------------------------------------------------- /quant.ew/files/system/player_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/system/player_tether/player_tether.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_tether/player_tether.lua -------------------------------------------------------------------------------- /quant.ew/files/system/player_tether/zone_entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/player_tether/zone_entity.xml -------------------------------------------------------------------------------- /quant.ew/files/system/polymorph/polymorph.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/polymorph/polymorph.lua -------------------------------------------------------------------------------- /quant.ew/files/system/potion_mimic/pickup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/potion_mimic/pickup.lua -------------------------------------------------------------------------------- /quant.ew/files/system/potion_mimic/poly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/potion_mimic/poly.xml -------------------------------------------------------------------------------- /quant.ew/files/system/potion_mimic/potion_mimic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/potion_mimic/potion_mimic.lua -------------------------------------------------------------------------------- /quant.ew/files/system/proxy_info.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/proxy_info.lua -------------------------------------------------------------------------------- /quant.ew/files/system/pvp/ase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/pvp/ase.xml -------------------------------------------------------------------------------- /quant.ew/files/system/pvp/pvp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/pvp/pvp.lua -------------------------------------------------------------------------------- /quant.ew/files/system/pvp/safe_effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/pvp/safe_effect.xml -------------------------------------------------------------------------------- /quant.ew/files/system/pvp/tp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/pvp/tp.png -------------------------------------------------------------------------------- /quant.ew/files/system/pvp/tp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/pvp/tp.xml -------------------------------------------------------------------------------- /quant.ew/files/system/ragdoll_fix/ragdoll_fix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/ragdoll_fix/ragdoll_fix.lua -------------------------------------------------------------------------------- /quant.ew/files/system/randomize_perks/override_perk_list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/randomize_perks/override_perk_list.lua -------------------------------------------------------------------------------- /quant.ew/files/system/randomize_perks/randomize_perks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/randomize_perks/randomize_perks.lua -------------------------------------------------------------------------------- /quant.ew/files/system/remove_wand_sound/remove_sound.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/remove_wand_sound/remove_sound.lua -------------------------------------------------------------------------------- /quant.ew/files/system/remove_wand_sound/remove_wand_sound.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/remove_wand_sound/remove_wand_sound.lua -------------------------------------------------------------------------------- /quant.ew/files/system/rnd_wands/rnd_wands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/rnd_wands/rnd_wands.lua -------------------------------------------------------------------------------- /quant.ew/files/system/sampo/sampo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/sampo/sampo.lua -------------------------------------------------------------------------------- /quant.ew/files/system/shiny_orb/append.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/shiny_orb/append.lua -------------------------------------------------------------------------------- /quant.ew/files/system/shiny_orb/append_greed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/shiny_orb/append_greed.lua -------------------------------------------------------------------------------- /quant.ew/files/system/shiny_orb/shiny_orb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/shiny_orb/shiny_orb.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spawn_hooks/append/director_helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spawn_hooks/append/director_helpers.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spawn_hooks/append/item_spawnlist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spawn_hooks/append/item_spawnlist.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spawn_hooks/spawn_hooks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spawn_hooks/spawn_hooks.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spectate/no_tinker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spectate/no_tinker.xml -------------------------------------------------------------------------------- /quant.ew/files/system/spectate/spectate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spectate/spectate.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spectator_helps/shield_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spectator_helps/shield_base.xml -------------------------------------------------------------------------------- /quant.ew/files/system/spectator_helps/spectator_helps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spectator_helps/spectator_helps.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spell_patches/banned_spells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spell_patches/banned_spells.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spell_patches/essence_to_power.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spell_patches/essence_to_power.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spell_patches/spell_patches.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spell_patches/spell_patches.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spell_patches/spells_to_power.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spell_patches/spells_to_power.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spell_refresh/append.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spell_refresh/append.lua -------------------------------------------------------------------------------- /quant.ew/files/system/spell_refresh/spell_refresh.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/spell_refresh/spell_refresh.lua -------------------------------------------------------------------------------- /quant.ew/files/system/stevari/append.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/stevari/append.lua -------------------------------------------------------------------------------- /quant.ew/files/system/stevari/spawn_necromancer_shop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/stevari/spawn_necromancer_shop.xml -------------------------------------------------------------------------------- /quant.ew/files/system/stevari/stevari.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/stevari/stevari.lua -------------------------------------------------------------------------------- /quant.ew/files/system/streaming_sync/event_hook.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/streaming_sync/event_hook.lua -------------------------------------------------------------------------------- /quant.ew/files/system/streaming_sync/streaming_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/streaming_sync/streaming_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/system/tapion/spawn_portal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/tapion/spawn_portal.xml -------------------------------------------------------------------------------- /quant.ew/files/system/tapion/tapion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/tapion/tapion.lua -------------------------------------------------------------------------------- /quant.ew/files/system/telekenisis/telekenisis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/telekenisis/telekenisis.lua -------------------------------------------------------------------------------- /quant.ew/files/system/text/text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/text/text.lua -------------------------------------------------------------------------------- /quant.ew/files/system/uniq_flags/uniq_flags.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/uniq_flags/uniq_flags.lua -------------------------------------------------------------------------------- /quant.ew/files/system/wand_charm/append.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/wand_charm/append.lua -------------------------------------------------------------------------------- /quant.ew/files/system/wand_charm/charm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/wand_charm/charm.lua -------------------------------------------------------------------------------- /quant.ew/files/system/wand_charm/wand_charm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/wand_charm/wand_charm.lua -------------------------------------------------------------------------------- /quant.ew/files/system/wang_hooks/files_with_spawnhooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/wang_hooks/files_with_spawnhooks.txt -------------------------------------------------------------------------------- /quant.ew/files/system/wang_hooks/synced_pixel_scenes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/wang_hooks/synced_pixel_scenes.lua -------------------------------------------------------------------------------- /quant.ew/files/system/wang_hooks/wang_hooks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/wang_hooks/wang_hooks.lua -------------------------------------------------------------------------------- /quant.ew/files/system/wang_hooks/wang_scripts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/wang_hooks/wang_scripts.csv -------------------------------------------------------------------------------- /quant.ew/files/system/weather_sync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/weather_sync.lua -------------------------------------------------------------------------------- /quant.ew/files/system/world_sync_cuts/patch_cut_through_world.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/world_sync_cuts/patch_cut_through_world.lua -------------------------------------------------------------------------------- /quant.ew/files/system/world_sync_cuts/world_sync_cuts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/world_sync_cuts/world_sync_cuts.lua -------------------------------------------------------------------------------- /quant.ew/files/system/worms/worms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/files/system/worms/worms.lua -------------------------------------------------------------------------------- /quant.ew/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/init.lua -------------------------------------------------------------------------------- /quant.ew/mod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/mod.xml -------------------------------------------------------------------------------- /quant.ew/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/settings.lua -------------------------------------------------------------------------------- /quant.ew/translations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/quant.ew/translations.csv -------------------------------------------------------------------------------- /redist/libsteam_api.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/redist/libsteam_api.dylib -------------------------------------------------------------------------------- /redist/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/redist/libsteam_api.so -------------------------------------------------------------------------------- /redist/release_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/redist/release_text.md -------------------------------------------------------------------------------- /redist/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/redist/steam_api64.dll -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | gdb_data/ 3 | -------------------------------------------------------------------------------- /scripts/check_pre_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/check_pre_ci.py -------------------------------------------------------------------------------- /scripts/ci_make_archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/ci_make_archives.py -------------------------------------------------------------------------------- /scripts/ci_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/ci_version.py -------------------------------------------------------------------------------- /scripts/extract_steam_redist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/extract_steam_redist.py -------------------------------------------------------------------------------- /scripts/gdb_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/gdb_ext.py -------------------------------------------------------------------------------- /scripts/gdb_parse_ghidra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/gdb_parse_ghidra.py -------------------------------------------------------------------------------- /scripts/make_release_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/make_release_assets.py -------------------------------------------------------------------------------- /scripts/mat_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/mat_colors.py -------------------------------------------------------------------------------- /scripts/parse_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/parse_components.py -------------------------------------------------------------------------------- /scripts/parse_lua_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/parse_lua_api.py -------------------------------------------------------------------------------- /scripts/perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/perf.sh -------------------------------------------------------------------------------- /scripts/prepare_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/prepare_release.py -------------------------------------------------------------------------------- /scripts/start-lutris.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/scripts/start-lutris.sh -------------------------------------------------------------------------------- /shared/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/shared/Cargo.lock -------------------------------------------------------------------------------- /shared/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/shared/Cargo.toml -------------------------------------------------------------------------------- /shared/src/basic_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/shared/src/basic_types.rs -------------------------------------------------------------------------------- /shared/src/des.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/shared/src/des.rs -------------------------------------------------------------------------------- /shared/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/shared/src/lib.rs -------------------------------------------------------------------------------- /shared/src/message_socket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/shared/src/message_socket.rs -------------------------------------------------------------------------------- /shared/src/world_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntQuant/noita_entangled_worlds/HEAD/shared/src/world_sync.rs --------------------------------------------------------------------------------