SCICRAFT: The Dark Photon Protocol — packwiz packs, story system, guides
This commit is contained in:
commit
e6433d3f70
341 changed files with 6990 additions and 0 deletions
247
SERVER_MASTER_GUIDE.md
Normal file
247
SERVER_MASTER_GUIDE.md
Normal file
|
|
@ -0,0 +1,247 @@
|
||||||
|
# SERVER MASTER GUIDE — SCICRAFT: The Dark Photon Protocol
|
||||||
|
|
||||||
|
**NeoForge 1.21.1 (21.1.248) · packwiz v1.1.0 · version 1.0.0**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 1. The Dark Photon Protocol (Lore)
|
||||||
|
|
||||||
|
> In the year 4.2.2.0.5, the universe is burning. The Time Lords sealed a
|
||||||
|
> collapsing star-empire inside a **Dimensional Door** — but the seal is
|
||||||
|
> decaying. The **Void Dimension** leaks entropy into the Overworld, and the
|
||||||
|
> **Deeper and Darker** have begun to answer.
|
||||||
|
>
|
||||||
|
> A single broadcast survives the fall: the **Dark Photon Protocol**, a plan
|
||||||
|
> to stabilize the galaxy by re-binding reality itself. You are the last
|
||||||
|
> engineer of the Second Renegade Flight. Construct the means, master the
|
||||||
|
> sciences of **Mekanism, Applied Energistics and Create**, and re-forge the
|
||||||
|
> photon lattice before the void consumes every world.
|
||||||
|
|
||||||
|
### Objective trees (what the pack asks you to build)
|
||||||
|
1. **Reignite the Ark** — build a base with power (Mekanism turbines /
|
||||||
|
Flux Networks), storage (AE2 / Sophisticated / Functional Storage),
|
||||||
|
and logistics (LaserIO / Modular Routers / Entangled / FastPipes).
|
||||||
|
2. **Walk the Stars** — unlock **Stellaris** rocket tiers; visit Mars,
|
||||||
|
Venus, and beyond through the rocket menu.
|
||||||
|
3. **Breach the Doors** — survive **Dimensional Doors**, recover the
|
||||||
|
**Void Dimension** stabilizer, and descend into the **Deeper and Darker**.
|
||||||
|
4. **The Protocol** — complete the FTB Quests line and KubeJS advancements.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 2. Packs & Directories
|
||||||
|
|
||||||
|
| Path | Contents |
|
||||||
|
|------|----------|
|
||||||
|
| `./server_pack/` | Server-only modpack (137 mod files). No shaders, no client render mods. |
|
||||||
|
| `./client_pack/` | Full client pack (146 mod files). Adds Iris + Sodium (native NeoForge), Cull Leaves, LambDynamicLights, Dynamic FPS, 3D Skin Layers, Visuality, flywheel compat. |
|
||||||
|
|
||||||
|
### Key client-only mods (server must NOT have these)
|
||||||
|
`iris`, `sodium`, `iris-flw-compat`, `cull-leaves`, `lambdynamiclights`,
|
||||||
|
`dynamic-fps`, `3dskinlayers`, `visuality-forge`, `midnightlib`.
|
||||||
|
|
||||||
|
### Bridge layer (both packs)
|
||||||
|
Sinytra Connector + Forgified Fabric API run a small set of Fabric mods
|
||||||
|
(Immersive Portals, LambDynamicLights, Waystones-compat). Do not remove
|
||||||
|
either; the pack will not boot without them.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 3. Install & Update
|
||||||
|
|
||||||
|
### Prereqs
|
||||||
|
- Java 21 (Adoptium Temurin 21 LTS recommended)
|
||||||
|
- ~12 GB RAM free for client, 8 GB minimum for server
|
||||||
|
- Disk: keep under **100 GB** total for world + packs
|
||||||
|
|
||||||
|
### First-time server setup
|
||||||
|
```bash
|
||||||
|
# from this repo root
|
||||||
|
packwiz install --dir server_pack # downloads all mods into server_pack/
|
||||||
|
java -Xms2G -Xmx6G -jar server_pack/neoforge-21.1.248-installer.jar --installServer
|
||||||
|
# accept EULA, then launch:
|
||||||
|
java -Xms2G -Xmx6G -XX:+UseG1GC -jar server_pack/neoforge-21.1.248-server.jar nogui
|
||||||
|
```
|
||||||
|
|
||||||
|
### Adding a mod (both packs)
|
||||||
|
```bash
|
||||||
|
packwiz --dir server_pack curseforge add --addon-id <CF_ID> -y
|
||||||
|
packwiz --dir client_pack curseforge add --addon-id <CF_ID> -y
|
||||||
|
packwiz --dir server_pack modrinth add <MR_SLUG_OR_ID> -y
|
||||||
|
packwiz --dir client_pack modrinth add <MR_SLUG_OR_ID> -y
|
||||||
|
packwiz --dir server_pack refresh
|
||||||
|
packwiz --dir client_pack refresh
|
||||||
|
```
|
||||||
|
- Always add to **both** packs unless the mod is client- or server-only.
|
||||||
|
- For Fabric mods that must run through Sinytra, use
|
||||||
|
`packwiz url add "<Name>" "<URL>" --force` and verify the Sinytra
|
||||||
|
connector tolerates the version.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 4. Server Properties (view-distance=8, simulation-distance=6)
|
||||||
|
|
||||||
|
`server_pack/server.properties` — set these values:
|
||||||
|
|
||||||
|
```properties
|
||||||
|
view-distance=8
|
||||||
|
simulation-distance=6
|
||||||
|
max-players=8
|
||||||
|
motd=SCICRAFT - The Dark Photon Protocol
|
||||||
|
difficulty=hard
|
||||||
|
spawn-protection=0
|
||||||
|
network-compression-threshold=256
|
||||||
|
enable-command-block=true
|
||||||
|
online-mode=true
|
||||||
|
```
|
||||||
|
|
||||||
|
`server_pack/eula.txt` → `eula=true` (after review).
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 5. Recommended JVM Flags (server)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
java -Xms4G -Xmx8G \
|
||||||
|
-XX:+UseG1GC \
|
||||||
|
-XX:+ParallelRefProcEnabled \
|
||||||
|
-XX:MaxGCPauseMillis=200 \
|
||||||
|
-XX:+UnlockExperimentalVMOptions \
|
||||||
|
-XX:+DisableExplicitGC \
|
||||||
|
-XX:+AlwaysPreTouch \
|
||||||
|
-XX:G1NewSizePercent=30 \
|
||||||
|
-XX:G1MaxNewSizePercent=40 \
|
||||||
|
-XX:G1HeapRegionSize=8M \
|
||||||
|
-XX:G1ReservePercent=20 \
|
||||||
|
-XX:G1HeapWastePercent=5 \
|
||||||
|
-XX:G1MixedGCCountTarget=4 \
|
||||||
|
-XX:InitiatingHeapOccupancyPercent=15 \
|
||||||
|
-XX:G1MixedGCLiveThresholdPercent=90 \
|
||||||
|
-XX:G1RSetUpdatingPauseTimePercent=5 \
|
||||||
|
-Dlog4j2.formatMsgNoLookups=true \
|
||||||
|
-jar neoforge-21.1.248-server.jar nogui
|
||||||
|
```
|
||||||
|
|
||||||
|
Notes:
|
||||||
|
- G1 tuning keeps large-tech-server TPS stable under chunk gen (Krypton
|
||||||
|
Reno + BadOptimizations help server-side).
|
||||||
|
- `-Xms4G` avoids early GC churn. Cap at 8G; this pack is RAM-hungry
|
||||||
|
from AE2/Mekanism tick load but does not need 16G.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 6. Shader Tuning for 4GB VRAM (client)
|
||||||
|
|
||||||
|
Shader loader is **Iris** (native NeoForge). Recommended shaderpack:
|
||||||
|
**Complementary Reimagined r5.4** (`client_pack/shaderpacks/`, see README).
|
||||||
|
|
||||||
|
Preset for 4GB VRAM:
|
||||||
|
- Preset: **Fast / Performance**
|
||||||
|
- Render Distance: **8** (server view-distance)
|
||||||
|
- Antialiasing: **OFF**
|
||||||
|
- SSAO: **Fast**, Shadow Quality **1.0x** (0.5x if <30 FPS)
|
||||||
|
- Shadow Distance: **64**
|
||||||
|
- Bloom: **OFF/Low**, Clouds: **2D Fast**
|
||||||
|
- Water Reflections: **Screenspace Fast**
|
||||||
|
- Colored Light / Block Light: **OFF**
|
||||||
|
|
||||||
|
If still under 60 FPS: reduce Shadow Quality to 0.5x, then disable Bloom,
|
||||||
|
before touching render distance.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 7. Mod Feature Hotspots (Quick Orientation)
|
||||||
|
|
||||||
|
| Domain | Mods | Notes |
|
||||||
|
|--------|------|-------|
|
||||||
|
| Power | Mekanism (turbine/boiler), Flux Networks | Flux wireless transfer; Mekanism cables for bulk |
|
||||||
|
| Storage | AE2, Sophisticated Storage, Functional Storage, Sophisticated Backpacks | AE2 for autocraft; Sophisticated for bulk; Functional for drawers |
|
||||||
|
| Logistics | LaserIO, Modular Routers, Entangled, FastPipes, Create belts | FastPipes adds vanilla pipe QoL |
|
||||||
|
| Automation | Create + Steam 'n' Rails + Rechiseled + FastPipes | Flywheel + Iris compat bundled |
|
||||||
|
| Tech Building | Building Gadgets, Hologenica, FramedBlocks, Chipped, Supplementaries | |
|
||||||
|
| Dimensions | Per Spatium/Stellaris, Dimensional Doors, Void Dimension, Deeper and Darker | Stellaris portal → rockets; Doors are the endgame hook |
|
||||||
|
| Mobs/Combat | Born in Chaos, Mutant Monsters, Nyf's Spiders, Better Combat, Simply Swords | Hard difficulty |
|
||||||
|
| UI/QoL | JEI, Jade (+Addons), JourneyMap, Waystones, AppleSkin, IPN, Clumps, Mouse Tweaks | JEI is the recipe source (no EMI) |
|
||||||
|
| Scripting | KubeJS (+Create, +Mekanism), LootJS, Blocks You Need | Advancements & loot live here |
|
||||||
|
| Server utils | FTB Chunks/Quests/Teams/Library | Chunk claims + questbook |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 8. Story System (KubeJS + datapack)
|
||||||
|
|
||||||
|
Lore is code. All story text lives in the **story bible** and is referenced
|
||||||
|
from scripts — never hardcoded. See `STORY_CANON.md` for the full
|
||||||
|
canon, file map, and "add a beat in 5 minutes" workflow.
|
||||||
|
|
||||||
|
### File layout (mirrored in BOTH packs under `kubejs/`)
|
||||||
|
```
|
||||||
|
kubejs/
|
||||||
|
├── startup_scripts/registry_blocks.js # photon_core, photon_fragment,
|
||||||
|
│ # void_stabilizer, quantum_lattice, renegade_glass
|
||||||
|
├── server_scripts/
|
||||||
|
│ ├── 00_lore.js # THE STORY BIBLE (edit here first)
|
||||||
|
│ ├── 01_corruption_tide.js # global Corruption Tide + Lattice re-seal
|
||||||
|
│ ├── 02_events.js # photon buffs, void/darker hazards
|
||||||
|
│ ├── 03_recipes_tags.js # crafting chain + ore/ingot tag unification
|
||||||
|
│ └── 04_loot.js # LootJS: Darker bosses drop Photon Fragments
|
||||||
|
├── client_scripts/
|
||||||
|
│ ├── 01_tooltips.js # hover lore on Protocol items
|
||||||
|
│ └── 02_jei_info.js # JEI "how to obtain" pages
|
||||||
|
├── data/scicraft/advancements/protocol/*.json # 9-node phase tree (non-terminal)
|
||||||
|
└── assets/scicraft/ # lang, textures
|
||||||
|
```
|
||||||
|
|
||||||
|
### The phase tree (not a finale — the Protocol is maintained)
|
||||||
|
1. `root` — The Dark Photon Protocol (on login)
|
||||||
|
2. `first_signal` — recover a Photon Fragment
|
||||||
|
3. `the_core` — press 3 fragments → Photon Core
|
||||||
|
4. `the_seal` — craft the Void Stabilizer
|
||||||
|
5. `the_lattice` — assemble the Quantum Lattice
|
||||||
|
6. `the_legacy` — craft Renegade Glass
|
||||||
|
7. `through_the_doors` — enter Dimensional Doors Limbo
|
||||||
|
8. `the_wound` / `the_answer` / `per_spatium` — Void, Deeper&Darker, Stellaris
|
||||||
|
|
||||||
|
### Global Corruption Tide
|
||||||
|
- Rises +1 every 60s while Doors stay unsealed (global, all players share).
|
||||||
|
- Right-click a **Quantum Lattice** with a **Void Stabilizer** to re-seal
|
||||||
|
a Door: −15 tide.
|
||||||
|
- ≥30 tide: players get `darkness`. ≥60: `darker_threshold` for future
|
||||||
|
spawn ramps. 100 = maximum dark. No fail state — soft escalation only.
|
||||||
|
|
||||||
|
### Reload rules
|
||||||
|
- Server scripts / recipes / advancements: `/reload`
|
||||||
|
- Client tooltips / JEI / textures / lang: `F3+T`
|
||||||
|
- New items/blocks (`registry_blocks.js`): **full restart**
|
||||||
|
|
||||||
|
### Keep both packs in sync
|
||||||
|
```bash
|
||||||
|
rm -rf client_pack/kubejs && cp -r server_pack/kubejs client_pack/kubejs
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 9. Operations & Troubleshooting
|
||||||
|
|
||||||
|
### Server start order
|
||||||
|
1. `packwiz install --dir server_pack` (first time / after changes)
|
||||||
|
2. Accept EULA.
|
||||||
|
3. Launch with the JVM flags above.
|
||||||
|
|
||||||
|
### Common failures
|
||||||
|
| Symptom | Fix |
|
||||||
|
|---------|-----|
|
||||||
|
| "Mismatched mods" on client join | Run `packwiz refresh` both packs, redeploy. |
|
||||||
|
| Sinytra connector errors | Update Sinytra Connector + Forgified Fabric API together. |
|
||||||
|
| Iris black screen | Disable flywheel compat first, then test without shaders. |
|
||||||
|
| Crash on world gen (Deeper and Darker) | Ensure CF 659011 + its lithostitched data load; update both. |
|
||||||
|
| TPS lag from many AE2 cells | Check FTB chunk claims; lower `simulation-distance`. |
|
||||||
|
| Immersive Portals won't load | Must be the Fabric jar added via `url add --force` (Modrinth blocks loader mismatch). |
|
||||||
|
|
||||||
|
### Backups
|
||||||
|
- World: copy `server_pack/world/` (or use FTB Chunks backups).
|
||||||
|
- Configs: `server_pack/config/` mirrors client defaults; keep both in sync
|
||||||
|
when changing KubeJS scripts or FTB settings.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Generated for SciCraft Server · packwiz refresh passing on both packs · 146 client / 137 server files.*
|
||||||
114
STORY_CANON.md
Normal file
114
STORY_CANON.md
Normal file
|
|
@ -0,0 +1,114 @@
|
||||||
|
# STORY CANON — SCICRAFT: The Dark Photon Protocol
|
||||||
|
|
||||||
|
**This is the single source of truth for the pack's story.**
|
||||||
|
All lore text lives here or is referenced from here. Editing the story means
|
||||||
|
editing this file (or the files it points to) — nothing else.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## The canon, in one page
|
||||||
|
|
||||||
|
1. **Dark photons are real.** A fifth force the Second Renegade Flight
|
||||||
|
harnessed. They are the *binding force of the Door* — the pressure that
|
||||||
|
keeps a collapsed star-empire from unravelling back into reality.
|
||||||
|
2. **You are a proto-Time-Lord.** Born with the resonance, never finished
|
||||||
|
training. The signal chose you because only a renegade could read the
|
||||||
|
Protocol the mortals can't.
|
||||||
|
3. **The wound.** The Flight sealed the empire inside a Dimensional Door.
|
||||||
|
The seal is failing. The Void Dimension is the raw wound; the Doors are
|
||||||
|
scar-tissue; the Deeper and Darker is what's *answering from inside*.
|
||||||
|
4. **The job.** Rebuild the **Quantum Lattice** — the Protocol's emitter —
|
||||||
|
and keep it online. The Protocol is never finished; it is maintained.
|
||||||
|
5. **The tide.** Corruption rises while Doors go unsealed (global, shared by
|
||||||
|
all players). Re-seal Doors at the Lattice to push it back. No fail state —
|
||||||
|
just a world that gets darker while you procrastinate.
|
||||||
|
6. **The Doctor connection is atmospheric only.** TARDIS-blue glass
|
||||||
|
("Renegade Glass"), the phrase *Per Spatium*, portal styling. Present but
|
||||||
|
never plot-driving; players who don't care can ignore it entirely.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Where the story lives (file map)
|
||||||
|
|
||||||
|
| What you want to change | Where | Reload |
|
||||||
|
|---|---|---|
|
||||||
|
| Global story strings, tide tuning, dimension IDs | `kubejs/server_scripts/00_lore.js` | `/reload` |
|
||||||
|
| Item/block names + advancement titles/descriptions | `kubejs/assets/scicraft/lang/en_us.json` | resource reload |
|
||||||
|
| Player messages (tide warnings, signals) | `00_lore.js` → `scicraft.phrases.*` + `en_us.json` | `/reload` |
|
||||||
|
| Item tooltips (hover lore) | `kubejs/client_scripts/01_tooltips.js` | `F3+T` |
|
||||||
|
| JEI info pages | `kubejs/client_scripts/02_jei_info.js` | `F3+T` |
|
||||||
|
| Crafting chain / gating recipes | `kubejs/server_scripts/03_recipes_tags.js` | `/reload` |
|
||||||
|
| Corruption tide logic | `kubejs/server_scripts/01_corruption_tide.js` | `/reload` |
|
||||||
|
| Player powers / void hazards | `kubejs/server_scripts/02_events.js` | `/reload` |
|
||||||
|
| Boss → Photon Fragment drops | `kubejs/server_scripts/04_loot.js` (LootJS) | `/reload` |
|
||||||
|
| Advancement phase tree | `kubejs/data/scicraft/advancements/protocol/*.json` | `/reload` |
|
||||||
|
| Advancement reward loot | `kubejs/data/scicraft/loot_tables/protocol/*.json` | `/reload` |
|
||||||
|
| Item & block definitions (ID, texture, stats) | `kubejs/startup_scripts/registry_blocks.js` | **restart** |
|
||||||
|
| Textures | `kubejs/assets/scicraft/textures/{item,block}/*.png` | `F3+T` |
|
||||||
|
|
||||||
|
> **Golden rule:** `00_lore.js` is the bible. If you add a new story beat,
|
||||||
|
> put its strings there first, then reference `SC.<path>` from the other
|
||||||
|
> scripts. Never hardcode lore text in a script body.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Adding a new story beat (5-minute workflow)
|
||||||
|
|
||||||
|
1. **Edit `00_lore.js`** — add your phrase to `phrases`, or your item to
|
||||||
|
`items`.
|
||||||
|
2. **Add the lang key** to `en_us.json` (same key you used in `Text.translate`).
|
||||||
|
3. **If it's a new item/block**: add to `registry_blocks.js` + run
|
||||||
|
`tools/gen_textures.py` for a placeholder texture. This step needs a
|
||||||
|
**full restart**.
|
||||||
|
4. **Add a tooltip / JEI page** if it's a carried item.
|
||||||
|
5. **Wire the beat into the tide** (if it's an event) or into a recipe
|
||||||
|
(if it's a gated item) or into an advancement JSON (if it's a goal).
|
||||||
|
6. **Sync to both packs:**
|
||||||
|
```bash
|
||||||
|
rm -rf client_pack/kubejs && cp -r server_pack/kubejs client_pack/kubejs
|
||||||
|
```
|
||||||
|
7. Reload: `/reload` (server scripts/advancements/recipes) or `F3+T`
|
||||||
|
(client assets/tooltips). Startup item changes require a game restart.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Adding a new advancement node
|
||||||
|
|
||||||
|
Copy `data/scicraft/advancements/protocol/the_core.json` and change:
|
||||||
|
- `"parent"` — the node before it
|
||||||
|
- `"title"`/`"description"` — lore text (also add the matching
|
||||||
|
`advancements.scicraft.protocol.<name>.title/.description` keys to `en_us.json`)
|
||||||
|
- `"criteria"` — the trigger (inventory_changed / changed_dimension / tick)
|
||||||
|
|
||||||
|
Rename the file `<your_node>.json`. The tree is non-terminal: the Protocol
|
||||||
|
is maintained, not completed.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Verified IDs (do not guess these — they were checked against the jars)
|
||||||
|
|
||||||
|
| Thing | Correct ID |
|
||||||
|
|---|---|
|
||||||
|
| Limbo (Dimensional Doors) | `dimensionaldoors:limbo` |
|
||||||
|
| The Wound (Void Dimension) | `thevoiddimension:overworld` |
|
||||||
|
| The Othersides (Deeper & Darker) | `deeperdarker:otherside` |
|
||||||
|
| Stellaris moon | `stellaris:moon` (mars/venus/mercury likewise) |
|
||||||
|
| Warden | `minecraft:warden` |
|
||||||
|
| Mutant Zombie / Skeleton / Enderman | `mutantmonsters:mutant_zombie` / `mutant_skeleton` / `mutant_enderman` |
|
||||||
|
| Born in Chaos Dark Vortex / Dread Hound / Nightmare Stalker | `born_in_chaos_v1:dark_vortex` / `dread_hound` / `nightmare_stalker` |
|
||||||
|
|
||||||
|
When in doubt, verify against the installed jar before writing an ID into a script.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## TODO — future story beats (drop in whenever)
|
||||||
|
|
||||||
|
- [ ] New Doors: a "Door network" that opens/closes on a schedule, each
|
||||||
|
carrying its own phrase in `00_lore.js`.
|
||||||
|
- [ ] Star fragments: Stellaris planets each recover a named fragment
|
||||||
|
("Mars shard", "Venus shard") → new advancement nodes.
|
||||||
|
- [ ] Lattice upkeep: it slowly *consumes* Photon Cores while powered;
|
||||||
|
running dry raises the tide (ties tide to real infrastructure).
|
||||||
|
- [ ] Final "The Legacy" tier of Renegade Glass builds that hum — block
|
||||||
|
interactions that whisper one `scicraft.phrases.*` line.
|
||||||
|
- [ ] FTB Quests questbook mirroring the advancement phases.
|
||||||
835
client_pack/index.toml
Normal file
835
client_pack/index.toml
Normal file
|
|
@ -0,0 +1,835 @@
|
||||||
|
hash-format = "sha256"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/assets/scicraft/lang/en_us.json"
|
||||||
|
hash = "a70cab08a74a2c77ca5312960fba6c51dab08d1fd5a6cbe5166987b66a39cb4e"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/assets/scicraft/textures/block/quantum_lattice.png"
|
||||||
|
hash = "c395b6e3c45cc3313c754c3451688990ce1a1199a05e8d03fb817b86ff1add81"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/assets/scicraft/textures/block/renegade_glass.png"
|
||||||
|
hash = "5fc2918b6e7ab3a654afc8cfe442f6cc1346acc3fadebc9a15790b44d31a4c9f"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/assets/scicraft/textures/item/photon_core.png"
|
||||||
|
hash = "570aef9ed9b12d2742790a0c4c2f6a1f0471f182cc3e357756aa3d23d2b5e332"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/assets/scicraft/textures/item/photon_fragment.png"
|
||||||
|
hash = "8cca8f9112faff47d1ca0726ee793869de19da8646166a5cda14a1628b67b203"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/assets/scicraft/textures/item/void_stabilizer.png"
|
||||||
|
hash = "52b18e603aa0eaf9a900159a24fabbe24f594ada7595a26c1265b77701d8e682"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/client_scripts/01_tooltips.js"
|
||||||
|
hash = "3f8428b0534849c4deadab3ecfd3087bdf6a6d6b6a4b627d7af11735a6801028"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/client_scripts/02_jei_info.js"
|
||||||
|
hash = "3ce61a3cb56d3ef02284f492bcdbb0a61adf1c9e6ad617b6f11c7065346db531"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/first_signal.json"
|
||||||
|
hash = "95baebfb7af606fc07e9a7cb79d6febdd5dd84054f93a6a07bf770ee52a1c321"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/per_spatium.json"
|
||||||
|
hash = "fa1105e9de8a8670844f06e2b282ff51f1d8f8e12daefbaec873275a1662915c"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/root.json"
|
||||||
|
hash = "aba1bda08e8060751022e9cf23838d2af2a0fd8810585f06ff6e87d188c2688e"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/the_answer.json"
|
||||||
|
hash = "109b345647b946e891dabead57cd8b4b1270d99d17b288afa2fc44070e12fa9a"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/the_core.json"
|
||||||
|
hash = "1dc7c6fc6b4f9eb3662ea61d2ea39b7b55d12d1b0123330d69f6ecbd828fa3ba"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/the_lattice.json"
|
||||||
|
hash = "5a5293806aba5c81bbfacd8c3f35c0bb3e151832cf916ed9696cbd1b5a1a3542"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/the_legacy.json"
|
||||||
|
hash = "bf9db761224b544c57105455673329fb4ed360d2d839af2b38a2201a53c68270"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/the_seal.json"
|
||||||
|
hash = "4f44df1c2c9c5ad1016eca3bb08196881142aaa3b4a9dc17bfe0d7f8f7996d49"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/the_wound.json"
|
||||||
|
hash = "439d2dc320914b2e3bebd0bccec3f7747f0e5f944d6e3285654e97bb6b2b9b92"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/advancements/protocol/through_the_doors.json"
|
||||||
|
hash = "3384d50c04049f3a560c3a5b8190d387c4cf017ad04cebd69ba041190b327fa7"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/data/scicraft/loot_tables/protocol/root_reward.json"
|
||||||
|
hash = "510aaa143b814db531dda8fc094c2d9a5f589c83b23eb174e6301218b58101e3"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/server_scripts/00_lore.js"
|
||||||
|
hash = "b13887d3751908dda093ac69b01e63e91d3567d72df92009574fc9eaf618c9a7"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/server_scripts/01_corruption_tide.js"
|
||||||
|
hash = "b6449e6563a7d4c7b9a95abe5b493ab327e57f01c63147a9ecd8126974c4c045"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/server_scripts/02_events.js"
|
||||||
|
hash = "dc3ce6421a8514426452d699a80e99e66c6e746c958da54b88a859802f6b85fc"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/server_scripts/03_recipes_tags.js"
|
||||||
|
hash = "f5e960be1f4f765e34fb327ff01a5fef19839f8b1e71107453868460e25133d6"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/server_scripts/04_loot.js"
|
||||||
|
hash = "67f3bf8b9bc1b2e896e88994b7dcbd9608cd745a99163f0466900d01752b53e9"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "kubejs/startup_scripts/registry_blocks.js"
|
||||||
|
hash = "4ebe3f61b7d7add177a6672ff6e31f7511e66050a31852650043cefbbe168aa7"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/3dskinlayers.pw.toml"
|
||||||
|
hash = "c1f98a1e9d7201f0b6ddc3f705f43a53f7539978f48425de5c1177a310fe7b86"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/adastra-stellarview-compatibility.pw.toml"
|
||||||
|
hash = "dc67b46734649bbf382a22dcae1522cf65ab1450d2029b62b9878aba1b41e300"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ae2-import-export-card.pw.toml"
|
||||||
|
hash = "f9ff125ddfd2d8e83e17b3cc87771c679ba4ba5f657661568d464c43f9c886ff"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ae2-qol-recipes.pw.toml"
|
||||||
|
hash = "0bd11ad5856e558c44060185154083447a3e940b06be350625d862749b9409a0"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ae2.pw.toml"
|
||||||
|
hash = "ed45c352a49b65c7221e57d979d0c6935522dfef4968aa5b7421f4d3e670ce40"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ambientsounds.pw.toml"
|
||||||
|
hash = "d5282b7a148f4fda7d1399815ee270f89a03ce8dcac67c848c64d0d0a1691671"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/appleskin.pw.toml"
|
||||||
|
hash = "716d930feff599bf9ce732e05979fbae8025dc8a3c13ccf4f1cb207a70883bc6"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/applied-energistics-2-wireless-terminals.pw.toml"
|
||||||
|
hash = "0b00e3fcc86a4ab7744269fc576bb23180a29dc0e44954511907a8b5386e3f53"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/architects-palette.pw.toml"
|
||||||
|
hash = "ffa80ab737db677474192e7f09f6b1daff0276e2e15c375b332feb3015376580"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/architectury-api.pw.toml"
|
||||||
|
hash = "657a01a86bbf8617e4726c77df08f708e43a3db12db74b837eebd8eb1d93faae"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/athena-ctm.pw.toml"
|
||||||
|
hash = "f54cf71372645810ce22b0ba68e706139565437150e4cfd22bde4c14606099c4"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/badoptimizations.pw.toml"
|
||||||
|
hash = "dd56ff2bcc4253d1d70c08333632743fb56cdc4cf5518dc6afc024164633145d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/balm.pw.toml"
|
||||||
|
hash = "7dba9a4a9894a6bbab3a8c7edcc718499297412247fc0e8ccebf75b760c85140"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/bellsandwhistles.pw.toml"
|
||||||
|
hash = "e1f4a53e3e52b534add5dd018597fefd345d9bd6350b9c46ef0ec281fc62af8e"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/better-combat.pw.toml"
|
||||||
|
hash = "438170e7e704a1b8ed67bf0521dc5d77cdeeaabf6f729dba9f8dfdad75330acf"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/blocks-you-need.pw.toml"
|
||||||
|
hash = "a835e85294f2c54acc360c5b4eecb0a6305c0ad5933a5e8ddaa04d1923093f58"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/born-in-chaos.pw.toml"
|
||||||
|
hash = "4a7d85fc2f67432dad21dd3b316a557ff73d1b4992a54cc1e0877d2ae0c8207a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/building-gadgets.pw.toml"
|
||||||
|
hash = "88908286eebea979713b5626891f634317fcc4c5a5bd4ec0c9444a33863a4518"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/chipped.pw.toml"
|
||||||
|
hash = "24c6c3fe917ffbcef04e788dec3e003d0ed03433bc00f9cf4f23fe9b85636aa7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/cloth-config.pw.toml"
|
||||||
|
hash = "75181b55e0407d1fca1e2f346c6501f919f5109545990ddfb66db9cd1b771f8a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/clumps.pw.toml"
|
||||||
|
hash = "2acaff560bbda5741538528a2967355ec86a8f7564adba0b2316989c66892374"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/connected-glass.pw.toml"
|
||||||
|
hash = "ba633190e61bd7b32e412cb628a83fdd09b53b7ef8a036f1669687c719a99cc2"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/connector.pw.toml"
|
||||||
|
hash = "a38d72ca403e9064338be6e0cf69532768b0c1aba8f88703a8ce74c2734da522"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/copycats.pw.toml"
|
||||||
|
hash = "e002fab16a9b9ef0a35844030339612a38d3c58b0b93e97a34eb43ddc9108be7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/cosmetic-armor-reworked.pw.toml"
|
||||||
|
hash = "b65ee01fec17228645121952de6dec75053b0b4c59a8c8036d6fa7829819f3f9"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-aeronautics.pw.toml"
|
||||||
|
hash = "d438d05c61167c95de2b282bb3839a290f819f70c9d313c5e61177d69a29c704"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-big-cannons.pw.toml"
|
||||||
|
hash = "a0e9ff95570cd9af3374ca8b44aa095447baf94e565f46ae99819d52a9b48dc1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-central-kitchen.pw.toml"
|
||||||
|
hash = "7a7eeb96f8cf82768269855ff837c07fa75daf32a6f560d85f2bf901402d70d3"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-connected.pw.toml"
|
||||||
|
hash = "61afa588fd3156a29418aef463c527308b014e72d86b5ca7c03f2f28973ca27a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-deco.pw.toml"
|
||||||
|
hash = "67a405e6307f900d168deaa954a4309c3b44a6025e4efd7b8e774b6f9d3a69cd"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-design-n-decor.pw.toml"
|
||||||
|
hash = "e05bc0c3ee97da0dfcf9dabd3c3eaee0e90819091ead3f500ddc3b1caf77fe54"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-diesel-generators.pw.toml"
|
||||||
|
hash = "456f66abd180b3f5765473cda5e8acb1a6ea8b15b7ee34442be9a7af414cfc63"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-dragons-plus.pw.toml"
|
||||||
|
hash = "80547db2ebfc71d0d649534fe6fee7dabcf2a58770e8ff38218f6db874382204"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-dreams-and-desires.pw.toml"
|
||||||
|
hash = "c308b557b01b6e6cc25ee8d6a1a7c78bca2b71be3ae645e40d10cf25259fabcd"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-enchantment-industry.pw.toml"
|
||||||
|
hash = "0ae5b9a5883e79282ad756ea205f3fa1af11ced75bb4ba5b74e3d32e1ea684c9"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-goggles.pw.toml"
|
||||||
|
hash = "5de2bbab0826b5241e16746b0b739ca5169b0a9df38181d58e8519e6ea7f535f"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-jetpack.pw.toml"
|
||||||
|
hash = "157b009cd9b2a7f55f2b7d0abdc2f9f7d49eade208a786c71cc6d2f8430bba4a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-mechanical-extruder.pw.toml"
|
||||||
|
hash = "6e064a3988937e06dfa307c8c395c73461819f9135197bc30563c6f13d1f1da4"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-new-age.pw.toml"
|
||||||
|
hash = "39499039e11a6e0f50542d80af94c172342fdb686f3a59d5ee4457d978a54e75"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-ore-excavation.pw.toml"
|
||||||
|
hash = "10d3389f72e8e8f78518f5b6786ccec4e62dbad117491d2970e8e1f75e390251"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create.pw.toml"
|
||||||
|
hash = "dcaf5f2e28db0b9a127d0167456832341045ddc9aec058c3d9fcf53f618d2404"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/createaddition.pw.toml"
|
||||||
|
hash = "5931025bb6c50fa9064bd6c3c3ca51afb4119535bd77d8cc01b6509e53a9abc1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/creativecore.pw.toml"
|
||||||
|
hash = "e85b645ee93f88915be1e4ab421939f287accf3597cef9e69cc603a9773a6855"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/cull-leaves.pw.toml"
|
||||||
|
hash = "a9b9623c952949837c1c6827b94b5969241c44825483a901cad12fcda12d40e9"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/curios.pw.toml"
|
||||||
|
hash = "36debf7653e95a855b4fedacc19027cf2e01960fc0b6d55ef2ffbffbcb455690"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/deeperdarker.pw.toml"
|
||||||
|
hash = "ebb3df18070c94169933965dc6ef11ea68adb2b362623417e6b129f0af9a1bbe"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/dimensionaldoors.pw.toml"
|
||||||
|
hash = "f97c3a8f1346a9d4ffc36e7223b03b4abf0f657319145b9517d944184ae4839b"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/dimensionfixer.pw.toml"
|
||||||
|
hash = "b557d04a294edc95dadefa0612b074174f0a46f2952cf3e52132bf90994d5420"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/dynamic-fps.pw.toml"
|
||||||
|
hash = "e2a3aca8101a179153b92e99000a10d06e4b5d285d358fbe457a53690d12dab5"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/entangled.pw.toml"
|
||||||
|
hash = "019d7c110e2fcf7c908d4f58c7abd29ac2adbd20631fa63d77cb35d8dd6c2a45"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/entityculling.pw.toml"
|
||||||
|
hash = "4fbe037c1ec3570be84f68e075c3e8293b15f64dda22bca4735924705fb38236"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/every-compat.pw.toml"
|
||||||
|
hash = "ad90b35d953694bdd8f8f1efa7b05415686155760ec3def1ff69e26eb21341aa"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/extended-ae.pw.toml"
|
||||||
|
hash = "03494a76b42b1b79e4d36a93317b8e884cafdb7e08f6103ce47ecd4e4df57645"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/extendedae-plus.pw.toml"
|
||||||
|
hash = "b1dca93f457735eb70a6ffc2ceb7370471c31b0843b7694e9f1c0ede82991344"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/fast-pipes.pw.toml"
|
||||||
|
hash = "cba3a159eefb0e3c370bf6c8e1e78c9e17b85cdf8d2e77296ec4e38bdfe02f89"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ferrite-core.pw.toml"
|
||||||
|
hash = "73360e397134d238ee8fd21d33fd7f9275e9441f74f8f1b6ed92278877c0b9f1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/flux-networks.pw.toml"
|
||||||
|
hash = "ad8209e472d463c9fcd19ca708fcd9c1a4a1bc69c9f0ca22efeacb414e9ab7a8"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/forgified-fabric-api.pw.toml"
|
||||||
|
hash = "e3c62164f1eed254aa04629bce3d62b34a65bf15801d2ffb1bf1373a0b97c544"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/framedblocks.pw.toml"
|
||||||
|
hash = "20eee73cffcd55bfe041b16bbc3adc64c38859bf928486bf1db1368b6dba2058"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ftb-chunks-forge.pw.toml"
|
||||||
|
hash = "0922cfee3b7351e62fb22ccc6e5a59f35fd99fe80737dc861ada3b5407ecdf87"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ftb-library-forge.pw.toml"
|
||||||
|
hash = "276e79d919c3a698ab2881d784544b7e60bef69b43f44808353bb65d38633cb3"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ftb-quests-forge.pw.toml"
|
||||||
|
hash = "086f7c19410ca8759aa383671a5229a47b9dae71a31bcc286e12cd1af1e5008d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ftb-teams-forge.pw.toml"
|
||||||
|
hash = "e717bb275a54a5caadaa7cf82bc34df3589f49402074adf93c31eaac43860313"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/functional-storage.pw.toml"
|
||||||
|
hash = "55c21e0159f5509b84d1e1fa42c2e478a3600c43007ede829cad5839aaa1b8da"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/fusion-connected-textures.pw.toml"
|
||||||
|
hash = "c8c107f100252cb671a295df94432980e9b5d8c496c0fd196fda428a48932ef2"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/fzzy-config.pw.toml"
|
||||||
|
hash = "f9c118b7a66238a7f9e052705e82402e57c7a5b753d62d679b94701ede479752"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/geckolib.pw.toml"
|
||||||
|
hash = "65ac18556f91ebb4f303a39731e93e94ffa94ddc690b0fbf35346bdcb3b05919"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/glodium.pw.toml"
|
||||||
|
hash = "8b30d03470cc27030f42b6719cdb8975f163ed336fc8592f0277a4291bb08aec"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/guideme.pw.toml"
|
||||||
|
hash = "f7448243d61c3e7c5941896816afb91dd069cef492a2d93ceba9f48e391cdf44"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/handcrafted.pw.toml"
|
||||||
|
hash = "d573695d37296209dc06495d359c4b283ffa6640bcfe8aa9c9b59eb420891788"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/hologenica.pw.toml"
|
||||||
|
hash = "9b04b12cb6bf0a1222a6a4649c45c3a725154a8cf8d4f0163514279cbf7aae15"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/immediatelyfast.pw.toml"
|
||||||
|
hash = "6828b28c310ae427da625473c55b79eb0c7ca42acc76591948644af0c04e3933"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/immersive-portals.pw.toml"
|
||||||
|
hash = "21a062a4ead05d4bbb5c1732b67b861db82dec90ab83df8af261d344699db72e"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/interiors.pw.toml"
|
||||||
|
hash = "e7e6b3effe3022cf1fdb900c857111fdcbfd6b385c2d5bd28c914efaed436ecb"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/inventory-profiles-next.pw.toml"
|
||||||
|
hash = "ab503e89461dff879ee793253e173625b6ab868f570a371323ef725e567cf5ea"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/iris-flw-compat.pw.toml"
|
||||||
|
hash = "ed85b2ed42beb6523223eef6f0ae397ed29f8059b2bf5aa08d8598de04865614"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/iris.pw.toml"
|
||||||
|
hash = "db1c1e6382878b78e994dba1b9026935f8d1c5ca685c89d2437858e0a0dcab58"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/jade-addons-forge.pw.toml"
|
||||||
|
hash = "8cd8400cb4e2c5ba60c8a359a7b6ff501078d2056eab0aba7f6b0ac77b7a0694"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/jade.pw.toml"
|
||||||
|
hash = "4de3e4a1a49e332c1ad313283e0403c4273b628d634c17a9ff0c9da3d6b67f9a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/jei.pw.toml"
|
||||||
|
hash = "1eb4094b466679316208fa85e5a855fc71945cfd639ff7f831586452b0cc3ad3"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/journeymap-integration.pw.toml"
|
||||||
|
hash = "f161cd39e3619182a8606ec812634d74713d32ca30c3585bdf7d40b7bb573919"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/journeymap.pw.toml"
|
||||||
|
hash = "17ed80a0fb8716e279cb04664a7038cfa659f878e51915b61fcd7dd35a7920be"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/just-enough-mekanism-multiblocks.pw.toml"
|
||||||
|
hash = "456dcdd6c4c172612713b59ebd871703b10aa00366cac0792d2d2da0951db2df"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/kotlin-for-forge.pw.toml"
|
||||||
|
hash = "712a69b3569a8055979de6eea262068535fe182dffb3833e53e5833e9cbf9766"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/krypton-fnp.pw.toml"
|
||||||
|
hash = "5a96006110f4cdd98460a994373153909a5f0bf6cb68c5ac3a64adbda86eb302"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/kubejs-create.pw.toml"
|
||||||
|
hash = "531aa276b74eabc24566c57412527767238c74ee16b9c646dff511f56dba990c"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/kubejs-mekanism.pw.toml"
|
||||||
|
hash = "828f12a754a929bf2e955cf9d0acca4cbe305f172e94c556fe9b0704bcaff7e0"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/kubejs.pw.toml"
|
||||||
|
hash = "99bea71046529d65463fc12acb505ab363c91133ebbcc1d976e49a5d33150702"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lambdynamiclights.pw.toml"
|
||||||
|
hash = "b85d562b35f68cdbb0f79bbdebc11cb938002c727d9f982ed5743c8488c74ac7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/laserio.pw.toml"
|
||||||
|
hash = "0d7ce37fd00f170025118f0e3fbeef7f4e7147c332b1a5a4e924950eb5e36bc0"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/libipn.pw.toml"
|
||||||
|
hash = "0d2a00252d64ed7d2d9b19994f7accb780304be61f3903d36e810714b414c6cb"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lithostitched.pw.toml"
|
||||||
|
hash = "b44ca90546d8fbf059a68aa34ed1106825fb99b8e1570d1edc16bec38af8a0e8"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lootjs.pw.toml"
|
||||||
|
hash = "9b32e1374a3d85ccdd4803c8932f72fbeb6357e69d895980e3f24e1974a07ca6"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mech-trowel.pw.toml"
|
||||||
|
hash = "2c31453e756e64c0f9edcad1f716900ddd07b1ea4c8c955a2d001725c65366c1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mechanicals-lib.pw.toml"
|
||||||
|
hash = "c9e181185e3177d43fc9bd8d919288ac1bc0ce6b85e7049890f3eb231f5be10d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mekanism-additions.pw.toml"
|
||||||
|
hash = "086e5173f9d4dd76196a67e6604b5787b5f17312a6c3db49b1651fe2d972fe16"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mekanism-covers.pw.toml"
|
||||||
|
hash = "8330f1d99526fb1952ca5bc3b524f65bf12295a7795803e4c7024d51dbe21df1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mekanism-generators.pw.toml"
|
||||||
|
hash = "0ec2ceb5602df266d2e07bdc0bc409cdd3d325a6b5136554787779cdf8057a27"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mekanism-tools.pw.toml"
|
||||||
|
hash = "efafea92ef966ffe7c3c31209b643a9bbcccb3a8a5a02347b49ff50e015980fe"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mekanism-unleashed.pw.toml"
|
||||||
|
hash = "3b581d5b1f00597a27c366f82cfe9a3f3e311c233e7e03a54403de752c4fb3c7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mekanism.pw.toml"
|
||||||
|
hash = "42061fd570a0b7a8063c0860056c6391593190caa0f12d3b49105e52a56817fe"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mekanism_extra.pw.toml"
|
||||||
|
hash = "adff0484ffea891ba8da3b92d2ec5c0a4bd53f9f83a903e54299e9718b81cf64"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mekanismmoremachine.pw.toml"
|
||||||
|
hash = "4f9a3e248ed5d5b622df3375d0336b76301f55aa2d8877352cf85a2b1b462a04"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/merequester.pw.toml"
|
||||||
|
hash = "8f638da7fdf14f7c9cdc0687f7cae53e020736ab8a3b92e9c3fe123a212e1550"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/midnightlib.pw.toml"
|
||||||
|
hash = "73aba17132f267dd76ff682aa84abfb7c09d25a93b9220ee261a1e25337bebc7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/modernfix.pw.toml"
|
||||||
|
hash = "6d3ff3b7bbcc97fa06bdddcf2b3b7646168497ba6d7104bdea376f1bc65f9a93"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/modular-routers.pw.toml"
|
||||||
|
hash = "bbd0fee939a90c478aa404630629a49ab764ab7dd48ca6c9b928889769c32a89"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/moonlight.pw.toml"
|
||||||
|
hash = "6e9d9c2c85d3f2c41f93f77d1f7bb9efe518368348ce8bcd82e7a8128a281c72"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mouse-tweaks.pw.toml"
|
||||||
|
hash = "2bdee19bd39b4bd411d7c858a7978ca9d2bdda41c1cf15920ea6be0014663f79"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mutant-monsters.pw.toml"
|
||||||
|
hash = "56aaa078a6f7ee61eef9c6f3685ff44618bb2565d7d0ccd39c723a2659295e58"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/nyfs-spiders.pw.toml"
|
||||||
|
hash = "10e2d5565e299d0fafa79e7c949961bf692d9a15b5de146b2905ea7df0987d29"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/per-spatium.pw.toml"
|
||||||
|
hash = "557c7470f6fa151d176e684154b22ea9a53b80f57070a8ae6eeccf771f336cab"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/playeranimator.pw.toml"
|
||||||
|
hash = "93284ca7f2f23f0bb76d42b797cabf2aea1914ee9825bec82bf6ffe4c60dda0d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/puzzles-lib.pw.toml"
|
||||||
|
hash = "6a07261762a29c6108ea6030ec71ff6801e03127a0004cf105490004c77eacf5"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/rechiseled-create.pw.toml"
|
||||||
|
hash = "f7758221468760a7d22b31f97e822f5a66fa1fa21d2c8b4b3bb21ca01faff3cd"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/rechiseled.pw.toml"
|
||||||
|
hash = "55fcb8b7508262d7e384f81dc86c0cf0c28ec98194d2dd842208b96291931c0c"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/reintegrated-chipped.pw.toml"
|
||||||
|
hash = "ec3c9e001964a1aabe955d4ca267eca4c2819fddb89a99fc8cc0050b0dfecb14"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/resourceful-lib.pw.toml"
|
||||||
|
hash = "aa83553db30adc47f86010f6443340251323a62ee3f9415a0c4332cb6d502419"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/rhino.pw.toml"
|
||||||
|
hash = "e55ca32b338a0e0540f4fec5170675d860566255ae0f45692a00cb4ebf2eb535"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/rpl.pw.toml"
|
||||||
|
hash = "7815e5a589de0c02a62ae83590e1f75f4d0c269e48f2435ce2ac448976ddf49f"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sable.pw.toml"
|
||||||
|
hash = "a1fa121ed5d0207e4cdd3f545d043f68f9a4bb38dcb21278b968fad5e4cefe4a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/selene.pw.toml"
|
||||||
|
hash = "ddcc2fd889f5bd73c2b3c8c9f5b798cc26c0c5b6c068da264ffa44bb401a0cf7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/simply-swords.pw.toml"
|
||||||
|
hash = "1d37ac39109aa15d03a3a7ddf6402d63f72277acafca53f61830046acfe6edb0"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/simply-tooltips.pw.toml"
|
||||||
|
hash = "320d755339086e8fb35709328ad7b094ecbf7c500d61c08c535ec7d277fe1053"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sinytra1343.pw.toml"
|
||||||
|
hash = "1c2403fb1d6f300a6b752f2ee87bad66f17e044a17ed31fcd0ac927b8c8427fa"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sinytra_crash_fix.pw.toml"
|
||||||
|
hash = "8efd7344f0486599a9dc61f2dc27e83a2ce748aa1f5415d9754cce6fe4f3c48e"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/slice-and-dice.pw.toml"
|
||||||
|
hash = "83a7b840686a417dfe1161ee5cd918989dd2d901c9013bf85e93a30f597260f7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sodium.pw.toml"
|
||||||
|
hash = "8b237735f64f339d35d40eaceb76cdf137fd05a49b452d2a8c3434cada762e11"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sophisticated-backpacks.pw.toml"
|
||||||
|
hash = "41343a364eeff7106d903f2bb658b91ae8b0ce216ddba103e1be5edb1a27649f"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sophisticated-core.pw.toml"
|
||||||
|
hash = "9ee0490b06b36ba9bff93af9f75493f3dd4e71a1ab8ce4ee778ee5fdb11eb49c"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sophisticated-storage.pw.toml"
|
||||||
|
hash = "3868fd30c966597162d2d107719d2c6a7a1f592c98634d4c7c6b463dedbb85fe"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sound-physics-remastered.pw.toml"
|
||||||
|
hash = "b9d4d42709629f2d52cb9d33bedf298bbea635b53f69946f9ec2735c47dfbd83"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/stellar-view-mixin-renderer.pw.toml"
|
||||||
|
hash = "5f34670b690b3a34f3d001fbbf2fc61ae401b920a468db2dd7cc968185202402"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/stellaris.pw.toml"
|
||||||
|
hash = "06094f9d641eca3fad232ff9e2c615e323a9a689e15b2c558ebe33a27c59f4c8"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/stellarview.pw.toml"
|
||||||
|
hash = "3792d649d29e5c684218283dcb787cca922ac74524730ae04118768aaed5cccf"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/supermartijn642s-config-lib.pw.toml"
|
||||||
|
hash = "2e42245826ce70d4ad673addb0e5244da388841f1484f03ee5a9426ee33b2229"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/supermartijn642s-core-lib.pw.toml"
|
||||||
|
hash = "d50dfa866f719fe606d34bb81b0e466c1e6017878fa6b58b405e419ceaf9ee0d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/supplementaries-squared.pw.toml"
|
||||||
|
hash = "46280c9487633e3bd1dd7bb24ccc4076058b2602d7dc2906f96509527346cf24"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/supplementaries.pw.toml"
|
||||||
|
hash = "2a2b9478b96d83d7ab8d62f17a4acc68332df7efaecad3b584f781b589a22228"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/the-doctor-who-client-mod.pw.toml"
|
||||||
|
hash = "70d2a05e137cbcf2c6626a9f0bb0ac211e910f7a0d4934e04e0e8f2f4aeffb88"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/thevoiddimension.pw.toml"
|
||||||
|
hash = "41d3d7c6960b26b3f26eb532a3499c71ae976d2e434732d88e0ca56f7fd3b376"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/titanium.pw.toml"
|
||||||
|
hash = "7830a79862c572434679f36377d3bd985a11a6ccb508d8f1911138138e647a4c"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/visuality-forge.pw.toml"
|
||||||
|
hash = "3d907a6ec6e27ba52d9f8f062216b56aef39e586a4e673cfbb70dbe12671ec61"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/waystones.pw.toml"
|
||||||
|
hash = "18755836fe5817992e8f52bdb1d42857e85a41a7a19287b04d63a072006931b5"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/worldportal.pw.toml"
|
||||||
|
hash = "5a4ae7824648c6b90b67dd6d913b5516f8ea180f72ac83d6c810293bcb535f06"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/xaeros-minimap-world-map-waystones-compatibility-forge.pw.toml"
|
||||||
|
hash = "637bc567eb5260d55ce89e6471c31e4369d454607f3d6f40139f7f7bdef90af9"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "shaderpacks/README.md"
|
||||||
|
hash = "28abbd2f7005b8c65fd1d1bae88aa47f05ffdcebd4339c23a1102a2ae46b3bf0"
|
||||||
32
client_pack/kubejs/assets/scicraft/lang/en_us.json
Normal file
32
client_pack/kubejs/assets/scicraft/lang/en_us.json
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
"item.scicraft.photon_core": "Photon Core",
|
||||||
|
"item.scicraft.photon_fragment": "Photon Fragment",
|
||||||
|
"item.scicraft.void_stabilizer": "Void Stabilizer",
|
||||||
|
"block.scicraft.quantum_lattice": "Quantum Lattice",
|
||||||
|
"block.scicraft.renegade_glass": "Renegade Glass",
|
||||||
|
"advancements.scicraft.protocol.root.title": "The Dark Photon Protocol",
|
||||||
|
"advancements.scicraft.protocol.root.description": "The last signal of the Second Renegade Flight has found you. Rebuild the Lattice.",
|
||||||
|
"advancements.scicraft.protocol.first_signal.title": "The Signal",
|
||||||
|
"advancements.scicraft.protocol.first_signal.description": "Recover your first Photon Fragment from a creature of the Dark.",
|
||||||
|
"advancements.scicraft.protocol.the_core.title": "The Core",
|
||||||
|
"advancements.scicraft.protocol.the_core.description": "Press three Fragments into a Photon Core.",
|
||||||
|
"advancements.scicraft.protocol.the_seal.title": "The Seal",
|
||||||
|
"advancements.scicraft.protocol.the_seal.description": "Craft the Void Stabilizer — the renegades' tool for closing wounds.",
|
||||||
|
"advancements.scicraft.protocol.the_lattice.title": "The Lattice",
|
||||||
|
"advancements.scicraft.protocol.the_lattice.description": "Assemble the Quantum Lattice — the Protocol's emitter — and keep it powered.",
|
||||||
|
"advancements.scicraft.protocol.the_legacy.title": "The Legacy",
|
||||||
|
"advancements.scicraft.protocol.the_legacy.description": "Craft Renegade Glass — rebuild what the Flight left behind.",
|
||||||
|
"advancements.scicraft.protocol.through_the_doors.title": "Through the Doors",
|
||||||
|
"advancements.scicraft.protocol.through_the_doors.description": "Enter a Dimensional Door. The scar-tissue of the Flight's prison.",
|
||||||
|
"advancements.scicraft.protocol.the_wound.title": "The Wound",
|
||||||
|
"advancements.scicraft.protocol.the_wound.description": "Descend into the Void Dimension — the raw leak of the collapsing empire.",
|
||||||
|
"advancements.scicraft.protocol.the_answer.title": "The Answer",
|
||||||
|
"advancements.scicraft.protocol.the_answer.description": "Reach the Othersides of the Deeper and Darker — what answers from inside the prison.",
|
||||||
|
"advancements.scicraft.protocol.per_spatium.title": "Per Spatium",
|
||||||
|
"advancements.scicraft.protocol.per_spatium.description": "Launch a rocket. The Flight's data was scattered across the stars.",
|
||||||
|
"scicraft.phrases.signal": "The last signal of the Second Renegade Flight hums in your blood.",
|
||||||
|
"scicraft.phrases.lattice_hum": "The Lattice hums. Reality holds — for now.",
|
||||||
|
"scicraft.phrases.tide_low": "The seal holds. The tide is calm.",
|
||||||
|
"scicraft.phrases.tide_mid": "A Door stirs somewhere. The dark is waking.",
|
||||||
|
"scicraft.phrases.tide_high": "The Darker press against the world. The Protocol calls."
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 130 B |
Binary file not shown.
|
After Width: | Height: | Size: 132 B |
BIN
client_pack/kubejs/assets/scicraft/textures/item/photon_core.png
Normal file
BIN
client_pack/kubejs/assets/scicraft/textures/item/photon_core.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 226 B |
Binary file not shown.
|
After Width: | Height: | Size: 239 B |
Binary file not shown.
|
After Width: | Height: | Size: 158 B |
34
client_pack/kubejs/client_scripts/01_tooltips.js
Normal file
34
client_pack/kubejs/client_scripts/01_tooltips.js
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
// SCICRAFT — The Dark Photon Protocol
|
||||||
|
// Client tooltips: the story rides on the items you carry.
|
||||||
|
|
||||||
|
ItemEvents.tooltip(event => {
|
||||||
|
event.add('scicraft:photon_core', [
|
||||||
|
'',
|
||||||
|
'§3Dark photons — the binding force of the Door.',
|
||||||
|
'§7A sliver of the fifth force the Flight harnessed.',
|
||||||
|
'§8Hold it and feel the seals.'
|
||||||
|
])
|
||||||
|
event.add('scicraft:photon_fragment', [
|
||||||
|
'',
|
||||||
|
'§3A splinter of light stolen from the collapse.',
|
||||||
|
'§7Recovered from the Darker\'s remains.',
|
||||||
|
'§8Three of these may be pressed into a Core.'
|
||||||
|
])
|
||||||
|
event.add('scicraft:void_stabilizer', [
|
||||||
|
'',
|
||||||
|
'§3Per Spatium — the renegades\' seal for the wound in the world.',
|
||||||
|
'§7Right-click a powered Quantum Lattice to re-seal a Door.',
|
||||||
|
'§8It will never break. The work will.'
|
||||||
|
])
|
||||||
|
event.add('scicraft:quantum_lattice', [
|
||||||
|
'',
|
||||||
|
'§3The Protocol\'s emitter. It must stay powered.',
|
||||||
|
'§7Feed it steel, circuits, and Photon Cores.',
|
||||||
|
'§8Right-click with a Void Stabilizer to push back the tide.'
|
||||||
|
])
|
||||||
|
event.add('scicraft:renegade_glass', [
|
||||||
|
'',
|
||||||
|
'§3The TARDIS-blue glass of the Second Renegade Flight.',
|
||||||
|
'§7Decorative. Some say it hums near Doors.'
|
||||||
|
])
|
||||||
|
})
|
||||||
27
client_pack/kubejs/client_scripts/02_jei_info.js
Normal file
27
client_pack/kubejs/client_scripts/02_jei_info.js
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
// SCICRAFT — The Dark Photon Protocol
|
||||||
|
// JEI info pages: where the story is and where to get the pieces.
|
||||||
|
|
||||||
|
JEIEvents.information(event => {
|
||||||
|
event.addItem('scicraft:photon_fragment', [
|
||||||
|
'The Darker carry these.',
|
||||||
|
'Slay Wardens, Mutant Monsters, or Born in Chaos mobs to recover them.',
|
||||||
|
'You can also extract one from an Echo Shard and Glowstone Dust.'
|
||||||
|
])
|
||||||
|
event.addItem('scicraft:photon_core', [
|
||||||
|
'Compress three Photon Fragments in a Create Press,',
|
||||||
|
'or smelt an Ender Pearl in the heart of the wound.'
|
||||||
|
])
|
||||||
|
event.addItem('scicraft:void_stabilizer', [
|
||||||
|
'The seal of the Flight. Crafted from Photon Cores and an Ender Eye.',
|
||||||
|
'Use it on a powered Quantum Lattice to re-seal a Door and lower the Corruption Tide.'
|
||||||
|
])
|
||||||
|
event.addItem('scicraft:quantum_lattice', [
|
||||||
|
'The emitter of the Dark Photon Protocol.',
|
||||||
|
'Powered by steel, circuits, and Photon Cores, it holds the world together.',
|
||||||
|
'Right-click it with a Void Stabilizer to push back the global Corruption Tide.'
|
||||||
|
])
|
||||||
|
event.addItem('scicraft:renegade_glass', [
|
||||||
|
'The TARDIS-blue glass of the Second Renegade Flight.',
|
||||||
|
'Decorative. Crafted around a Photon Fragment.'
|
||||||
|
])
|
||||||
|
})
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"parent": "scicraft:protocol/root",
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "scicraft:photon_fragment" },
|
||||||
|
"title": { "text": "The Signal" },
|
||||||
|
"description": { "text": "Recover your first Photon Fragment from a creature of the Dark." },
|
||||||
|
"frame": "task",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": false
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"has_fragment": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [{ "items": ["scicraft:photon_fragment"] }]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["has_fragment"]],
|
||||||
|
"rewards": { "experience": 100 }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"parent": "scicraft:protocol/the_lattice",
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "stellaris:rocket" },
|
||||||
|
"title": { "text": "Per Spatium" },
|
||||||
|
"description": { "text": "Launch a rocket. The Flight's data was scattered across the stars." },
|
||||||
|
"frame": "goal",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": false
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"launch_rocket": {
|
||||||
|
"trigger": "minecraft:changed_dimension",
|
||||||
|
"conditions": { "to": "stellaris:moon" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["launch_rocket"]],
|
||||||
|
"rewards": { "experience": 600 }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "scicraft:photon_core" },
|
||||||
|
"title": { "text": "The Dark Photon Protocol" },
|
||||||
|
"description": { "text": "The last signal of the Second Renegade Flight has found you. Rebuild the Lattice." },
|
||||||
|
"background": "minecraft:textures/block/blackstone.png",
|
||||||
|
"frame": "task",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": false
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"first_signal": {
|
||||||
|
"trigger": "minecraft:tick",
|
||||||
|
"conditions": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["first_signal"]],
|
||||||
|
"rewards": { "loot": ["scicraft:protocol/root_reward"] }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"parent": "scicraft:protocol/the_lattice",
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "minecraft:sculk_sensor" },
|
||||||
|
"title": { "text": "The Answer" },
|
||||||
|
"description": { "text": "Reach the Othersides of the Deeper and Darker — what answers from inside the prison." },
|
||||||
|
"frame": "challenge",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": false
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"enter_darker": {
|
||||||
|
"trigger": "minecraft:changed_dimension",
|
||||||
|
"conditions": { "to": "deeperdarker:otherside" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["enter_darker"]],
|
||||||
|
"rewards": { "experience": 750 }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"parent": "scicraft:protocol/first_signal",
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "scicraft:photon_core" },
|
||||||
|
"title": { "text": "The Core" },
|
||||||
|
"description": { "text": "Press three Fragments into a Photon Core." },
|
||||||
|
"frame": "task",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": false
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"has_core": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [{ "items": ["scicraft:photon_core"] }]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["has_core"]],
|
||||||
|
"rewards": { "experience": 250 }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"parent": "scicraft:protocol/the_seal",
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "scicraft:quantum_lattice" },
|
||||||
|
"title": { "text": "The Lattice" },
|
||||||
|
"description": { "text": "Assemble the Quantum Lattice — the Protocol's emitter — and keep it powered." },
|
||||||
|
"frame": "challenge",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": false
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"has_lattice": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [{ "items": ["scicraft:quantum_lattice"] }]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["has_lattice"]],
|
||||||
|
"rewards": { "experience": 1000 }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"parent": "scicraft:protocol/the_lattice",
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "scicraft:renegade_glass" },
|
||||||
|
"title": { "text": "The Legacy" },
|
||||||
|
"description": { "text": "Craft Renegade Glass — rebuild what the Flight left behind." },
|
||||||
|
"frame": "task",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": false
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"has_glass": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [{ "items": ["scicraft:renegade_glass"] }]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["has_glass"]],
|
||||||
|
"rewards": { "experience": 300 }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"parent": "scicraft:protocol/the_core",
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "scicraft:void_stabilizer" },
|
||||||
|
"title": { "text": "The Seal" },
|
||||||
|
"description": { "text": "Craft the Void Stabilizer — the renegades' tool for closing wounds." },
|
||||||
|
"frame": "goal",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": false
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"has_stabilizer": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [{ "items": ["scicraft:void_stabilizer"] }]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["has_stabilizer"]],
|
||||||
|
"rewards": { "experience": 500 }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"parent": "scicraft:protocol/the_lattice",
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "minecraft:respawn_anchor" },
|
||||||
|
"title": { "text": "The Wound" },
|
||||||
|
"description": { "text": "Descend into the Void Dimension — the raw leak of the collapsing empire." },
|
||||||
|
"frame": "challenge",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": false
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"enter_void": {
|
||||||
|
"trigger": "minecraft:changed_dimension",
|
||||||
|
"conditions": { "to": "thevoiddimension:overworld" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["enter_void"]],
|
||||||
|
"rewards": { "experience": 750 }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"parent": "scicraft:protocol/the_seal",
|
||||||
|
"display": {
|
||||||
|
"icon": { "item": "minecraft:ender_eye" },
|
||||||
|
"title": { "text": "Through the Doors" },
|
||||||
|
"description": { "text": "Enter a Dimensional Door. The scar-tissue of the Flight's prison." },
|
||||||
|
"frame": "task",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"enter_doors": {
|
||||||
|
"trigger": "minecraft:changed_dimension",
|
||||||
|
"conditions": { "to": "dimensionaldoors:limbo" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [["enter_doors"]],
|
||||||
|
"rewards": { "experience": 400 }
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:advancement_reward",
|
||||||
|
"pools": [
|
||||||
|
{
|
||||||
|
"rolls": 1,
|
||||||
|
"entries": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:item",
|
||||||
|
"name": "scicraft:photon_fragment",
|
||||||
|
"functions": [
|
||||||
|
{ "function": "minecraft:set_count", "count": 2 }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
42
client_pack/kubejs/server_scripts/00_lore.js
Normal file
42
client_pack/kubejs/server_scripts/00_lore.js
Normal file
|
|
@ -0,0 +1,42 @@
|
||||||
|
// SCICRAFT — The Dark Photon Protocol
|
||||||
|
// THE STORY BIBLE. Edit lore here; every script reads from this object.
|
||||||
|
// Reload with /reload after editing (startup items require a restart).
|
||||||
|
|
||||||
|
global.SCICRAFT = {
|
||||||
|
items: {
|
||||||
|
photon_core: 'scicraft:photon_core',
|
||||||
|
photon_fragment: 'scicraft:photon_fragment',
|
||||||
|
void_stabilizer: 'scicraft:void_stabilizer',
|
||||||
|
quantum_lattice: 'scicraft:quantum_lattice',
|
||||||
|
renegade_glass: 'scicraft:renegade_glass'
|
||||||
|
},
|
||||||
|
|
||||||
|
tide: {
|
||||||
|
// Global corruption level, shared by all players.
|
||||||
|
// Rises while Doors go unsealed; falls when the Lattice is fed.
|
||||||
|
key: 'scicraft_corruption',
|
||||||
|
min: 0,
|
||||||
|
max: 100,
|
||||||
|
rise_per_tick: 1200, // +1 every 60s of neglect
|
||||||
|
seal_reduction: 15, // -15 per Lattice seal
|
||||||
|
darkness_threshold: 30, // darkness effect starts here
|
||||||
|
darker_threshold: 60, // hostile spawns ramp here
|
||||||
|
message_at: [30, 60, 85] // warning messages at these levels
|
||||||
|
},
|
||||||
|
|
||||||
|
dimensions: {
|
||||||
|
// Where the Darker pour through.
|
||||||
|
void_dim: 'thevoiddimension:overworld',
|
||||||
|
darker_dim: 'deeperdarker:otherside',
|
||||||
|
dimensional_doors: 'dimensionaldoors:limbo'
|
||||||
|
},
|
||||||
|
|
||||||
|
phrases: {
|
||||||
|
signal: 'The last signal of the Second Renegade Flight hums in your blood.',
|
||||||
|
lattice_hum: 'The Lattice hums. Reality holds — for now.',
|
||||||
|
tide_low: 'The seal holds. The tide is calm.',
|
||||||
|
tide_mid: 'A Door stirs somewhere. The dark is waking.',
|
||||||
|
tide_high: 'The Darker press against the world. The Protocol calls.',
|
||||||
|
seal_fail: 'The Lattice sputters. It needs more power — and a Stabilizer.'
|
||||||
|
}
|
||||||
|
}
|
||||||
61
client_pack/kubejs/server_scripts/01_corruption_tide.js
Normal file
61
client_pack/kubejs/server_scripts/01_corruption_tide.js
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
// SCICRAFT — The Dark Photon Protocol
|
||||||
|
// GLOBAL CORRUPTION TIDE. Shared by all players via server persistent data.
|
||||||
|
// Rises while the Doors stay unsealed. Re-seal them at the Lattice to push it back.
|
||||||
|
|
||||||
|
const SC = global.SCICRAFT
|
||||||
|
const T = SC.tide
|
||||||
|
|
||||||
|
function getTide(server) {
|
||||||
|
const data = server.persistentData
|
||||||
|
if (!data.contains(T.key)) data.putInt(T.key, 0)
|
||||||
|
return data.getInt(T.key)
|
||||||
|
}
|
||||||
|
|
||||||
|
function setTide(server, value) {
|
||||||
|
server.persistentData.putInt(T.key, Math.max(T.min, Math.min(T.max, value)))
|
||||||
|
}
|
||||||
|
|
||||||
|
// The tide climbs while Doors go unsealed — global, not per-player.
|
||||||
|
ServerEvents.tick(event => {
|
||||||
|
if (event.server.ticks % T.rise_per_tick !== 0) return
|
||||||
|
setTide(event.server, getTide(event.server) + 1)
|
||||||
|
})
|
||||||
|
|
||||||
|
// Every sealed Lattice pushes the tide back, once per stabilizer use.
|
||||||
|
BlockEvents.rightClicked(event => {
|
||||||
|
if (event.block.id !== SC.items.quantum_lattice) return
|
||||||
|
const held = event.player.mainHandItem
|
||||||
|
if (!held.hasTag('scicraft:stabilizer')) return
|
||||||
|
if (event.player.crouching) return
|
||||||
|
|
||||||
|
const before = getTide(event.server)
|
||||||
|
setTide(event.server, before - T.seal_reduction)
|
||||||
|
const after = getTide(event.server)
|
||||||
|
event.player.server.runCommandSilent(`playsound minecraft:block.beacon.activate block @a ~ ~ ~ 1 0.7`)
|
||||||
|
event.player.server.tell([Text.translate('scicraft.phrases.lattice_hum'), ` §7(tide ${before} → ${after})`])
|
||||||
|
event.cancel()
|
||||||
|
})
|
||||||
|
|
||||||
|
// Ambient dread: darkness the closer the world is to the Darker.
|
||||||
|
PlayerEvents.tick(event => {
|
||||||
|
if (event.player.server.ticks % 40 !== 0) return
|
||||||
|
const tide = getTide(event.player.server)
|
||||||
|
const dim = String(event.player.level.dimension)
|
||||||
|
|
||||||
|
if (tide >= T.darkness_threshold) {
|
||||||
|
event.player.potionEffects.add('minecraft:darkness', 80, 0, true, false)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Inside the wound itself, the dark is absolute.
|
||||||
|
if (dim === SC.dimensions.void_dim || dim === SC.dimensions.darker_dim) {
|
||||||
|
event.player.potionEffects.add('minecraft:darkness', 120, 1, true, false)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// Broadcast phase changes once per threshold crossing.
|
||||||
|
ServerEvents.tick(event => {
|
||||||
|
if (event.server.ticks % 200 !== 0) return
|
||||||
|
const tide = getTide(event.server)
|
||||||
|
const msg = tide >= T.darker_threshold ? 'tide_high' : tide >= T.darkness_threshold ? 'tide_mid' : 'tide_low'
|
||||||
|
event.server.tell(Text.translate('scicraft.phrases.' + msg))
|
||||||
|
})
|
||||||
45
client_pack/kubejs/server_scripts/02_events.js
Normal file
45
client_pack/kubejs/server_scripts/02_events.js
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
// SCICRAFT — The Dark Photon Protocol
|
||||||
|
// Player-side lore events: the Resonance, void exposure, and held-item powers.
|
||||||
|
|
||||||
|
const SC = global.SCICRAFT
|
||||||
|
|
||||||
|
// Proto-Time-Lord: holding a Photon Core or Stabilizer lets you feel the seals.
|
||||||
|
PlayerEvents.tick(event => {
|
||||||
|
if (event.player.server.ticks % 40 !== 0) return
|
||||||
|
const held = event.player.mainHandItem
|
||||||
|
|
||||||
|
if (held.id === SC.items.photon_core) {
|
||||||
|
event.player.potionEffects.add('minecraft:night_vision', 140, 0, true, false)
|
||||||
|
}
|
||||||
|
if (held.id === SC.items.void_stabilizer) {
|
||||||
|
event.player.potionEffects.add('minecraft:speed', 120, 0, true, false)
|
||||||
|
event.player.potionEffects.add('minecraft:regeneration', 120, 0, true, false)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// The wound is physically hostile. Being inside it costs you.
|
||||||
|
PlayerEvents.tick(event => {
|
||||||
|
const dim = String(event.player.level.dimension)
|
||||||
|
if (dim === SC.dimensions.void_dim) {
|
||||||
|
if (event.player.server.ticks % 100 === 0) {
|
||||||
|
event.player.hurt('minecraft:generic', 1.0)
|
||||||
|
}
|
||||||
|
} else if (dim === SC.dimensions.darker_dim) {
|
||||||
|
if (event.player.server.ticks % 200 === 0) {
|
||||||
|
event.player.potionEffects.add('minecraft:wither', 80, 0, true, false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// Arrival in the wound triggers the first vision.
|
||||||
|
PlayerEvents.loggedIn(event => {
|
||||||
|
event.player.tell(Text.translate('scicraft.phrases.signal'))
|
||||||
|
})
|
||||||
|
|
||||||
|
// The very first fragment always drops when a Darker falls — never lost.
|
||||||
|
EntityEvents.death(event => {
|
||||||
|
const ent = event.entity
|
||||||
|
if (ent.type === 'minecraft:warden') {
|
||||||
|
ent.level.spawnItem('scicraft:photon_fragment', ent.blockPosition(), { count: 2 })
|
||||||
|
}
|
||||||
|
})
|
||||||
61
client_pack/kubejs/server_scripts/03_recipes_tags.js
Normal file
61
client_pack/kubejs/server_scripts/03_recipes_tags.js
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
// SCICRAFT — The Dark Photon Protocol
|
||||||
|
// The Protocol's crafting chain. Soft-gates the story items behind mod content.
|
||||||
|
|
||||||
|
const SC = global.SCICRAFT
|
||||||
|
|
||||||
|
ServerEvents.recipes(event => {
|
||||||
|
// --- Photon Fragment: harvested from the Darker's own remains.
|
||||||
|
// (LootJS also adds these; this gives a deterministic in-world path.)
|
||||||
|
event.shapeless(SC.items.photon_fragment, ['minecraft:echo_shard', 'minecraft:glowstone_dust'])
|
||||||
|
.id('scicraft:photon_fragment_from_echo')
|
||||||
|
|
||||||
|
// --- Photon Core: compress fragments in a Mekanism-grade press.
|
||||||
|
event.recipes.create.pressing(SC.items.photon_core, '3x ' + SC.items.photon_fragment)
|
||||||
|
.id('scicraft:photon_core_pressing')
|
||||||
|
event.smelting(SC.items.photon_core, 'minecraft:ender_pearl', 0.5)
|
||||||
|
.id('scicraft:photon_core_smelting')
|
||||||
|
|
||||||
|
// --- Void Stabilizer: the tool of the Flight — needs a door's key, not ore.
|
||||||
|
event.shaped(SC.items.void_stabilizer, [
|
||||||
|
' P ',
|
||||||
|
'PEP',
|
||||||
|
' P '
|
||||||
|
], {
|
||||||
|
P: SC.items.photon_core,
|
||||||
|
E: 'minecraft:ender_eye'
|
||||||
|
}).id('scicraft:void_stabilizer')
|
||||||
|
|
||||||
|
// --- Quantum Lattice: the emitter. Dense, expensive, ongoing.
|
||||||
|
event.shaped(SC.items.quantum_lattice, [
|
||||||
|
'SCS',
|
||||||
|
'CPC',
|
||||||
|
'SCS'
|
||||||
|
], {
|
||||||
|
S: 'c:ingots/steel',
|
||||||
|
C: 'c:circuits',
|
||||||
|
P: SC.items.photon_core
|
||||||
|
}).id('scicraft:quantum_lattice')
|
||||||
|
|
||||||
|
// --- Renegade Glass: the Flight's TARDIS-blue pane. Purely decorative.
|
||||||
|
event.shaped('8x ' + SC.items.renegade_glass, [
|
||||||
|
'GGG',
|
||||||
|
'GPG',
|
||||||
|
'GGG'
|
||||||
|
], {
|
||||||
|
G: 'c:glass_blocks',
|
||||||
|
P: SC.items.photon_fragment
|
||||||
|
}).id('scicraft:renegade_glass')
|
||||||
|
})
|
||||||
|
|
||||||
|
// Tag unification so Mekanism / Create / AE2 accept the Protocol metals.
|
||||||
|
ServerEvents.tags('item', event => {
|
||||||
|
const steel = ['mekanism:ingot_steel', 'create:experience_nugget']
|
||||||
|
event.add('c:ingots/steel', steel)
|
||||||
|
event.add('c:ingots/brass', ['create:brass_ingot'])
|
||||||
|
event.add('c:ingots/tin', ['mekanism:ingot_tin'])
|
||||||
|
event.add('c:ingots/lead', ['mekanism:ingot_lead'])
|
||||||
|
event.add('c:ingots/osmium', ['mekanism:ingot_osmium'])
|
||||||
|
event.add('c:ingots/uranium', ['mekanism:ingot_uranium'])
|
||||||
|
event.add('c:gems/fluorite', ['mekanism:fluorite_gem'])
|
||||||
|
event.add('c:dusts/redstone', ['minecraft:redstone'])
|
||||||
|
})
|
||||||
25
client_pack/kubejs/server_scripts/04_loot.js
Normal file
25
client_pack/kubejs/server_scripts/04_loot.js
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
// SCICRAFT — The Dark Photon Protocol
|
||||||
|
// LootJS: the Darker and the sealed horrors drop Photon Fragments.
|
||||||
|
// LootJS ships with the pack; if you disable it, remove this file.
|
||||||
|
|
||||||
|
LootJS.modifiers(event => {
|
||||||
|
// The Warden — a creature of the Deep Dark, now answering the signal.
|
||||||
|
event.addEntityLootModifier('minecraft:warden')
|
||||||
|
.addLoot(LootEntry.of('scicraft:photon_fragment').setCount([1, 3]))
|
||||||
|
|
||||||
|
// Mutant Monsters — the corrupted remnants of the Flight's containment.
|
||||||
|
event.addEntityLootModifier('mutantmonsters:mutant_zombie')
|
||||||
|
.addLoot(LootEntry.of('scicraft:photon_fragment').setCount([1, 2]))
|
||||||
|
event.addEntityLootModifier('mutantmonsters:mutant_skeleton')
|
||||||
|
.addLoot(LootEntry.of('scicraft:photon_fragment').setCount([1, 2]))
|
||||||
|
event.addEntityLootModifier('mutantmonsters:mutant_enderman')
|
||||||
|
.addLoot(LootEntry.of('scicraft:photon_fragment').setCount([2, 4]))
|
||||||
|
|
||||||
|
// Born in Chaos — the Darker's forward scouts.
|
||||||
|
event.addEntityLootModifier('born_in_chaos_v1:dark_vortex')
|
||||||
|
.addLoot(LootEntry.of('scicraft:photon_fragment').setCount(1))
|
||||||
|
event.addEntityLootModifier('born_in_chaos_v1:dread_hound')
|
||||||
|
.addLoot(LootEntry.of('scicraft:photon_fragment').setCount(1))
|
||||||
|
event.addEntityLootModifier('born_in_chaos_v1:nightmare_stalker')
|
||||||
|
.addLoot(LootEntry.of('scicraft:photon_fragment').setCount([2, 3]))
|
||||||
|
})
|
||||||
63
client_pack/kubejs/startup_scripts/registry_blocks.js
Normal file
63
client_pack/kubejs/startup_scripts/registry_blocks.js
Normal file
|
|
@ -0,0 +1,63 @@
|
||||||
|
// SCICRAFT — The Dark Photon Protocol
|
||||||
|
// Custom items & blocks for the Protocol.
|
||||||
|
// Startup scripts: requires a full restart to apply.
|
||||||
|
|
||||||
|
const SC = global.SCICRAFT
|
||||||
|
|
||||||
|
StartupEvents.registry('item', event => {
|
||||||
|
// Photon Core — the raw fifth-force crystal. Lattice fuel.
|
||||||
|
event.create('scicraft:photon_core')
|
||||||
|
.displayName('Photon Core')
|
||||||
|
.texture('scicraft:item/photon_core')
|
||||||
|
.maxStackSize(64)
|
||||||
|
.tag('scicraft:photon')
|
||||||
|
.tag('c:gems')
|
||||||
|
.glow(true)
|
||||||
|
.tooltip('Dark photons — the binding force of the Door.')
|
||||||
|
|
||||||
|
// Photon Fragment — shattered cores recovered from the Darker.
|
||||||
|
event.create('scicraft:photon_fragment')
|
||||||
|
.displayName('Photon Fragment')
|
||||||
|
.texture('scicraft:item/photon_fragment')
|
||||||
|
.maxStackSize(64)
|
||||||
|
.tag('scicraft:photon')
|
||||||
|
.tag('c:gems')
|
||||||
|
.glow(true)
|
||||||
|
.tooltip('A splinter of light stolen from the collapse.')
|
||||||
|
|
||||||
|
// Void Stabilizer — the tool that re-seals Doors at the Lattice.
|
||||||
|
event.create('scicraft:void_stabilizer')
|
||||||
|
.displayName('Void Stabilizer')
|
||||||
|
.texture('scicraft:item/void_stabilizer')
|
||||||
|
.maxStackSize(1)
|
||||||
|
.unbreakable()
|
||||||
|
.tag('scicraft:stabilizer')
|
||||||
|
.tooltip('Per Spatium — the renegades\' seal for the wound in the world.')
|
||||||
|
})
|
||||||
|
|
||||||
|
StartupEvents.registry('block', event => {
|
||||||
|
// Quantum Lattice — the Protocol's emitter. Must stay powered.
|
||||||
|
event.create('scicraft:quantum_lattice', 'basic')
|
||||||
|
.displayName('Quantum Lattice')
|
||||||
|
.textureAll('scicraft:block/quantum_lattice')
|
||||||
|
.hardness(5.0)
|
||||||
|
.resistance(1200.0)
|
||||||
|
.material('metal')
|
||||||
|
.lightLevel(0.9)
|
||||||
|
.tagBlock('minecraft:mineable/pickaxe')
|
||||||
|
.tagBlock('minecraft:needs_diamond_tool')
|
||||||
|
|
||||||
|
// Renegade Glass — the TARDIS-blue glass of the Flight. Purely decorative.
|
||||||
|
event.create('scicraft:renegade_glass', 'glass')
|
||||||
|
.displayName('Renegade Glass')
|
||||||
|
.textureAll('scicraft:block/renegade_glass')
|
||||||
|
.hardness(0.3)
|
||||||
|
.resistance(0.3)
|
||||||
|
.material('glass')
|
||||||
|
.translucent(true)
|
||||||
|
.noSolid(true)
|
||||||
|
.tagBlock('minecraft:mineable/pickaxe')
|
||||||
|
.tagBlock('c:glass_blocks')
|
||||||
|
.tagBlock('c:glass')
|
||||||
|
.tagBlock('minecraft:impermeable')
|
||||||
|
})
|
||||||
13
client_pack/mods/3dskinlayers.pw.toml
Normal file
13
client_pack/mods/3dskinlayers.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "3D Skin Layers"
|
||||||
|
filename = "skinlayers3d-neoforge-1.11.2-mc1.21.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/zV5r3pPn/versions/xPYbAPfz/skinlayers3d-neoforge-1.11.2-mc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "c017d098874697ba93a03c06cfb4fe8a8bbc619448bff55c3c821089b164677fae2c8c2059e99fc9933af6ff519759c399deae763b1ac9e34593cd6e4f427f3a"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "zV5r3pPn"
|
||||||
|
version = "xPYbAPfz"
|
||||||
13
client_pack/mods/adastra-stellarview-compatibility.pw.toml
Normal file
13
client_pack/mods/adastra-stellarview-compatibility.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "AdAstra StellarView Compatibility"
|
||||||
|
filename = "adastra_stellarview_compatibility-1.21.1-1.1.0.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/mjJYi3sy/versions/SHO3K6tu/adastra_stellarview_compatibility-1.21.1-1.1.0.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "dafdd95bd30b4a2fcf5f902e92c64a72ac08d6bb63d8ae3971ea899c0472bf6d3cc19e63e620c84ba1cb806f77215ca45cea4b1937f1211cc414333dac9eea22"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "mjJYi3sy"
|
||||||
|
version = "SHO3K6tu"
|
||||||
13
client_pack/mods/ae2-import-export-card.pw.toml
Normal file
13
client_pack/mods/ae2-import-export-card.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "AE2 Import Export Card"
|
||||||
|
filename = "ae2importexportcard-1.21.1-1.5.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/qelfSMnn/versions/UtJepGDL/ae2importexportcard-1.21.1-1.5.0.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "cc975c67ba0b064534941ac50019d06cb139cae35dab080af5db8310a073ad1a924b31e03922dbf26ee4dd0fcb8dd536280e2eaebd72c0760032660b709c03c7"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "qelfSMnn"
|
||||||
|
version = "UtJepGDL"
|
||||||
13
client_pack/mods/ae2-qol-recipes.pw.toml
Normal file
13
client_pack/mods/ae2-qol-recipes.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "AE2 QoL Recipes"
|
||||||
|
filename = "ae2qolrecipes-neoforge-1.21.x-1.3.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/K7VSm2YY/versions/gyP6Pp5h/ae2qolrecipes-neoforge-1.21.x-1.3.0.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "fea6cf8dcfb7b0a0bd7131885b304caec475a56564c60580cd2b2352399df1fb22b5f1b3e979f8a0d2e7175c25f1581b13794e89f23e3bb4491b83f2604cbdc0"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "K7VSm2YY"
|
||||||
|
version = "gyP6Pp5h"
|
||||||
13
client_pack/mods/ae2.pw.toml
Normal file
13
client_pack/mods/ae2.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Applied Energistics 2"
|
||||||
|
filename = "appliedenergistics2-19.2.17.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/XxWD5pD3/versions/kfyIqgJ6/appliedenergistics2-19.2.17.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "55edfd948366aff620881e0625e48c333a2cb847e73249bc0b588efbc4b86709992a8ffbca97ea387e270df4186fe7f74ee2f27b739f1c952e932becfb9dea33"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "XxWD5pD3"
|
||||||
|
version = "kfyIqgJ6"
|
||||||
13
client_pack/mods/ambientsounds.pw.toml
Normal file
13
client_pack/mods/ambientsounds.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "AmbientSounds 6"
|
||||||
|
filename = "AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "c79ab328b2c46068effebdcb3f26e98dc4404cb0"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8043019
|
||||||
|
project-id = 254284
|
||||||
13
client_pack/mods/appleskin.pw.toml
Normal file
13
client_pack/mods/appleskin.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "AppleSkin"
|
||||||
|
filename = "appleskin-neoforge-mc1.21-3.0.9.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/uAKA6Laj/appleskin-neoforge-mc1.21-3.0.9.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f4ea46273e407334b63e262e2555c9a8204f7b5e60f23f272fbaa83ad9e88800e0ee186aca840710df2dbe0a18b37758695fef2ae1a902c10b3706e3de772937"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "EsAfCjCV"
|
||||||
|
version = "uAKA6Laj"
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Applied Energistics 2 Wireless Terminals"
|
||||||
|
filename = "ae2wtlib-19.5.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/pNabrMMw/versions/CxSEpEnO/ae2wtlib-19.5.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "0659d755c6ae91551d30c20b948d5bde0a39b2ae9825b1a4e132f0bbd10e032f18d82b6847261360589f36980ed3597ef6c6947b680523a1de767a9b7953682e"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "pNabrMMw"
|
||||||
|
version = "CxSEpEnO"
|
||||||
13
client_pack/mods/architects-palette.pw.toml
Normal file
13
client_pack/mods/architects-palette.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Architect's Palette"
|
||||||
|
filename = "architects_palette-neoforge-1.21.1-1.4.0-beta.5.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/vt0VyseM/versions/mfYFPWxH/architects_palette-neoforge-1.21.1-1.4.0-beta.5.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "1d2f27e5f0ae15828f68368aae3d935d2cc4dddbd8113986dd04bed2c56eb5e7ae65ecd6a009e6e2108a91cd1538e6585c95163e19a8f4cd56e82f864b9c2d22"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "vt0VyseM"
|
||||||
|
version = "mfYFPWxH"
|
||||||
13
client_pack/mods/architectury-api.pw.toml
Normal file
13
client_pack/mods/architectury-api.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Architectury API"
|
||||||
|
filename = "architectury-13.0.11-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "008656a0702801174b8ec245ed7aad1921d6e9f1"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8492726
|
||||||
|
project-id = 419699
|
||||||
13
client_pack/mods/athena-ctm.pw.toml
Normal file
13
client_pack/mods/athena-ctm.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Athena"
|
||||||
|
filename = "athena-neoforge-1.21.1-4.0.6.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/b1ZV3DIJ/versions/dJgL278E/athena-neoforge-1.21.1-4.0.6.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "ab40a306a26ce834daae921a1e87768cd2538a4bfe27a4480f97af854084cc334e7416b1bd0b7583834a32a86951283f29fd4b1df7b98a967a6b26a3ec05e2cf"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "b1ZV3DIJ"
|
||||||
|
version = "dJgL278E"
|
||||||
13
client_pack/mods/badoptimizations.pw.toml
Normal file
13
client_pack/mods/badoptimizations.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "BadOptimizations"
|
||||||
|
filename = "BadOptimizations-2.4.1-1.21.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/g96Z4WVZ/versions/S2qthD5S/BadOptimizations-2.4.1-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "2b66428bd98bd5ec0e09f2ec6af801cefb7b9b99cc4f0993daeaffe8d0ccc5ee0c2a73e9f38d4f92540ead0181704d2c9e946837ec05cf710fc3b20fce3b0cac"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "g96Z4WVZ"
|
||||||
|
version = "S2qthD5S"
|
||||||
13
client_pack/mods/balm.pw.toml
Normal file
13
client_pack/mods/balm.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Balm"
|
||||||
|
filename = "balm-neoforge-1.21.1-21.0.65.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/KgypwTqX/balm-neoforge-1.21.1-21.0.65.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "779b4f9e9738ae6f010e87f71b2ed5a114eb9b1b3d5b55cf42ad538094e5b064a1d3f4ff00064aac90da1c841a144464d47378d9bffc448a71d87132cb954101"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "MBAkmtvl"
|
||||||
|
version = "KgypwTqX"
|
||||||
13
client_pack/mods/bellsandwhistles.pw.toml
Normal file
13
client_pack/mods/bellsandwhistles.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: Bells & Whistles"
|
||||||
|
filename = "bellsandwhistles-0.4.7-1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/gJ5afkVv/versions/w0mifib8/bellsandwhistles-0.4.7-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "482ee096477b89ed8ec5ce008a4a8ac0ae853079a4f5ce16ad0e0dd9b2eb12b3326f17acaaca1eae0bc51ad238f4e51c8d5b93ded71fe7240717ac8600041c59"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "gJ5afkVv"
|
||||||
|
version = "w0mifib8"
|
||||||
13
client_pack/mods/better-combat.pw.toml
Normal file
13
client_pack/mods/better-combat.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Better Combat"
|
||||||
|
filename = "bettercombat-neoforge-2.4.0+1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/5sy6g3kz/versions/VhIOvcXP/bettercombat-neoforge-2.4.0%2B1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "db24730a42ae7e2dd546ee031d2f5e0dd6f9896418417a529fa21a44121761ebb29c8b8299db8f20500f7497f7b60a7d793b66c93abf37a8ea0aa3edafd80eb6"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "5sy6g3kz"
|
||||||
|
version = "VhIOvcXP"
|
||||||
13
client_pack/mods/blocks-you-need.pw.toml
Normal file
13
client_pack/mods/blocks-you-need.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Blocks You Need"
|
||||||
|
filename = "blocksyouneed_luna-1.11.4-neoforge-1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/lIyS5pGh/versions/wXB9rYMv/blocksyouneed_luna-1.11.4-neoforge-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "31a322080cdb7c7a85df1366b134b1734a69d2bf5b2fe3f6f38298632893856a1999513b8ba4efafa8cbdd62324eaa5c95d18d9f343c483bee9420891efd04b2"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "lIyS5pGh"
|
||||||
|
version = "wXB9rYMv"
|
||||||
13
client_pack/mods/born-in-chaos.pw.toml
Normal file
13
client_pack/mods/born-in-chaos.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Born in Chaos"
|
||||||
|
filename = "born_in_chaos_[Neoforge]_1.21.1_1.7.6.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "73704f38ac368c03716f9cc8f537470d3b352fa2"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8268280
|
||||||
|
project-id = 686437
|
||||||
13
client_pack/mods/building-gadgets.pw.toml
Normal file
13
client_pack/mods/building-gadgets.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Building Gadgets"
|
||||||
|
filename = "buildinggadgets2-1.3.9.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "666a155981e3cd231f67809b9e2a0238377bbbfc"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 6850515
|
||||||
|
project-id = 298187
|
||||||
13
client_pack/mods/chipped.pw.toml
Normal file
13
client_pack/mods/chipped.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Chipped"
|
||||||
|
filename = "chipped-neoforge-1.21.1-4.0.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/BAscRYKm/versions/eqVowbGc/chipped-neoforge-1.21.1-4.0.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f3083b01267e7c674c4b42f45a317c93ee7723443cba2051fe5bc593638b533b0fe90699e2101661c934dff458eab693cce4e188533bfe977778c249563a2fa5"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "BAscRYKm"
|
||||||
|
version = "eqVowbGc"
|
||||||
13
client_pack/mods/cloth-config.pw.toml
Normal file
13
client_pack/mods/cloth-config.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Cloth Config API"
|
||||||
|
filename = "cloth-config-15.0.140-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/izKINKFg/cloth-config-15.0.140-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "aaf9b010955b8cd294e5a92f069985b18729fd5e2cf22d351f1dff9680f15488688803ec41e77e941cbde130ceb535014ca4c868047d80ab69c2d508e216654d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "9s6osm5g"
|
||||||
|
version = "izKINKFg"
|
||||||
13
client_pack/mods/clumps.pw.toml
Normal file
13
client_pack/mods/clumps.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Clumps"
|
||||||
|
filename = "Clumps-neoforge-1.21.1-19.0.0.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Wnxd13zP/versions/jo7lDoK4/Clumps-neoforge-1.21.1-19.0.0.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "314d8d8e640d73041f27e0f3f2cad7aad8b4c77dbd7fb31700ef7760362261f77085eed5289555c725d99c3f47a114e7290cd608f39c9f0f12ef74958463bdcc"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Wnxd13zP"
|
||||||
|
version = "jo7lDoK4"
|
||||||
13
client_pack/mods/connected-glass.pw.toml
Normal file
13
client_pack/mods/connected-glass.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Connected Glass"
|
||||||
|
filename = "connectedglass-1.1.14-neoforge-mc1.21.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "0a44c13d6744e0eeec5bf38f58756a8e86e96f55"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 6811960
|
||||||
|
project-id = 383129
|
||||||
13
client_pack/mods/connector.pw.toml
Normal file
13
client_pack/mods/connector.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Sinytra Connector"
|
||||||
|
filename = "connector-2.0.0-beta.17+1.21.1-full.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/u58R1TMW/versions/IITF0PRC/connector-2.0.0-beta.17%2B1.21.1-full.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "cb92b662047208792e61191d372d1e255766200406c35769007101f8c578c1018938610c3b90352afd93ec42d7963acf3607e35c50e669df50ac85d7c5529560"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "u58R1TMW"
|
||||||
|
version = "IITF0PRC"
|
||||||
13
client_pack/mods/copycats.pw.toml
Normal file
13
client_pack/mods/copycats.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: Copycats+"
|
||||||
|
filename = "copycats-3.0.4+mc.1.21.1-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/UT2M39wf/versions/kecZ0sl7/copycats-3.0.4%2Bmc.1.21.1-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "ecc98e659be66a71af0aee66a9f4c7c8838f4f0101402644929079ce7280a572a000e7e417905e1869a51d6e49ebbd601008f54585e07ee4ed01f2c4bc752bfe"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "UT2M39wf"
|
||||||
|
version = "kecZ0sl7"
|
||||||
13
client_pack/mods/cosmetic-armor-reworked.pw.toml
Normal file
13
client_pack/mods/cosmetic-armor-reworked.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Cosmetic Armor Reworked"
|
||||||
|
filename = "cosmeticarmorreworked-1.21.1-v1-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "5f1e699cd0888b857ec63f01adaeb3571848bfea"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 5610814
|
||||||
|
project-id = 237307
|
||||||
13
client_pack/mods/create-aeronautics.pw.toml
Normal file
13
client_pack/mods/create-aeronautics.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create Aeronautics"
|
||||||
|
filename = "create-aeronautics-bundled-1.21.1-1.3.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/oWaK0Q19/versions/Vzp221Un/create-aeronautics-bundled-1.21.1-1.3.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "16ba7a2c8335443bdf6ad4777737b762f09452be2dd364f801fd20b35eb581473161763699ec37eb12d1aeaf8c18cf8299b2152e24334eedcc9fe662af5bbb27"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "oWaK0Q19"
|
||||||
|
version = "Vzp221Un"
|
||||||
13
client_pack/mods/create-big-cannons.pw.toml
Normal file
13
client_pack/mods/create-big-cannons.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create Big Cannons"
|
||||||
|
filename = "createbigcannons-5.11.7+mc.1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/GWp4jCJj/versions/bOiDu0LS/createbigcannons-5.11.7%2Bmc.1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "24f414dfbb973a0f4d9c9b2aa059edc7bed4d23b4f39eb1f7d23a1d6b437e3b5d64cca6e4b85ff7eb2815743fa711d54ad652bffe96d1eb1234544716006440d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "GWp4jCJj"
|
||||||
|
version = "bOiDu0LS"
|
||||||
13
client_pack/mods/create-central-kitchen.pw.toml
Normal file
13
client_pack/mods/create-central-kitchen.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: Central Kitchen"
|
||||||
|
filename = "create-central-kitchen-2.6.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/btq68HMO/versions/1mQSm4Yb/create-central-kitchen-2.6.0.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "9f42e5f3e557118a8dec364ee87fa9ee3d91f8f386eaf656ae2410dff6e5263bdeb0d532fe1af7dab51c3faf9fa6672d3089a28e5c04242e86b55407f41b7152"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "btq68HMO"
|
||||||
|
version = "1mQSm4Yb"
|
||||||
13
client_pack/mods/create-connected.pw.toml
Normal file
13
client_pack/mods/create-connected.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: Connected"
|
||||||
|
filename = "create_connected-1.3.2-mc1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Vg5TIO6d/versions/klOWKza5/create_connected-1.3.2-mc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "b07bfbc5ebf0ad63b1db5f7215f0e11490f0263623e344b09a63116d84199a49c7f916610410262ddb640e60017d08e89f3363ada38a6219ac6a5b2fc19322e0"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Vg5TIO6d"
|
||||||
|
version = "klOWKza5"
|
||||||
13
client_pack/mods/create-deco.pw.toml
Normal file
13
client_pack/mods/create-deco.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create Deco"
|
||||||
|
filename = "createdeco-2.1.3.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/sMvUb4Rb/versions/qrcMVoBD/createdeco-2.1.3.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "c536662f9d47ad57a37419165ded14835b23ad6c3e82a920298ecd7ee074244b0b6062ef9cc7ea4501ddd35919a840faccd7fc64e43eb8df31e12076681c3c0d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "sMvUb4Rb"
|
||||||
|
version = "qrcMVoBD"
|
||||||
13
client_pack/mods/create-design-n-decor.pw.toml
Normal file
13
client_pack/mods/create-design-n-decor.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: Design n' Decor"
|
||||||
|
filename = "Design-n-Decor-1.21.1-2.2b.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/x49wilh8/versions/uQsIRky8/Design-n-Decor-1.21.1-2.2b.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "d888553c8a254c3654f8da2ae2cae0bb642594546c71988739c93bf6b18668145e0ce5b1c20ae0544b9b6019f17e4da944bd5bc17e4c6b73e7f1374cfa2c9db9"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "x49wilh8"
|
||||||
|
version = "uQsIRky8"
|
||||||
13
client_pack/mods/create-diesel-generators.pw.toml
Normal file
13
client_pack/mods/create-diesel-generators.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: Diesel Generators"
|
||||||
|
filename = "createdieselgenerators-1.21.1-1.3.15.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/ZM3tt6p1/versions/UoPH8lO1/createdieselgenerators-1.21.1-1.3.15.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "1507ebcd07d3185aac3ae6ce768b4d6bab16cb6f39776d25a850c8133a4dc5826b8ddbeca112d76afc64deaa37ec177cac4237c6c34621c4b65e73d83f8ab43f"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "ZM3tt6p1"
|
||||||
|
version = "UoPH8lO1"
|
||||||
13
client_pack/mods/create-dragons-plus.pw.toml
Normal file
13
client_pack/mods/create-dragons-plus.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: Dragons Plus"
|
||||||
|
filename = "CreateDragonsPlus-1.11.7b.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/dzb1a5WV/versions/zQDQbNih/CreateDragonsPlus-1.11.7b.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "4b86f50641b95532d8662e333b1805f0938bf49d1fd9ee7bd4920dca7a4c3707e11f95d44d6a6ce250acc0d534f08ffd2a7891308d587c4d63ce63be3377ae83"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "dzb1a5WV"
|
||||||
|
version = "zQDQbNih"
|
||||||
13
client_pack/mods/create-dreams-and-desires.pw.toml
Normal file
13
client_pack/mods/create-dreams-and-desires.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: Dreams & Desires"
|
||||||
|
filename = "DnDesires-1.21.1-2.3a-BETA.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/JmybsfWs/versions/bqMxf6Ua/DnDesires-1.21.1-2.3a-BETA.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "c2d70c5ef259d20ba60a66fa146fc0d37b588c5c42c0028a650af1e10678c4e4604966aa46efd25f3824df4620ef719daa8e54fc82220d7a1b22a7fcaa4e2077"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "JmybsfWs"
|
||||||
|
version = "bqMxf6Ua"
|
||||||
13
client_pack/mods/create-enchantment-industry.pw.toml
Normal file
13
client_pack/mods/create-enchantment-industry.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: Enchantment Industry"
|
||||||
|
filename = "create-enchantment-industry-2.5.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/JWGBpFUP/versions/LOammszO/create-enchantment-industry-2.5.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e5c049bf06fe231d44f37a2427a95a327d6327b1d2547d3f086a22342a03a3c618c9df9c26d3fd04be5b029b20764eee33425ab7bd523e8b96a65c7d76930705"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "JWGBpFUP"
|
||||||
|
version = "LOammszO"
|
||||||
13
client_pack/mods/create-goggles.pw.toml
Normal file
13
client_pack/mods/create-goggles.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create Goggles"
|
||||||
|
filename = "creategoggles-1.21.1-6.1.1-[NEOFORGE].jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/L1RT5SJc/versions/Co24W2FL/creategoggles-1.21.1-6.1.1-%5BNEOFORGE%5D.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "bf2c4167fdee64c3f43298c6fd2d9e347951d2fb8fc12e2c2bbafc486e8d690cd7ebfd536507d13a6b4c287236713f8d796c048df2356feda36542cf5b484afc"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "L1RT5SJc"
|
||||||
|
version = "Co24W2FL"
|
||||||
13
client_pack/mods/create-jetpack.pw.toml
Normal file
13
client_pack/mods/create-jetpack.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create Jetpack"
|
||||||
|
filename = "create_jetpack-forge-5.2.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/UbFnAd4l/versions/sCwiqLqq/create_jetpack-forge-5.2.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "dd9856cf9f84d58174bcdb097f405a107d86d0947ab3d67f090994ed3a4939cc9d52bab0f56f988cd290b1e8f68d534c3e9155e33a1d67983d80923f3b67f4f3"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "UbFnAd4l"
|
||||||
|
version = "sCwiqLqq"
|
||||||
13
client_pack/mods/create-mechanical-extruder.pw.toml
Normal file
13
client_pack/mods/create-mechanical-extruder.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create Mechanical Extruder"
|
||||||
|
filename = "create_mechanical_extruder-1.21.1-2.2.2-6.0.10.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/hGAlcCDJ/versions/fFDOEXAA/create_mechanical_extruder-1.21.1-2.2.2-6.0.10.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "efeb01312cb00800cc11e7765759b31058719e6a7c62744b453d242c4da7b75091b68eef2f489054a1244244a63672a46f4822a580eb8d8c64045a189e671827"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "hGAlcCDJ"
|
||||||
|
version = "fFDOEXAA"
|
||||||
13
client_pack/mods/create-new-age.pw.toml
Normal file
13
client_pack/mods/create-new-age.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create: New Age"
|
||||||
|
filename = "create-new-age-1.2.0+neoforge-mc1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/FTeXqI9v/versions/IwtuwMZy/create-new-age-1.2.0%2Bneoforge-mc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "5075c6482b800af7044b594ad694855e7d56f386cb0354967eafe99d77e84b4e26ee7f880d287672d24d84ea8086fd074b7695e46632f32f215b31ce859ada72"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "FTeXqI9v"
|
||||||
|
version = "IwtuwMZy"
|
||||||
13
client_pack/mods/create-ore-excavation.pw.toml
Normal file
13
client_pack/mods/create-ore-excavation.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create Ore Excavation"
|
||||||
|
filename = "createoreexcavation-1.21-1.6.8.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/ResbpANg/versions/tivxiPTo/createoreexcavation-1.21-1.6.8.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "844ae32ff0d22f4d3c83db3bae2f6edc0f74cd1a530f900bf18829838d5a354b1e439e52688416130d9fd9a52c3310458bbdbc7458f4c1c1d8ffb088ae802d32"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "ResbpANg"
|
||||||
|
version = "tivxiPTo"
|
||||||
13
client_pack/mods/create.pw.toml
Normal file
13
client_pack/mods/create.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create"
|
||||||
|
filename = "create-1.21.1-6.0.10.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/LNytGWDc/versions/UjX6dr61/create-1.21.1-6.0.10.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "11cc8fc049d2f67f6548c7abfada6b82a3adb5c7ca410a742de04bbca76e03862c518721b88d806f6e6d768a4d68531fdb903a85859b25d1484d550cc7bafd4b"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "LNytGWDc"
|
||||||
|
version = "UjX6dr61"
|
||||||
13
client_pack/mods/createaddition.pw.toml
Normal file
13
client_pack/mods/createaddition.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Create Crafts & Additions"
|
||||||
|
filename = "createaddition-1.7.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/kU1G12Nn/versions/zlC557Yg/createaddition-1.7.0.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "267779bf2a215a0be39748e6a8e387322df697bc9de8e7e9558e6885aa790a2e73f334a55bfc5f97f4130d22262011433675fd0830ab1e3e3b10c9898d8a702c"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "kU1G12Nn"
|
||||||
|
version = "zlC557Yg"
|
||||||
13
client_pack/mods/creativecore.pw.toml
Normal file
13
client_pack/mods/creativecore.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "CreativeCore"
|
||||||
|
filename = "CreativeCore_NEOFORGE_v2.13.43_mc1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "cf6864c94f36b24f5900b4ae0998b2bc44dc5c7b"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8647581
|
||||||
|
project-id = 257814
|
||||||
13
client_pack/mods/cull-leaves.pw.toml
Normal file
13
client_pack/mods/cull-leaves.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Cull Leaves"
|
||||||
|
filename = "cullleaves-neoforge-4.1.1+1.21.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/GNxdLCoP/versions/V7PU4g8I/cullleaves-neoforge-4.1.1%2B1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "743c95fce00c21c45b0ecfe0a1b82b867c05807637c3f8aae06f77f1ddd898b4f0311bcfc970b071663d477221fd7acec6c6f75d460601d709eed1f0a64087a9"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "GNxdLCoP"
|
||||||
|
version = "V7PU4g8I"
|
||||||
13
client_pack/mods/curios.pw.toml
Normal file
13
client_pack/mods/curios.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Curios API"
|
||||||
|
filename = "curios-neoforge-9.5.1+1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/vvuO3ImH/versions/yohfFbgD/curios-neoforge-9.5.1%2B1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "5981a267686b744e7e3c227f78cbcd5267c14ac6979a28e814695f4589273998563147207fef4a5cdb7cdbdc39797cd95d9e4abadb55869f18e02a38d0654ae5"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "vvuO3ImH"
|
||||||
|
version = "yohfFbgD"
|
||||||
13
client_pack/mods/deeperdarker.pw.toml
Normal file
13
client_pack/mods/deeperdarker.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Deeper and Darker"
|
||||||
|
filename = "deeperdarker-neoforge-1.21.1-1.4.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "b6094adde68bd4b909bc75c64901e1f3fb99ad8f"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8201775
|
||||||
|
project-id = 659011
|
||||||
13
client_pack/mods/dimensionaldoors.pw.toml
Normal file
13
client_pack/mods/dimensionaldoors.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Dimensional Doors"
|
||||||
|
filename = "dimdoors-neoforge-1.21.1-6.2.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/b8Q0BxnV/versions/luZyhz73/dimdoors-neoforge-1.21.1-6.2.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "0e59bc1aeebb959eda7903d53980f013cb568d02e3cdf22886ec676d41e1926e1ee833cbc307a6dcabcdd6854c4490a2c7481a0d35ca6f37de94bb27d1ab4a54"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "b8Q0BxnV"
|
||||||
|
version = "luZyhz73"
|
||||||
13
client_pack/mods/dimensionfixer.pw.toml
Normal file
13
client_pack/mods/dimensionfixer.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Dimension Fixer"
|
||||||
|
filename = "dimensionfixer-neoforge-0.0.10+1.21.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/hJmXo78w/versions/3Yki4BfD/dimensionfixer-neoforge-0.0.10%2B1.21.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "bf62225a591aad832b30dafc490648c5ad7278d83f827b6cdbbab6f55169250c5752151149a7f7de488bce6a5f458f101af7a5a4dc342f79f3f56a351f8558bd"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "hJmXo78w"
|
||||||
|
version = "3Yki4BfD"
|
||||||
13
client_pack/mods/dynamic-fps.pw.toml
Normal file
13
client_pack/mods/dynamic-fps.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Dynamic FPS"
|
||||||
|
filename = "dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "35b17e95b2b65930116ccc83e0cc358ac1bfcf9e"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 7546938
|
||||||
|
project-id = 335493
|
||||||
13
client_pack/mods/entangled.pw.toml
Normal file
13
client_pack/mods/entangled.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Entangled"
|
||||||
|
filename = "entangled-1.3.21-neoforge-mc1.21.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "72d63d64ee774b89302e0d6b220757ba11b6ec4f"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 7783144
|
||||||
|
project-id = 301034
|
||||||
13
client_pack/mods/entityculling.pw.toml
Normal file
13
client_pack/mods/entityculling.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Entity Culling"
|
||||||
|
filename = "entityculling-neoforge-1.10.5-mc1.21.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/5zRIon6w/entityculling-neoforge-1.10.5-mc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "0c22502b84b13d8ac6daffe14ac77e7306b5b7a48f5cd9b3950d9e1d60b3786104aa035fbfdb208b1c9a75ad0e356301a774da32edc3f71cb3a53e2d28fd39e6"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "NNAgCjsB"
|
||||||
|
version = "5zRIon6w"
|
||||||
13
client_pack/mods/every-compat.pw.toml
Normal file
13
client_pack/mods/every-compat.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Every Compat (Wood Good)"
|
||||||
|
filename = "everycomp-1.21-2.11.50-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "ffd9fece7244663ed8f3e90f1091ad31a5b36bec"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8680544
|
||||||
|
project-id = 628539
|
||||||
13
client_pack/mods/extended-ae.pw.toml
Normal file
13
client_pack/mods/extended-ae.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Extended AE"
|
||||||
|
filename = "ExtendedAE-1.21-2.2.35-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/JiOqfoFM/versions/bC302UUP/ExtendedAE-1.21-2.2.35-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e5b76a50802087d999bf6c113bc635e8ade9f20e06f4d3276a144f4eaa3090fc3b6c67b9b6a1f7d0d036e48e69f601114a0cc92c5a8d45953f895718f806348c"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "JiOqfoFM"
|
||||||
|
version = "bC302UUP"
|
||||||
13
client_pack/mods/extendedae-plus.pw.toml
Normal file
13
client_pack/mods/extendedae-plus.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "ExtendedAE-Plus"
|
||||||
|
filename = "extendedae_plus-1.5.5.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/xr109llC/versions/BdDOfMzg/extendedae_plus-1.5.5.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "c1211f90af315542b4a6092bf8ce59fdb6afd100ebcb8315bab08f08d1829492740002eb5c7ef4cae5dc7bd48b38d4d16f84b9ff014fae2115450df2c2a5ab58"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "xr109llC"
|
||||||
|
version = "BdDOfMzg"
|
||||||
13
client_pack/mods/fast-pipes.pw.toml
Normal file
13
client_pack/mods/fast-pipes.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "FastPipes"
|
||||||
|
filename = "fastpipes-1.21.1-1.3.7.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/vLNEmWij/versions/hJEwLkgm/fastpipes-1.21.1-1.3.7.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "112092240eacaf114eb442135cf873bcb8eee11d9565be2389119d7732052876e00145bc22fe337ae5dad3810df103efe8ef87f7c200521084f3678452bf4cf0"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "vLNEmWij"
|
||||||
|
version = "hJEwLkgm"
|
||||||
13
client_pack/mods/ferrite-core.pw.toml
Normal file
13
client_pack/mods/ferrite-core.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "FerriteCore"
|
||||||
|
filename = "ferritecore-7.0.3-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/uXXizFIs/versions/x7kQWVju/ferritecore-7.0.3-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "19af89a2075bb10a63884fa853ebf84b02c79dc3242430ecdad056fd764fdcde367a7303276b329df01b0736e2ef264c5d80c7dc92c6aebd244f556a230bb417"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "uXXizFIs"
|
||||||
|
version = "x7kQWVju"
|
||||||
13
client_pack/mods/flux-networks.pw.toml
Normal file
13
client_pack/mods/flux-networks.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Flux Networks"
|
||||||
|
filename = "FluxNetworks-1.21.1-8.0.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "183342f454428084748f2784c8efd748664a9f9c"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 6089446
|
||||||
|
project-id = 248020
|
||||||
13
client_pack/mods/forgified-fabric-api.pw.toml
Normal file
13
client_pack/mods/forgified-fabric-api.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Forgified Fabric API"
|
||||||
|
filename = "forgified-fabric-api-0.116.15+2.3.4+1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Aqlf1Shp/versions/K4hHKnnI/forgified-fabric-api-0.116.15%2B2.3.4%2B1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "2de84db829cae926f7a90d8d828114b8d8d735ca230d518c6c3772f6f25b48838b209f75d7c198ba3bb6ec5a64d12094c7b7dacc76af387263a50e97e07c262e"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Aqlf1Shp"
|
||||||
|
version = "K4hHKnnI"
|
||||||
13
client_pack/mods/framedblocks.pw.toml
Normal file
13
client_pack/mods/framedblocks.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "FramedBlocks"
|
||||||
|
filename = "FramedBlocks-10.6.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/wbgfS34j/versions/FBXGqSP5/FramedBlocks-10.6.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "051d07cb372bfafd746ff658ef2ad3485606328e445099c17b499b14df6844a0c75e8c6decaff1267934fbd6dfaa0eb1938906b0dbeaa20500c1789b4175e3b6"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "wbgfS34j"
|
||||||
|
version = "FBXGqSP5"
|
||||||
13
client_pack/mods/ftb-chunks-forge.pw.toml
Normal file
13
client_pack/mods/ftb-chunks-forge.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "FTB Chunks (NeoForge)"
|
||||||
|
filename = "ftb-chunks-neoforge-2101.1.21.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "37e1c12393d44d5f3e612cf9a5958dd8f1d77675"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8520252
|
||||||
|
project-id = 314906
|
||||||
13
client_pack/mods/ftb-library-forge.pw.toml
Normal file
13
client_pack/mods/ftb-library-forge.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "FTB Library (NeoForge)"
|
||||||
|
filename = "ftb-library-neoforge-2101.1.35.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "9922fa358983120edeed22194bf02bcf9c859fbb"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8569579
|
||||||
|
project-id = 404465
|
||||||
13
client_pack/mods/ftb-quests-forge.pw.toml
Normal file
13
client_pack/mods/ftb-quests-forge.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "FTB Quests (NeoForge)"
|
||||||
|
filename = "ftb-quests-neoforge-2101.1.32.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "9710c0ff4506cad97af4f75b96738eb8cd369eed"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8676238
|
||||||
|
project-id = 289412
|
||||||
13
client_pack/mods/ftb-teams-forge.pw.toml
Normal file
13
client_pack/mods/ftb-teams-forge.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "FTB Teams (NeoForge)"
|
||||||
|
filename = "ftb-teams-neoforge-2101.1.10.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "363376ae0fb22cb0527170fdf6a066d1da9b0225"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 7878281
|
||||||
|
project-id = 404468
|
||||||
13
client_pack/mods/functional-storage.pw.toml
Normal file
13
client_pack/mods/functional-storage.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Functional Storage"
|
||||||
|
filename = "functionalstorage-1.21.1-1.5.8.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "f5978bb49b71e94d7063502c0fad0202ebbefbcc"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8459097
|
||||||
|
project-id = 556861
|
||||||
13
client_pack/mods/fusion-connected-textures.pw.toml
Normal file
13
client_pack/mods/fusion-connected-textures.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Fusion (Connected Textures)"
|
||||||
|
filename = "fusion-1.3.12-neoforge-mc1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "79c0c6b6a2d9c9a04298df9a88bb71a93e885235"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8536618
|
||||||
|
project-id = 854949
|
||||||
13
client_pack/mods/fzzy-config.pw.toml
Normal file
13
client_pack/mods/fzzy-config.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Fzzy Config"
|
||||||
|
filename = "fzzy_config-0.7.6+1.21+neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/hYykXjDp/versions/MAPG6cXE/fzzy_config-0.7.6%2B1.21%2Bneoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "6071890aba7f2273c9fd508914acc7850de9d986423760f9ce416875ffa04eea2ad71a7a6f4d5f90f0625a672f6f54606778d11151b155f3fd98c223c61a4a6d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "hYykXjDp"
|
||||||
|
version = "MAPG6cXE"
|
||||||
13
client_pack/mods/geckolib.pw.toml
Normal file
13
client_pack/mods/geckolib.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "GeckoLib"
|
||||||
|
filename = "geckolib-neoforge-1.21.1-4.9.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "14c64013cadee7d28f3685f94350f9a4d2ec6d86"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 8350073
|
||||||
|
project-id = 388172
|
||||||
13
client_pack/mods/glodium.pw.toml
Normal file
13
client_pack/mods/glodium.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Glodium"
|
||||||
|
filename = "Glodium-1.21-2.2-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/UhW5uCKw/versions/pfbmdJ3b/Glodium-1.21-2.2-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "56a387a1bdaf0146c9a7e14de0aca8b6f53f25d3ba9d46255f142043387282ed9e4fa0011d309e32d9ffe5362b129c07e301226dd4ac11eda9a4f42f27c0b5d1"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "UhW5uCKw"
|
||||||
|
version = "pfbmdJ3b"
|
||||||
13
client_pack/mods/guideme.pw.toml
Normal file
13
client_pack/mods/guideme.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "GuideME"
|
||||||
|
filename = "guideme-21.1.17.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Ck4E7v7R/versions/rduAfwb7/guideme-21.1.17.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "8b5d8cf7592d7b4759f5347c5acd1b0eb46403437b10b900f535e4cdde59ab1b37d57b71f3f67cdc99a66d55ad5d760f51b55ba2bc50aecf538f8572003e4cbf"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Ck4E7v7R"
|
||||||
|
version = "rduAfwb7"
|
||||||
13
client_pack/mods/handcrafted.pw.toml
Normal file
13
client_pack/mods/handcrafted.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Handcrafted"
|
||||||
|
filename = "handcrafted-neoforge-1.21.1-4.0.3.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "8ecd27f1d66f9b742cfae3c8ffa773765f574b52"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 6330030
|
||||||
|
project-id = 538214
|
||||||
13
client_pack/mods/hologenica.pw.toml
Normal file
13
client_pack/mods/hologenica.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Hologenica"
|
||||||
|
filename = "hologenica-1.0.2-neoforge-1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/huOhn9zP/versions/ZcZ8jcmi/hologenica-1.0.2-neoforge-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "0bb65380e264c12f5586d6d9562216e248e58588ab0faaa5bcfce68eee46ddeab65c41576b853c00cc792c1a7fc7b5385efe1807c466f35e3f8ca2ef2cdfb506"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "huOhn9zP"
|
||||||
|
version = "ZcZ8jcmi"
|
||||||
13
client_pack/mods/immediatelyfast.pw.toml
Normal file
13
client_pack/mods/immediatelyfast.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "ImmediatelyFast"
|
||||||
|
filename = "ImmediatelyFast-NeoForge-1.6.12+1.21.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/B2MHnfkW/ImmediatelyFast-NeoForge-1.6.12%2B1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "853c8746d0b28f97cd3eb7e9e55967f98d6c358f609b9db2c4d2d7afee76728d827bad8f3d73d6a0b7c5e36a820779f299cdcda70191e3832d5bd0f2cf034d56"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "5ZwdcRci"
|
||||||
|
version = "B2MHnfkW"
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue