-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.js
77 lines (75 loc) · 2.45 KB
/
variables.js
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
const prfTexturesPath =
"https://github.com/zymex22/Project-RimFactory-Revived/raw/master/Textures/";
const prfWikiPath =
"https://github.com/zymex22/Project-RimFactory-Revived/wiki/";
const rwTexturesPath = "https://rimworldwiki.com/images/";
const rwWikiPath = "https://rimworldwiki.com/wiki/";
const itemDict = {
PRFMachineFrame: {
src: `${prfTexturesPath}Common/MachineFrame.png?raw=true`,
link: `${prfWikiPath}/Construction-and-Crafting-Resources#machine-frame`
},
Steel: {
src: `${prfTexturesPath}c/c9/Steel.png`,
link: `${prfTexturesPath}Steel`
},
ComponentIndustrial: {
src: `${prfTexturesPath}4/40/Component.png`,
link: `${prfTexturesPath}Component`
},
RimFactory_Data_Disk: {
src: `${prfTexturesPath}SAL3/datadisk.png?raw=true`,
link: `${prfWikiPath}/Construction-and-Crafting-Resources#recipe-data-disk`
},
PRFRoboticArm: {
src: `${prfTexturesPath}Common/RoboticArm.png?raw=true`,
link: `${prfWikiPath}/Construction-and-Crafting-Resources#robotic-arm`
},
Plasteel: {
src: `${prfTexturesPath}c/c5/Plasteel.png`,
link: `${prfTexturesPath}Plasteel`
},
PRFWeakAIChip: {
src: `${prfTexturesPath}Common/WeakAICore.png?raw=true`,
link: `${prfWikiPath}/Construction-and-Crafting-Resources#weak-ai-chip`
},
PRFMachineFrameLarge: {
src: `${prfTexturesPath}Common/MachineFrameLarge.png?raw=true`,
link: `${prfWikiPath}/Construction-and-Crafting-Resources#adv-machine-frame`
},
PRFMachineFrameSmall: {
src: `${prfTexturesPath}Common/MachineFrameSmall.png?raw=true`,
link: `${prfWikiPath}/Construction-and-Crafting-Resources#simple-machine-frame`
},
WoodLog: {
src: `${prfTexturesPath}d/df/Wood.png`,
link: `${prfTexturesPath}Wood`
},
Gold: {
src: `${prfTexturesPath}1/10/Gold.png`,
link: `${prfTexturesPath}Gold`
},
Uranium: {
src: `${prfTexturesPath}3/31/Uranium.png`,
link: `${prfTexturesPath}Uranium`
},
Hay: {
src: `${prfTexturesPath}a/aa/Hay.png`,
link: `${prfTexturesPath}Hay`
},
PRFDroneModule: {
src: `${prfTexturesPath}Common/DroneModule.png?raw=true`,
link: `${prfWikiPath}/Construction-and-Crafting-Resources#drone-module`
},
AIPersonaCore: {
src: `${prfTexturesPath}f/f2/AI_persona_core.png`,
link: `${prfTexturesPath}AI_persona_core`
}
};
module.exports = {
prfTexturesPath,
prfWikiPath,
rwTexturesPath,
rwWikiPath,
itemDict
};