├── .gitignore ├── 7za.exe ├── Board.cs ├── BoardChar.cs ├── BoardDrawing.cs ├── Change.cs ├── Character.cs ├── Color.cs ├── CryptStream.cs ├── Culture.cs ├── Cursor.cs ├── Descriptions.cs ├── Dijkstra.cs ├── DungeonGenerator.cs ├── Editor.cs ├── Entities.cs ├── ErrorForm.Designer.cs ├── ErrorForm.cs ├── Game.cs ├── Guides ├── Tokeninfo.txt ├── ref.png └── ref.txt ├── IGameHost.cs ├── IniFile.cs ├── InventoryItem.cs ├── LICENSE ├── Lua.cs ├── Mix.cs ├── Morph.cs ├── Name.cs ├── Neo.Lua.dll ├── PlayerChar.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Randomizer.cs ├── Resources └── Noxico.ico ├── Scenes.cs ├── SexManager.cs ├── ShadowCaster.cs ├── SoundSystem.cs ├── Subscreens.cs ├── Subscreens ├── ActionList.cs ├── ContainerMan.cs ├── Controls.cs ├── Crafting.cs ├── Introduction.cs ├── Inventory.cs ├── MessageBox.cs ├── Options.cs ├── Pause.cs ├── TextScroller.cs └── Travel.cs ├── Tokens.cs ├── Toolkit.cs ├── UI.cs ├── UpdateForm.Designer.cs ├── UpdateForm.cs ├── Vista.cs ├── WinFormHost.cs ├── WorldGen.cs ├── fmod.cs ├── fmod.dll ├── fmod64.dll ├── i18n.cs ├── mix ├── biomes.tml ├── bodyparts.tml ├── bodyplans.tml ├── bonustraits.tml ├── books │ ├── 16accords.txt │ ├── bankersbet.txt │ ├── bearofmarkarth.txt │ ├── bestiary_felin.txt │ ├── bestiary_slimes.txt │ ├── bestiary_succubus.txt │ ├── brianandred.txt │ ├── chancefolly.txt │ ├── chauruspie.txt │ ├── demonrealmorigins.txt │ ├── dragonborn.txt │ ├── fonttest.txt │ ├── history1.txt │ ├── history2.txt │ ├── history3.txt │ ├── history4.txt │ ├── lustymaid1.txt │ ├── lustymaid2.txt │ ├── oblivion.txt │ ├── shorthistory.txt │ ├── skyrimsongs.txt │ └── wraitsdowry.txt ├── buildings.tml ├── ccback.png ├── ccbars.png ├── ccpage.png ├── clutter.tml ├── crafting.tml ├── credits.txt ├── culture.tml ├── defense.lua ├── dialogue.tml ├── dream.png ├── eachturn.lua ├── fonts │ ├── 16x16-wyse.png │ ├── 8x16-ass.png │ ├── 8x16-assclr.png │ ├── 8x16-bold.png │ ├── 8x16-color.png │ ├── 8x16-courclr.png │ ├── 8x16-courier.png │ ├── 8x16-iso.png │ ├── 8x16-isoclr.png │ ├── 8x16-termclr.png │ ├── 8x16-terminus.png │ ├── 8x16-termshd.png │ ├── 8x8-5140.png │ ├── 8x8-ass.png │ ├── 8x8-bold.png │ ├── 8x8-thin.png │ └── variants.tml ├── i18n.lua ├── i18n.tml ├── impediments.tml ├── init.lua ├── items.tml ├── knowncolors.tml ├── logo.png ├── lookup.txt ├── loot.tml ├── makecave.png ├── makedemonrealm.png ├── metadata.tml ├── noxico.ini ├── powers.tml ├── schedule.tml ├── schema.tml ├── sex.tml ├── speechfilters │ ├── felin.lua │ └── sssnake.lua ├── stats.lua ├── story.png ├── story.txt ├── testarena.lua ├── tiles.tml ├── titles │ ├── buttjadah.png │ ├── buttjadah2.png │ ├── dildosword.png │ ├── felinpoledance.png │ ├── felinroof.png │ ├── felinroof2.png │ ├── incubustent.png │ ├── incubustent2a.png │ ├── incubustent2b.png │ ├── kitsunetunnel.png │ ├── oldertitle.png │ ├── recliningjadah.png │ └── ropejadah.png ├── travelback.png ├── uniques.tml └── wordstructor.tml ├── mkmix ├── mkmix.bat ├── mods ├── consentaclepit │ ├── consentaclepit.lua │ ├── dialogue.tml.patch │ ├── metadata.tml.patch │ ├── thepit.png │ ├── thepit.tml │ └── uniques.tml.patch ├── homestuck │ ├── books │ │ └── legendbullshit.txt │ ├── items.tml.patch │ ├── metadata.tml.patch │ └── mission-homestuck.lua ├── jadah │ ├── items.tml.patch │ ├── lairhouse.png │ ├── lairhouse.tml │ ├── loot.tml.patch │ ├── metadata.tml.patch │ ├── mission-jadah.lua │ └── uniques.tml.patch ├── littleponies │ ├── bodyplans.tml.patch │ ├── buildings.tml.patch │ ├── culture.tml.patch │ ├── loot.tml.patch │ ├── metadata.tml.patch │ ├── mission-littleponies.lua │ └── uniques.tml.patch ├── melfina │ ├── items.tml.patch │ ├── loot.tml.patch │ ├── metadata.tml.patch │ ├── mission-melfina.lua │ └── uniques.tml.patch ├── morphpotions │ ├── items.tml.patch │ ├── metadata.tml.patch │ └── mission-morphpotions.lua ├── playerbase │ ├── dialogue.tml.patch │ ├── floorplan.pspimage │ ├── metadata.tml.patch │ ├── mission-playerbase.lua │ ├── playerbase.tml │ ├── playerbase_0.png │ ├── playerbase_1.png │ ├── playerbase_2.png │ ├── playerbase_3.png │ ├── playerbase_4.png │ ├── playerbase_d.png │ ├── playerbase_shed.png │ └── uniques.tml.patch └── urta │ ├── items.tml.patch │ ├── loot.tml.patch │ ├── metadata.tml.patch │ ├── mission-urta.lua │ └── uniques.tml.patch ├── music ├── 0-insnej.xm ├── 409920kb.s3m ├── 8bit_party.it ├── _hh_vibes.mod ├── _space_lovers_.xm ├── _x_1.mod ├── aa-molec.s3m ├── beek_ita.it ├── c3intro.mod ├── caramel_-_karamel_special_k.s3m ├── computer_weekend.mod ├── crizz_-_milkyway.xm ├── crizz_-_r2-d248k_4chnl_edit.xm ├── cutegg.it ├── cutesy1v2.mod ├── darkmere_deathtune.mod ├── dynamite_-_over_the_top.s3m ├── eat_sum_muffin.mod ├── fixedsys.xm ├── hope_joy_fleas.mod ├── humpin.xm ├── hyo-dum.it ├── i18n.tml.patch ├── i_like_your_atari.xm ├── insan-01.s3m ├── insan-03.s3m ├── joule-littlewe_kladdcakes.xm ├── joule-mozarella_filofox.xm ├── joule_-_rainbow.xm ├── jumping-499.xm ├── karbofos_-_1.xm ├── ko0x_-_btto.it ├── ko0x_-_gias_rush.it ├── ko0x_-_gizgame_level1.it ├── ko0x_-_idksidc.it ├── ko0x_-_snowmans_land.xm ├── ko0x_-_without_you.xm ├── ko0x_-_zenon.xm ├── lepra_-_high_on_popcorns.xm ├── loonie_-_cronologie_4_remix.xm ├── mathcexam.it ├── music.tml ├── my_little_ponies.mod ├── robric600.xm ├── robric993.xm ├── rubber.xm ├── sandras_sweet_sex_seminar.xm ├── serpent_-_my_dream.xm ├── sex_with_a_bottle.xm ├── strobe_-_crystal_tears.xm ├── the_eternal.mod └── ub-ihni.it ├── notes ├── Sparks' notes.txt ├── Xolroc's random ideas.txt ├── oldScriptsStorage.txt ├── tokenlist.txt └── unformatted books.txt ├── noxico.csproj ├── noxico.sln └── sound ├── coin.wav ├── opengate.wav ├── sound.tml └── step.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/.gitignore -------------------------------------------------------------------------------- /7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/7za.exe -------------------------------------------------------------------------------- /Board.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Board.cs -------------------------------------------------------------------------------- /BoardChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/BoardChar.cs -------------------------------------------------------------------------------- /BoardDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/BoardDrawing.cs -------------------------------------------------------------------------------- /Change.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Change.cs -------------------------------------------------------------------------------- /Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Character.cs -------------------------------------------------------------------------------- /Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Color.cs -------------------------------------------------------------------------------- /CryptStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/CryptStream.cs -------------------------------------------------------------------------------- /Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Culture.cs -------------------------------------------------------------------------------- /Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Cursor.cs -------------------------------------------------------------------------------- /Descriptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Descriptions.cs -------------------------------------------------------------------------------- /Dijkstra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Dijkstra.cs -------------------------------------------------------------------------------- /DungeonGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/DungeonGenerator.cs -------------------------------------------------------------------------------- /Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Editor.cs -------------------------------------------------------------------------------- /Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Entities.cs -------------------------------------------------------------------------------- /ErrorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/ErrorForm.Designer.cs -------------------------------------------------------------------------------- /ErrorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/ErrorForm.cs -------------------------------------------------------------------------------- /Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Game.cs -------------------------------------------------------------------------------- /Guides/Tokeninfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Guides/Tokeninfo.txt -------------------------------------------------------------------------------- /Guides/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Guides/ref.png -------------------------------------------------------------------------------- /Guides/ref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Guides/ref.txt -------------------------------------------------------------------------------- /IGameHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/IGameHost.cs -------------------------------------------------------------------------------- /IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/IniFile.cs -------------------------------------------------------------------------------- /InventoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/InventoryItem.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/LICENSE -------------------------------------------------------------------------------- /Lua.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Lua.cs -------------------------------------------------------------------------------- /Mix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Mix.cs -------------------------------------------------------------------------------- /Morph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Morph.cs -------------------------------------------------------------------------------- /Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Name.cs -------------------------------------------------------------------------------- /Neo.Lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Neo.Lua.dll -------------------------------------------------------------------------------- /PlayerChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/PlayerChar.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/README.md -------------------------------------------------------------------------------- /Randomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Randomizer.cs -------------------------------------------------------------------------------- /Resources/Noxico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Resources/Noxico.ico -------------------------------------------------------------------------------- /Scenes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Scenes.cs -------------------------------------------------------------------------------- /SexManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/SexManager.cs -------------------------------------------------------------------------------- /ShadowCaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/ShadowCaster.cs -------------------------------------------------------------------------------- /SoundSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/SoundSystem.cs -------------------------------------------------------------------------------- /Subscreens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens.cs -------------------------------------------------------------------------------- /Subscreens/ActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/ActionList.cs -------------------------------------------------------------------------------- /Subscreens/ContainerMan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/ContainerMan.cs -------------------------------------------------------------------------------- /Subscreens/Controls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/Controls.cs -------------------------------------------------------------------------------- /Subscreens/Crafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/Crafting.cs -------------------------------------------------------------------------------- /Subscreens/Introduction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/Introduction.cs -------------------------------------------------------------------------------- /Subscreens/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/Inventory.cs -------------------------------------------------------------------------------- /Subscreens/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/MessageBox.cs -------------------------------------------------------------------------------- /Subscreens/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/Options.cs -------------------------------------------------------------------------------- /Subscreens/Pause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/Pause.cs -------------------------------------------------------------------------------- /Subscreens/TextScroller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/TextScroller.cs -------------------------------------------------------------------------------- /Subscreens/Travel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Subscreens/Travel.cs -------------------------------------------------------------------------------- /Tokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Tokens.cs -------------------------------------------------------------------------------- /Toolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Toolkit.cs -------------------------------------------------------------------------------- /UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/UI.cs -------------------------------------------------------------------------------- /UpdateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/UpdateForm.Designer.cs -------------------------------------------------------------------------------- /UpdateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/UpdateForm.cs -------------------------------------------------------------------------------- /Vista.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/Vista.cs -------------------------------------------------------------------------------- /WinFormHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/WinFormHost.cs -------------------------------------------------------------------------------- /WorldGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/WorldGen.cs -------------------------------------------------------------------------------- /fmod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/fmod.cs -------------------------------------------------------------------------------- /fmod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/fmod.dll -------------------------------------------------------------------------------- /fmod64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/fmod64.dll -------------------------------------------------------------------------------- /i18n.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/i18n.cs -------------------------------------------------------------------------------- /mix/biomes.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/biomes.tml -------------------------------------------------------------------------------- /mix/bodyparts.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/bodyparts.tml -------------------------------------------------------------------------------- /mix/bodyplans.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/bodyplans.tml -------------------------------------------------------------------------------- /mix/bonustraits.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/bonustraits.tml -------------------------------------------------------------------------------- /mix/books/16accords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/16accords.txt -------------------------------------------------------------------------------- /mix/books/bankersbet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/bankersbet.txt -------------------------------------------------------------------------------- /mix/books/bearofmarkarth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/bearofmarkarth.txt -------------------------------------------------------------------------------- /mix/books/bestiary_felin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/bestiary_felin.txt -------------------------------------------------------------------------------- /mix/books/bestiary_slimes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/bestiary_slimes.txt -------------------------------------------------------------------------------- /mix/books/bestiary_succubus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/bestiary_succubus.txt -------------------------------------------------------------------------------- /mix/books/brianandred.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/brianandred.txt -------------------------------------------------------------------------------- /mix/books/chancefolly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/chancefolly.txt -------------------------------------------------------------------------------- /mix/books/chauruspie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/chauruspie.txt -------------------------------------------------------------------------------- /mix/books/demonrealmorigins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/demonrealmorigins.txt -------------------------------------------------------------------------------- /mix/books/dragonborn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/dragonborn.txt -------------------------------------------------------------------------------- /mix/books/fonttest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/fonttest.txt -------------------------------------------------------------------------------- /mix/books/history1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/history1.txt -------------------------------------------------------------------------------- /mix/books/history2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/history2.txt -------------------------------------------------------------------------------- /mix/books/history3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/history3.txt -------------------------------------------------------------------------------- /mix/books/history4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/history4.txt -------------------------------------------------------------------------------- /mix/books/lustymaid1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/lustymaid1.txt -------------------------------------------------------------------------------- /mix/books/lustymaid2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/lustymaid2.txt -------------------------------------------------------------------------------- /mix/books/oblivion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/oblivion.txt -------------------------------------------------------------------------------- /mix/books/shorthistory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/shorthistory.txt -------------------------------------------------------------------------------- /mix/books/skyrimsongs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/skyrimsongs.txt -------------------------------------------------------------------------------- /mix/books/wraitsdowry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/books/wraitsdowry.txt -------------------------------------------------------------------------------- /mix/buildings.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/buildings.tml -------------------------------------------------------------------------------- /mix/ccback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/ccback.png -------------------------------------------------------------------------------- /mix/ccbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/ccbars.png -------------------------------------------------------------------------------- /mix/ccpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/ccpage.png -------------------------------------------------------------------------------- /mix/clutter.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/clutter.tml -------------------------------------------------------------------------------- /mix/crafting.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/crafting.tml -------------------------------------------------------------------------------- /mix/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/credits.txt -------------------------------------------------------------------------------- /mix/culture.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/culture.tml -------------------------------------------------------------------------------- /mix/defense.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/defense.lua -------------------------------------------------------------------------------- /mix/dialogue.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/dialogue.tml -------------------------------------------------------------------------------- /mix/dream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/dream.png -------------------------------------------------------------------------------- /mix/eachturn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/eachturn.lua -------------------------------------------------------------------------------- /mix/fonts/16x16-wyse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/16x16-wyse.png -------------------------------------------------------------------------------- /mix/fonts/8x16-ass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-ass.png -------------------------------------------------------------------------------- /mix/fonts/8x16-assclr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-assclr.png -------------------------------------------------------------------------------- /mix/fonts/8x16-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-bold.png -------------------------------------------------------------------------------- /mix/fonts/8x16-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-color.png -------------------------------------------------------------------------------- /mix/fonts/8x16-courclr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-courclr.png -------------------------------------------------------------------------------- /mix/fonts/8x16-courier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-courier.png -------------------------------------------------------------------------------- /mix/fonts/8x16-iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-iso.png -------------------------------------------------------------------------------- /mix/fonts/8x16-isoclr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-isoclr.png -------------------------------------------------------------------------------- /mix/fonts/8x16-termclr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-termclr.png -------------------------------------------------------------------------------- /mix/fonts/8x16-terminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-terminus.png -------------------------------------------------------------------------------- /mix/fonts/8x16-termshd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x16-termshd.png -------------------------------------------------------------------------------- /mix/fonts/8x8-5140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x8-5140.png -------------------------------------------------------------------------------- /mix/fonts/8x8-ass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x8-ass.png -------------------------------------------------------------------------------- /mix/fonts/8x8-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x8-bold.png -------------------------------------------------------------------------------- /mix/fonts/8x8-thin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/8x8-thin.png -------------------------------------------------------------------------------- /mix/fonts/variants.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/fonts/variants.tml -------------------------------------------------------------------------------- /mix/i18n.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/i18n.lua -------------------------------------------------------------------------------- /mix/i18n.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/i18n.tml -------------------------------------------------------------------------------- /mix/impediments.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/impediments.tml -------------------------------------------------------------------------------- /mix/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/init.lua -------------------------------------------------------------------------------- /mix/items.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/items.tml -------------------------------------------------------------------------------- /mix/knowncolors.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/knowncolors.tml -------------------------------------------------------------------------------- /mix/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/logo.png -------------------------------------------------------------------------------- /mix/lookup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/lookup.txt -------------------------------------------------------------------------------- /mix/loot.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/loot.tml -------------------------------------------------------------------------------- /mix/makecave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/makecave.png -------------------------------------------------------------------------------- /mix/makedemonrealm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/makedemonrealm.png -------------------------------------------------------------------------------- /mix/metadata.tml: -------------------------------------------------------------------------------- 1 | -- Base -------------------------------------------------------------------------------- /mix/noxico.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/noxico.ini -------------------------------------------------------------------------------- /mix/powers.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/powers.tml -------------------------------------------------------------------------------- /mix/schedule.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/schedule.tml -------------------------------------------------------------------------------- /mix/schema.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/schema.tml -------------------------------------------------------------------------------- /mix/sex.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/sex.tml -------------------------------------------------------------------------------- /mix/speechfilters/felin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/speechfilters/felin.lua -------------------------------------------------------------------------------- /mix/speechfilters/sssnake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/speechfilters/sssnake.lua -------------------------------------------------------------------------------- /mix/stats.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/stats.lua -------------------------------------------------------------------------------- /mix/story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/story.png -------------------------------------------------------------------------------- /mix/story.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/story.txt -------------------------------------------------------------------------------- /mix/testarena.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/testarena.lua -------------------------------------------------------------------------------- /mix/tiles.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/tiles.tml -------------------------------------------------------------------------------- /mix/titles/buttjadah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/buttjadah.png -------------------------------------------------------------------------------- /mix/titles/buttjadah2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/buttjadah2.png -------------------------------------------------------------------------------- /mix/titles/dildosword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/dildosword.png -------------------------------------------------------------------------------- /mix/titles/felinpoledance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/felinpoledance.png -------------------------------------------------------------------------------- /mix/titles/felinroof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/felinroof.png -------------------------------------------------------------------------------- /mix/titles/felinroof2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/felinroof2.png -------------------------------------------------------------------------------- /mix/titles/incubustent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/incubustent.png -------------------------------------------------------------------------------- /mix/titles/incubustent2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/incubustent2a.png -------------------------------------------------------------------------------- /mix/titles/incubustent2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/incubustent2b.png -------------------------------------------------------------------------------- /mix/titles/kitsunetunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/kitsunetunnel.png -------------------------------------------------------------------------------- /mix/titles/oldertitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/oldertitle.png -------------------------------------------------------------------------------- /mix/titles/recliningjadah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/recliningjadah.png -------------------------------------------------------------------------------- /mix/titles/ropejadah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/titles/ropejadah.png -------------------------------------------------------------------------------- /mix/travelback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/travelback.png -------------------------------------------------------------------------------- /mix/uniques.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/uniques.tml -------------------------------------------------------------------------------- /mix/wordstructor.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mix/wordstructor.tml -------------------------------------------------------------------------------- /mkmix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mkmix -------------------------------------------------------------------------------- /mkmix.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mkmix.bat -------------------------------------------------------------------------------- /mods/consentaclepit/consentaclepit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/consentaclepit/consentaclepit.lua -------------------------------------------------------------------------------- /mods/consentaclepit/dialogue.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/consentaclepit/dialogue.tml.patch -------------------------------------------------------------------------------- /mods/consentaclepit/metadata.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/consentaclepit/metadata.tml.patch -------------------------------------------------------------------------------- /mods/consentaclepit/thepit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/consentaclepit/thepit.png -------------------------------------------------------------------------------- /mods/consentaclepit/thepit.tml: -------------------------------------------------------------------------------- 1 | BEBEDC: swamp_wavey 2 | unique: tentaclesan 3 | -------------------------------------------------------------------------------- /mods/consentaclepit/uniques.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/consentaclepit/uniques.tml.patch -------------------------------------------------------------------------------- /mods/homestuck/books/legendbullshit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/homestuck/books/legendbullshit.txt -------------------------------------------------------------------------------- /mods/homestuck/items.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/homestuck/items.tml.patch -------------------------------------------------------------------------------- /mods/homestuck/metadata.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/homestuck/metadata.tml.patch -------------------------------------------------------------------------------- /mods/homestuck/mission-homestuck.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/jadah/items.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/jadah/items.tml.patch -------------------------------------------------------------------------------- /mods/jadah/lairhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/jadah/lairhouse.png -------------------------------------------------------------------------------- /mods/jadah/lairhouse.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/jadah/lairhouse.tml -------------------------------------------------------------------------------- /mods/jadah/loot.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/jadah/loot.tml.patch -------------------------------------------------------------------------------- /mods/jadah/metadata.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/jadah/metadata.tml.patch -------------------------------------------------------------------------------- /mods/jadah/mission-jadah.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/jadah/mission-jadah.lua -------------------------------------------------------------------------------- /mods/jadah/uniques.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/jadah/uniques.tml.patch -------------------------------------------------------------------------------- /mods/littleponies/bodyplans.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/littleponies/bodyplans.tml.patch -------------------------------------------------------------------------------- /mods/littleponies/buildings.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/littleponies/buildings.tml.patch -------------------------------------------------------------------------------- /mods/littleponies/culture.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/littleponies/culture.tml.patch -------------------------------------------------------------------------------- /mods/littleponies/loot.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/littleponies/loot.tml.patch -------------------------------------------------------------------------------- /mods/littleponies/metadata.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/littleponies/metadata.tml.patch -------------------------------------------------------------------------------- /mods/littleponies/mission-littleponies.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/littleponies/mission-littleponies.lua -------------------------------------------------------------------------------- /mods/littleponies/uniques.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/littleponies/uniques.tml.patch -------------------------------------------------------------------------------- /mods/melfina/items.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/melfina/items.tml.patch -------------------------------------------------------------------------------- /mods/melfina/loot.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/melfina/loot.tml.patch -------------------------------------------------------------------------------- /mods/melfina/metadata.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/melfina/metadata.tml.patch -------------------------------------------------------------------------------- /mods/melfina/mission-melfina.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/melfina/mission-melfina.lua -------------------------------------------------------------------------------- /mods/melfina/uniques.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/melfina/uniques.tml.patch -------------------------------------------------------------------------------- /mods/morphpotions/items.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/morphpotions/items.tml.patch -------------------------------------------------------------------------------- /mods/morphpotions/metadata.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/morphpotions/metadata.tml.patch -------------------------------------------------------------------------------- /mods/morphpotions/mission-morphpotions.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/playerbase/dialogue.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/dialogue.tml.patch -------------------------------------------------------------------------------- /mods/playerbase/floorplan.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/floorplan.pspimage -------------------------------------------------------------------------------- /mods/playerbase/metadata.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/metadata.tml.patch -------------------------------------------------------------------------------- /mods/playerbase/mission-playerbase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/mission-playerbase.lua -------------------------------------------------------------------------------- /mods/playerbase/playerbase.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/playerbase.tml -------------------------------------------------------------------------------- /mods/playerbase/playerbase_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/playerbase_0.png -------------------------------------------------------------------------------- /mods/playerbase/playerbase_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/playerbase_1.png -------------------------------------------------------------------------------- /mods/playerbase/playerbase_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/playerbase_2.png -------------------------------------------------------------------------------- /mods/playerbase/playerbase_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/playerbase_3.png -------------------------------------------------------------------------------- /mods/playerbase/playerbase_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/playerbase_4.png -------------------------------------------------------------------------------- /mods/playerbase/playerbase_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/playerbase_d.png -------------------------------------------------------------------------------- /mods/playerbase/playerbase_shed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/playerbase_shed.png -------------------------------------------------------------------------------- /mods/playerbase/uniques.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/playerbase/uniques.tml.patch -------------------------------------------------------------------------------- /mods/urta/items.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/urta/items.tml.patch -------------------------------------------------------------------------------- /mods/urta/loot.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/urta/loot.tml.patch -------------------------------------------------------------------------------- /mods/urta/metadata.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/urta/metadata.tml.patch -------------------------------------------------------------------------------- /mods/urta/mission-urta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/urta/mission-urta.lua -------------------------------------------------------------------------------- /mods/urta/uniques.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/mods/urta/uniques.tml.patch -------------------------------------------------------------------------------- /music/0-insnej.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/0-insnej.xm -------------------------------------------------------------------------------- /music/409920kb.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/409920kb.s3m -------------------------------------------------------------------------------- /music/8bit_party.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/8bit_party.it -------------------------------------------------------------------------------- /music/_hh_vibes.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/_hh_vibes.mod -------------------------------------------------------------------------------- /music/_space_lovers_.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/_space_lovers_.xm -------------------------------------------------------------------------------- /music/_x_1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/_x_1.mod -------------------------------------------------------------------------------- /music/aa-molec.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/aa-molec.s3m -------------------------------------------------------------------------------- /music/beek_ita.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/beek_ita.it -------------------------------------------------------------------------------- /music/c3intro.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/c3intro.mod -------------------------------------------------------------------------------- /music/caramel_-_karamel_special_k.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/caramel_-_karamel_special_k.s3m -------------------------------------------------------------------------------- /music/computer_weekend.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/computer_weekend.mod -------------------------------------------------------------------------------- /music/crizz_-_milkyway.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/crizz_-_milkyway.xm -------------------------------------------------------------------------------- /music/crizz_-_r2-d248k_4chnl_edit.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/crizz_-_r2-d248k_4chnl_edit.xm -------------------------------------------------------------------------------- /music/cutegg.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/cutegg.it -------------------------------------------------------------------------------- /music/cutesy1v2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/cutesy1v2.mod -------------------------------------------------------------------------------- /music/darkmere_deathtune.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/darkmere_deathtune.mod -------------------------------------------------------------------------------- /music/dynamite_-_over_the_top.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/dynamite_-_over_the_top.s3m -------------------------------------------------------------------------------- /music/eat_sum_muffin.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/eat_sum_muffin.mod -------------------------------------------------------------------------------- /music/fixedsys.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/fixedsys.xm -------------------------------------------------------------------------------- /music/hope_joy_fleas.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/hope_joy_fleas.mod -------------------------------------------------------------------------------- /music/humpin.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/humpin.xm -------------------------------------------------------------------------------- /music/hyo-dum.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/hyo-dum.it -------------------------------------------------------------------------------- /music/i18n.tml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/i18n.tml.patch -------------------------------------------------------------------------------- /music/i_like_your_atari.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/i_like_your_atari.xm -------------------------------------------------------------------------------- /music/insan-01.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/insan-01.s3m -------------------------------------------------------------------------------- /music/insan-03.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/insan-03.s3m -------------------------------------------------------------------------------- /music/joule-littlewe_kladdcakes.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/joule-littlewe_kladdcakes.xm -------------------------------------------------------------------------------- /music/joule-mozarella_filofox.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/joule-mozarella_filofox.xm -------------------------------------------------------------------------------- /music/joule_-_rainbow.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/joule_-_rainbow.xm -------------------------------------------------------------------------------- /music/jumping-499.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/jumping-499.xm -------------------------------------------------------------------------------- /music/karbofos_-_1.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/karbofos_-_1.xm -------------------------------------------------------------------------------- /music/ko0x_-_btto.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/ko0x_-_btto.it -------------------------------------------------------------------------------- /music/ko0x_-_gias_rush.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/ko0x_-_gias_rush.it -------------------------------------------------------------------------------- /music/ko0x_-_gizgame_level1.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/ko0x_-_gizgame_level1.it -------------------------------------------------------------------------------- /music/ko0x_-_idksidc.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/ko0x_-_idksidc.it -------------------------------------------------------------------------------- /music/ko0x_-_snowmans_land.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/ko0x_-_snowmans_land.xm -------------------------------------------------------------------------------- /music/ko0x_-_without_you.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/ko0x_-_without_you.xm -------------------------------------------------------------------------------- /music/ko0x_-_zenon.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/ko0x_-_zenon.xm -------------------------------------------------------------------------------- /music/lepra_-_high_on_popcorns.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/lepra_-_high_on_popcorns.xm -------------------------------------------------------------------------------- /music/loonie_-_cronologie_4_remix.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/loonie_-_cronologie_4_remix.xm -------------------------------------------------------------------------------- /music/mathcexam.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/mathcexam.it -------------------------------------------------------------------------------- /music/music.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/music.tml -------------------------------------------------------------------------------- /music/my_little_ponies.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/my_little_ponies.mod -------------------------------------------------------------------------------- /music/robric600.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/robric600.xm -------------------------------------------------------------------------------- /music/robric993.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/robric993.xm -------------------------------------------------------------------------------- /music/rubber.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/rubber.xm -------------------------------------------------------------------------------- /music/sandras_sweet_sex_seminar.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/sandras_sweet_sex_seminar.xm -------------------------------------------------------------------------------- /music/serpent_-_my_dream.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/serpent_-_my_dream.xm -------------------------------------------------------------------------------- /music/sex_with_a_bottle.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/sex_with_a_bottle.xm -------------------------------------------------------------------------------- /music/strobe_-_crystal_tears.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/strobe_-_crystal_tears.xm -------------------------------------------------------------------------------- /music/the_eternal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/the_eternal.mod -------------------------------------------------------------------------------- /music/ub-ihni.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/music/ub-ihni.it -------------------------------------------------------------------------------- /notes/Sparks' notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/notes/Sparks' notes.txt -------------------------------------------------------------------------------- /notes/Xolroc's random ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/notes/Xolroc's random ideas.txt -------------------------------------------------------------------------------- /notes/oldScriptsStorage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/notes/oldScriptsStorage.txt -------------------------------------------------------------------------------- /notes/tokenlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/notes/tokenlist.txt -------------------------------------------------------------------------------- /notes/unformatted books.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/notes/unformatted books.txt -------------------------------------------------------------------------------- /noxico.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/noxico.csproj -------------------------------------------------------------------------------- /noxico.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/noxico.sln -------------------------------------------------------------------------------- /sound/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/sound/coin.wav -------------------------------------------------------------------------------- /sound/opengate.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/sound/opengate.wav -------------------------------------------------------------------------------- /sound/sound.tml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/sound/sound.tml -------------------------------------------------------------------------------- /sound/step.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kawa-oneechan/Noxico/HEAD/sound/step.wav --------------------------------------------------------------------------------