added fun mods
This commit is contained in:
parent
7d6bc74246
commit
5e59af5e8e
15
index.toml
15
index.toml
@ -434,6 +434,11 @@ file = "mods/modmenu.pw.toml"
|
||||
hash = "e2a93bfe1d1e55657afd64a361b1d05929c8984332f1c39afd957eb7f88e9a62"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/moonlight.pw.toml"
|
||||
hash = "ff0b7cc43e94918d6ed53872cc2abea33d90b3bb3fff2f0dee50f571a9fbabc7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/morechathistory.pw.toml"
|
||||
hash = "d1558ff187abe468110fef11eee834aa3c03df732e706ac16e221425b538da4d"
|
||||
@ -459,6 +464,16 @@ file = "mods/move-minecarts.pw.toml"
|
||||
hash = "bdcf91bb9a2fbe5825fe80ad2bf9ad565e11da920b9dc8363b8662d3c6390bc0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/moyai.pw.toml"
|
||||
hash = "9ade6d933c054fdf833076aa8e8953f26431a683a007227f1933d738bacc8f06"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mystical-oak-tree.pw.toml"
|
||||
hash = "2e6ce38ed7d1e8491d0d7f4936dc021323f40409c6e506f87190a25f1b354091"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/no-chat-reports.pw.toml"
|
||||
hash = "7ca62a9da5c2ec9f0a8bed5394021c959e90077db16b313be44f4c8736f7fbf5"
|
||||
|
13
mods/moonlight.pw.toml
Normal file
13
mods/moonlight.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Moonlight Lib"
|
||||
filename = "moonlight-1.20-2.8.14-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/twkfQtEc/versions/PXyqXIbn/moonlight-1.20-2.8.14-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "a9dd1eb7d32d0b289a7a1d96a1ff73e79f8ae054"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "twkfQtEc"
|
||||
version = "PXyqXIbn"
|
13
mods/moyai.pw.toml
Normal file
13
mods/moyai.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Moyai"
|
||||
filename = "moyai-1.20-2.0.2-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/z7WhFkyW/versions/enqrTZWH/moyai-1.20-2.0.2-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "3c9f896898180928f9a2fd9291daf962ea9a025d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "z7WhFkyW"
|
||||
version = "enqrTZWH"
|
13
mods/mystical-oak-tree.pw.toml
Normal file
13
mods/mystical-oak-tree.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Mystical Oak Tree"
|
||||
filename = "mysticaloaktree-1.20-1.11-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/eUma2vmY/versions/bfCjSjSy/mysticaloaktree-1.20-1.11-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "40dec6434132e0bb85f38ba8594246d4d8769307"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "eUma2vmY"
|
||||
version = "bfCjSjSy"
|
@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "444ad82f43fc3c66f92a69e962b940d74c43612d442681ba09a5c68818d0348e"
|
||||
hash = "fb19f5e873272f3c50b39ffdf656e899780d21192f15aca1e1a5123432838d8a"
|
||||
|
||||
[versions]
|
||||
fabric = "0.14.22"
|
||||
|
8055
review/all.json
8055
review/all.json
File diff suppressed because one or more lines are too long
@ -71,6 +71,7 @@ export def "updateMods" [] {
|
||||
upsert link {|row|
|
||||
$"https://modrinth.com/mod/($row.slug)"
|
||||
} |
|
||||
sort-by slug |
|
||||
save -f all.json
|
||||
)
|
||||
(
|
||||
@ -96,6 +97,26 @@ def kindOf [client_side: string, server_side: string] string {
|
||||
}
|
||||
}
|
||||
|
||||
export def approve [...approve: string] {
|
||||
(
|
||||
open all.json |
|
||||
upsert review {
|
||||
if ($in.slug in $approve) {
|
||||
false
|
||||
} else {
|
||||
if ("review" in $in) {
|
||||
($in.review | into bool)
|
||||
} else {
|
||||
false
|
||||
}
|
||||
}
|
||||
} |
|
||||
save all.json -f
|
||||
)
|
||||
updateMods
|
||||
open all.json | where slug in $approve | select slug review
|
||||
}
|
||||
|
||||
export def review [...review: string] {
|
||||
(
|
||||
open all.json |
|
||||
|
Loading…
Reference in New Issue
Block a user