-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodData.ts
More file actions
80 lines (76 loc) · 2.93 KB
/
modData.ts
File metadata and controls
80 lines (76 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
export type ModContributorType = { name: string, role: string }
export type ModGuideType = { name: string, route: string }
export type ModInfoType = {
route: string,
name: string,
source: string,
wiki: string,
license: string,
description: string,
download: string,
contributors: ModContributorType[],
image: string,
guides: ModGuideType[]
}
export const projectNublarInfo: ModInfoType = {
route: "projectnublar",
name: "Project Nublar",
description: "Project Nublar is a mod for Minecraft that adds things related to Jurassic Park to the game.",
source: "https://github.com/Dumb-Code/ProjectNublar",
wiki: "https://github.com/Dumb-Code/ProjectNublar/wiki",
license: "https://github.com/Dumb-Code/ProjectNublar/blob/master/LICENSE.md",
download: "",
contributors: [
{ name: "wyn price", role: "developer" },
{ name: "brownboiiwonder", role: "modeler" },
{ name: "neusfear", role: "various"},
{ name: "brotat", role: "texturer"},
{ name: "mazikeen", role: "texturer"},
{ name: "hyper", role: "animator"},
{ name: "gegy", role: "programmer"},
{ name: "sindavar", role: "modeler & Texturer"},
{ name: "lucca", role: "concept artist"},
{ name: "floofhips", role: "texturer"},
{ name: "loxures", role: "modeler"},
{ name: "thebradqq", role: "Modeler & Texturer"},
{ name: "MX", role: "animator"},
{ name: "rodentman87", role: "programmer"},
{ name: "omar_tuareg", role: "animator"},
{ name: "Mr.BizarreMegaloceros", role: "modeler"},
{ name: "fred", role: "texturer"},
{ name: "Nyfaria", role: "programmer"}
],
image: "/images/project_nublar/squad.jpg",
guides: [
{name: "Mob Genetics", route: "mob-genetics"}
]
}
export const dumbLibraryInfo: ModInfoType = {
route: "dumblibrary",
name: "DumbLibrary",
description: "A libary mod used in DumbCode's mods.",
source: "https://github.com/Dumb-Code/DumbLibrary",
wiki: "https://github.com/Dumb-Code/DumbLibrary/wiki",
license: "https://github.com/Dumb-Code/DumbLibrary/blob/master/LICENSE.md",
download: "https://www.curseforge.com/minecraft/mc-mods/dumb-library",
contributors: [
{ name: "wyn price", role: "developer" },
{ name: "gegy", role: "contributor"}
],
image: "/images/dumb_library.bmp",
guides: []
}
export const gradleHookInfo: ModInfoType = {
route: "gradlehook",
name: "GradleHook",
description: "GradleHook is a gradle plugin that adds a POST request as a gradle task.",
source: "https://github.com/Dumb-Code/GradleHook",
wiki: "https://github.com/Dumb-Code/GradleHook/blob/master/README.md",
license: "https://github.com/Dumb-Code/GradleHook/blob/master/LICENSE",
download: "",
contributors: [
{ name: "wyn price", role: "developer" }
],
image: "/images/gradle_hook.bmp",
guides: []
}