├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── docs.yml │ ├── main.yml │ ├── properties.yml │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .yarn └── releases │ └── yarn-4.4.1.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── README.md ├── babel.config.cjs ├── eslint.config.mjs ├── examples ├── README.md ├── clan.ts ├── consult.ts ├── item.ts ├── lib.ts ├── props.ts └── resources.ts ├── kolmafia-polyfill.js ├── package.json ├── setupTests.ts ├── src ├── Clan.ts ├── Copier.ts ├── Dungeon.ts ├── Kmail.test.ts ├── Kmail.ts ├── Macro.test.ts ├── actions │ ├── ActionSource.ts │ ├── Banish.ts │ ├── FreeKill.ts │ ├── FreeRun.ts │ └── index.ts ├── ascend.ts ├── challengePaths │ ├── 2014 │ │ └── HeavyRains.ts │ ├── 2015 │ │ └── CommunityService.ts │ ├── 2016 │ │ └── NuclearAutumn.ts │ └── index.ts ├── combat.ts ├── console.ts ├── counter.ts ├── diet │ ├── index.ts │ ├── knapsack.test.ts │ └── knapsack.ts ├── index.ts ├── lib.test.ts ├── lib.ts ├── logger.ts ├── maximize.ts ├── mining.ts ├── modifier.ts ├── modifierTypes.ts ├── mood.ts ├── moonSign.ts ├── overlappingNames.ts ├── property.ts ├── propertyTypes.ts ├── propertyTyping.ts ├── resources │ ├── 2006 │ │ └── CommaChameleon.ts │ ├── 2007 │ │ └── CandyHearts.ts │ ├── 2008 │ │ ├── DivineFavors.ts │ │ └── Stickers.ts │ ├── 2009 │ │ ├── Bandersnatch.ts │ │ ├── LoveSongs.ts │ │ └── SpookyPutty.ts │ ├── 2010 │ │ ├── Brickos.ts │ │ ├── CrownOfThrones.ts │ │ └── LookingGlass.ts │ ├── 2011 │ │ ├── Gygaxian.ts │ │ ├── ObtuseAngel.ts │ │ └── StompingBoots.ts │ ├── 2012 │ │ ├── RainDoh.ts │ │ ├── ReagnimatedGnome.ts │ │ └── Resolutions.ts │ ├── 2013 │ │ ├── Florist.ts │ │ ├── JungMan.ts │ │ └── PulledTaffy.ts │ ├── 2014 │ │ ├── ConspiracyIsland.ts │ │ ├── CrimboShrub.ts │ │ ├── DNALab.ts │ │ └── WinterGarden.ts │ ├── 2015 │ │ ├── BarrelShrine.ts │ │ ├── ChateauMantegna.ts │ │ ├── DeckOfEveryCard.ts │ │ ├── Dinseylandfill.ts │ │ └── MayoClinic.ts │ ├── 2016 │ │ ├── GingerBread.ts │ │ ├── SourceTerminal.ts │ │ └── Witchess.ts │ ├── 2017 │ │ ├── AsdonMartin.ts │ │ ├── Horsery.ts │ │ ├── MummingTrunk.ts │ │ ├── Pantogram.ts │ │ ├── Robortender.ts │ │ ├── Spacegate.ts │ │ └── TunnelOfLove.ts │ ├── 2018 │ │ ├── BoxingDaycare.ts │ │ ├── LatteLoversMembersMug.ts │ │ └── SongBoom.ts │ ├── 2019 │ │ ├── BeachComb.ts │ │ ├── CampAway.ts │ │ ├── PocketProfessor.ts │ │ └── Snapper.ts │ ├── 2020 │ │ ├── Cartography.ts │ │ ├── Guzzlr.ts │ │ └── RetroCape.ts │ ├── 2021 │ │ ├── CrystalBall.ts │ │ └── DaylightShavings.ts │ ├── 2022 │ │ ├── AutumnAton.ts │ │ ├── CombatLoversLocket.ts │ │ ├── DesignerSweatpants.ts │ │ ├── GreyGoose.ts │ │ ├── JuneCleaver.ts │ │ ├── Stillsuit.ts │ │ └── TrainSet.ts │ ├── 2023 │ │ ├── AugustScepter.ts │ │ ├── BurningLeaves.ts │ │ ├── CinchoDeMayo.ts │ │ ├── ClosedCircuitPayphone.ts │ │ └── CursedMonkeyPaw.ts │ ├── 2024 │ │ ├── AprilingBandHelmet.ts │ │ ├── BatWings.ts │ │ ├── ChestMimic.ts │ │ ├── EverfullDarts.ts │ │ ├── MayamCalendar.ts │ │ ├── TakerSpace.ts │ │ └── TearawayPants.ts │ ├── 2025 │ │ ├── BloodCubicZirconia.ts │ │ ├── CrepeParachute.ts │ │ ├── CyberRealm.ts │ │ ├── Leprecondo.ts │ │ ├── PeridotOfPeril.ts │ │ ├── PrismaticBeret.ts │ │ └── ToyCupidBow.ts │ ├── LibramSummon.ts │ ├── evergreen │ │ ├── Raffle.test.ts │ │ ├── Raffle.ts │ │ └── __fixtures__ │ │ │ └── raffle.html │ ├── index.ts │ └── putty-likes.ts ├── session.ts ├── since.ts ├── template-string.ts ├── url.test.ts ├── url.ts ├── utils.test.ts └── utils.ts ├── tools ├── parseDefaultProperties.ts ├── parseItemSkillNames.ts ├── parseModifiers.ts └── tsconfig.json ├── tsconfig.json ├── vitest.config.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.github/workflows/properties.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.prettierignore -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.4.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.yarn/releases/yarn-4.4.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/clan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/examples/clan.ts -------------------------------------------------------------------------------- /examples/consult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/examples/consult.ts -------------------------------------------------------------------------------- /examples/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/examples/item.ts -------------------------------------------------------------------------------- /examples/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/examples/lib.ts -------------------------------------------------------------------------------- /examples/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/examples/props.ts -------------------------------------------------------------------------------- /examples/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/examples/resources.ts -------------------------------------------------------------------------------- /kolmafia-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/kolmafia-polyfill.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/package.json -------------------------------------------------------------------------------- /setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/setupTests.ts -------------------------------------------------------------------------------- /src/Clan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/Clan.ts -------------------------------------------------------------------------------- /src/Copier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/Copier.ts -------------------------------------------------------------------------------- /src/Dungeon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/Dungeon.ts -------------------------------------------------------------------------------- /src/Kmail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/Kmail.test.ts -------------------------------------------------------------------------------- /src/Kmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/Kmail.ts -------------------------------------------------------------------------------- /src/Macro.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/Macro.test.ts -------------------------------------------------------------------------------- /src/actions/ActionSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/actions/ActionSource.ts -------------------------------------------------------------------------------- /src/actions/Banish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/actions/Banish.ts -------------------------------------------------------------------------------- /src/actions/FreeKill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/actions/FreeKill.ts -------------------------------------------------------------------------------- /src/actions/FreeRun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/actions/FreeRun.ts -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/ascend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/ascend.ts -------------------------------------------------------------------------------- /src/challengePaths/2014/HeavyRains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/challengePaths/2014/HeavyRains.ts -------------------------------------------------------------------------------- /src/challengePaths/2015/CommunityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/challengePaths/2015/CommunityService.ts -------------------------------------------------------------------------------- /src/challengePaths/2016/NuclearAutumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/challengePaths/2016/NuclearAutumn.ts -------------------------------------------------------------------------------- /src/challengePaths/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/challengePaths/index.ts -------------------------------------------------------------------------------- /src/combat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/combat.ts -------------------------------------------------------------------------------- /src/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/console.ts -------------------------------------------------------------------------------- /src/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/counter.ts -------------------------------------------------------------------------------- /src/diet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/diet/index.ts -------------------------------------------------------------------------------- /src/diet/knapsack.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/diet/knapsack.test.ts -------------------------------------------------------------------------------- /src/diet/knapsack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/diet/knapsack.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/lib.test.ts -------------------------------------------------------------------------------- /src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/lib.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/maximize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/maximize.ts -------------------------------------------------------------------------------- /src/mining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/mining.ts -------------------------------------------------------------------------------- /src/modifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/modifier.ts -------------------------------------------------------------------------------- /src/modifierTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/modifierTypes.ts -------------------------------------------------------------------------------- /src/mood.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/mood.ts -------------------------------------------------------------------------------- /src/moonSign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/moonSign.ts -------------------------------------------------------------------------------- /src/overlappingNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/overlappingNames.ts -------------------------------------------------------------------------------- /src/property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/property.ts -------------------------------------------------------------------------------- /src/propertyTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/propertyTypes.ts -------------------------------------------------------------------------------- /src/propertyTyping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/propertyTyping.ts -------------------------------------------------------------------------------- /src/resources/2006/CommaChameleon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2006/CommaChameleon.ts -------------------------------------------------------------------------------- /src/resources/2007/CandyHearts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2007/CandyHearts.ts -------------------------------------------------------------------------------- /src/resources/2008/DivineFavors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2008/DivineFavors.ts -------------------------------------------------------------------------------- /src/resources/2008/Stickers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2008/Stickers.ts -------------------------------------------------------------------------------- /src/resources/2009/Bandersnatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2009/Bandersnatch.ts -------------------------------------------------------------------------------- /src/resources/2009/LoveSongs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2009/LoveSongs.ts -------------------------------------------------------------------------------- /src/resources/2009/SpookyPutty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2009/SpookyPutty.ts -------------------------------------------------------------------------------- /src/resources/2010/Brickos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2010/Brickos.ts -------------------------------------------------------------------------------- /src/resources/2010/CrownOfThrones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2010/CrownOfThrones.ts -------------------------------------------------------------------------------- /src/resources/2010/LookingGlass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2010/LookingGlass.ts -------------------------------------------------------------------------------- /src/resources/2011/Gygaxian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2011/Gygaxian.ts -------------------------------------------------------------------------------- /src/resources/2011/ObtuseAngel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2011/ObtuseAngel.ts -------------------------------------------------------------------------------- /src/resources/2011/StompingBoots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2011/StompingBoots.ts -------------------------------------------------------------------------------- /src/resources/2012/RainDoh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2012/RainDoh.ts -------------------------------------------------------------------------------- /src/resources/2012/ReagnimatedGnome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2012/ReagnimatedGnome.ts -------------------------------------------------------------------------------- /src/resources/2012/Resolutions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2012/Resolutions.ts -------------------------------------------------------------------------------- /src/resources/2013/Florist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2013/Florist.ts -------------------------------------------------------------------------------- /src/resources/2013/JungMan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2013/JungMan.ts -------------------------------------------------------------------------------- /src/resources/2013/PulledTaffy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2013/PulledTaffy.ts -------------------------------------------------------------------------------- /src/resources/2014/ConspiracyIsland.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2014/ConspiracyIsland.ts -------------------------------------------------------------------------------- /src/resources/2014/CrimboShrub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2014/CrimboShrub.ts -------------------------------------------------------------------------------- /src/resources/2014/DNALab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2014/DNALab.ts -------------------------------------------------------------------------------- /src/resources/2014/WinterGarden.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2014/WinterGarden.ts -------------------------------------------------------------------------------- /src/resources/2015/BarrelShrine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2015/BarrelShrine.ts -------------------------------------------------------------------------------- /src/resources/2015/ChateauMantegna.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2015/ChateauMantegna.ts -------------------------------------------------------------------------------- /src/resources/2015/DeckOfEveryCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2015/DeckOfEveryCard.ts -------------------------------------------------------------------------------- /src/resources/2015/Dinseylandfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2015/Dinseylandfill.ts -------------------------------------------------------------------------------- /src/resources/2015/MayoClinic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2015/MayoClinic.ts -------------------------------------------------------------------------------- /src/resources/2016/GingerBread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2016/GingerBread.ts -------------------------------------------------------------------------------- /src/resources/2016/SourceTerminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2016/SourceTerminal.ts -------------------------------------------------------------------------------- /src/resources/2016/Witchess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2016/Witchess.ts -------------------------------------------------------------------------------- /src/resources/2017/AsdonMartin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2017/AsdonMartin.ts -------------------------------------------------------------------------------- /src/resources/2017/Horsery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2017/Horsery.ts -------------------------------------------------------------------------------- /src/resources/2017/MummingTrunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2017/MummingTrunk.ts -------------------------------------------------------------------------------- /src/resources/2017/Pantogram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2017/Pantogram.ts -------------------------------------------------------------------------------- /src/resources/2017/Robortender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2017/Robortender.ts -------------------------------------------------------------------------------- /src/resources/2017/Spacegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2017/Spacegate.ts -------------------------------------------------------------------------------- /src/resources/2017/TunnelOfLove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2017/TunnelOfLove.ts -------------------------------------------------------------------------------- /src/resources/2018/BoxingDaycare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2018/BoxingDaycare.ts -------------------------------------------------------------------------------- /src/resources/2018/LatteLoversMembersMug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2018/LatteLoversMembersMug.ts -------------------------------------------------------------------------------- /src/resources/2018/SongBoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2018/SongBoom.ts -------------------------------------------------------------------------------- /src/resources/2019/BeachComb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2019/BeachComb.ts -------------------------------------------------------------------------------- /src/resources/2019/CampAway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2019/CampAway.ts -------------------------------------------------------------------------------- /src/resources/2019/PocketProfessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2019/PocketProfessor.ts -------------------------------------------------------------------------------- /src/resources/2019/Snapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2019/Snapper.ts -------------------------------------------------------------------------------- /src/resources/2020/Cartography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2020/Cartography.ts -------------------------------------------------------------------------------- /src/resources/2020/Guzzlr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2020/Guzzlr.ts -------------------------------------------------------------------------------- /src/resources/2020/RetroCape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2020/RetroCape.ts -------------------------------------------------------------------------------- /src/resources/2021/CrystalBall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2021/CrystalBall.ts -------------------------------------------------------------------------------- /src/resources/2021/DaylightShavings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2021/DaylightShavings.ts -------------------------------------------------------------------------------- /src/resources/2022/AutumnAton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2022/AutumnAton.ts -------------------------------------------------------------------------------- /src/resources/2022/CombatLoversLocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2022/CombatLoversLocket.ts -------------------------------------------------------------------------------- /src/resources/2022/DesignerSweatpants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2022/DesignerSweatpants.ts -------------------------------------------------------------------------------- /src/resources/2022/GreyGoose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2022/GreyGoose.ts -------------------------------------------------------------------------------- /src/resources/2022/JuneCleaver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2022/JuneCleaver.ts -------------------------------------------------------------------------------- /src/resources/2022/Stillsuit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2022/Stillsuit.ts -------------------------------------------------------------------------------- /src/resources/2022/TrainSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2022/TrainSet.ts -------------------------------------------------------------------------------- /src/resources/2023/AugustScepter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2023/AugustScepter.ts -------------------------------------------------------------------------------- /src/resources/2023/BurningLeaves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2023/BurningLeaves.ts -------------------------------------------------------------------------------- /src/resources/2023/CinchoDeMayo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2023/CinchoDeMayo.ts -------------------------------------------------------------------------------- /src/resources/2023/ClosedCircuitPayphone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2023/ClosedCircuitPayphone.ts -------------------------------------------------------------------------------- /src/resources/2023/CursedMonkeyPaw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2023/CursedMonkeyPaw.ts -------------------------------------------------------------------------------- /src/resources/2024/AprilingBandHelmet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2024/AprilingBandHelmet.ts -------------------------------------------------------------------------------- /src/resources/2024/BatWings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2024/BatWings.ts -------------------------------------------------------------------------------- /src/resources/2024/ChestMimic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2024/ChestMimic.ts -------------------------------------------------------------------------------- /src/resources/2024/EverfullDarts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2024/EverfullDarts.ts -------------------------------------------------------------------------------- /src/resources/2024/MayamCalendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2024/MayamCalendar.ts -------------------------------------------------------------------------------- /src/resources/2024/TakerSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2024/TakerSpace.ts -------------------------------------------------------------------------------- /src/resources/2024/TearawayPants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2024/TearawayPants.ts -------------------------------------------------------------------------------- /src/resources/2025/BloodCubicZirconia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2025/BloodCubicZirconia.ts -------------------------------------------------------------------------------- /src/resources/2025/CrepeParachute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2025/CrepeParachute.ts -------------------------------------------------------------------------------- /src/resources/2025/CyberRealm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2025/CyberRealm.ts -------------------------------------------------------------------------------- /src/resources/2025/Leprecondo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2025/Leprecondo.ts -------------------------------------------------------------------------------- /src/resources/2025/PeridotOfPeril.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2025/PeridotOfPeril.ts -------------------------------------------------------------------------------- /src/resources/2025/PrismaticBeret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2025/PrismaticBeret.ts -------------------------------------------------------------------------------- /src/resources/2025/ToyCupidBow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/2025/ToyCupidBow.ts -------------------------------------------------------------------------------- /src/resources/LibramSummon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/LibramSummon.ts -------------------------------------------------------------------------------- /src/resources/evergreen/Raffle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/evergreen/Raffle.test.ts -------------------------------------------------------------------------------- /src/resources/evergreen/Raffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/evergreen/Raffle.ts -------------------------------------------------------------------------------- /src/resources/evergreen/__fixtures__/raffle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/evergreen/__fixtures__/raffle.html -------------------------------------------------------------------------------- /src/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/index.ts -------------------------------------------------------------------------------- /src/resources/putty-likes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/resources/putty-likes.ts -------------------------------------------------------------------------------- /src/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/session.ts -------------------------------------------------------------------------------- /src/since.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/since.ts -------------------------------------------------------------------------------- /src/template-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/template-string.ts -------------------------------------------------------------------------------- /src/url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/url.test.ts -------------------------------------------------------------------------------- /src/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/url.ts -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tools/parseDefaultProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/tools/parseDefaultProperties.ts -------------------------------------------------------------------------------- /tools/parseItemSkillNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/tools/parseItemSkillNames.ts -------------------------------------------------------------------------------- /tools/parseModifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/tools/parseModifiers.ts -------------------------------------------------------------------------------- /tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/tools/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loathers/libram/HEAD/yarn.lock --------------------------------------------------------------------------------