-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDownloads.js
More file actions
54 lines (45 loc) · 2.91 KB
/
Downloads.js
File metadata and controls
54 lines (45 loc) · 2.91 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
import React from 'react';
import Template from '../../Template/Template';
import Card from '../../Card/Card';
import Button from '../../Button/Button';
import EmojiGood from '../../Emoji/good.png';
function Downloads() {
return (
<Template>
<h1 style={{ marginTop: '48px' }}>Downloads</h1>
<h2>Project Releases</h2>
<Card title={'Cortex Command Community Project'}>
<p style={{
marginTop: '8px', marginBottom: '18px',
}}>This is where you can find the community's plans for Cortex Command's future. There'll be rebalancing, new weapons, units, and much <i>much</i> more.</p>
<Button link to='https://github.com/cortex-command-community/Cortex-Command-Community-Project-Data/'>View on Github</Button>
<Button link to='https://github.com/cortex-command-community/Cortex-Command-Community-Project-Data/releases/download/v0.1.0-pre3.0/Cortex.Command.zip'>Download Pre 3 (.exe)(latest)</Button>
</Card>
<h2>Mods</h2>
<Card title={'Get Mods'}>
<p style={{
marginTop: '8px', marginBottom: '18px',
}}>What is Cortex Command without <strong>MODS</strong>? Luckily, we've got you covered. There are 2 great ways to get mods and if neither of them suit your fancy, you can use the Legacy Mod Converter to convert mods from the Data Realms Fan Forums or the Steam Workshop!</p>
<Button link to='https://discord.gg/yuZvazK'>Community Discord <img width='14px' height='14px' marginBottom='-12px' src={EmojiGood}/></Button>
<Button link to='https://cccp.mod.io/'>Mod.io</Button>
</Card>
<h2>Modding Tools</h2>
<Card title={'Legacy Mod Converter'}>
<p style={{
marginTop: '8px', marginBottom: '18px',
}}>This project automates most of the conversion work required to convert the legacy Cortex Command mods into Cortex Command Community Project compatible mods.</p>
<Button link to='https://github.com/cortex-command-community/Cortex-Command-Legacy-Mod-Converter'>View on Github</Button>
<Button link to='https://github.com/cortex-command-community/Cortex-Command-Legacy-Mod-Converter/releases/download/pre3.0.2/_Mod.Converter.zip'>Download Source (.py)(latest)</Button>
</Card>
<Card title={'CCCP Bender'}>
<p style={{
marginTop: '8px', marginBottom: '18px',
}}>The purpose of this tool is to make the life of modders easier by automagically generating bent limb sprites from limb parts.</p>
<Button link to='https://github.com/cortex-command-community/Cortex-Command-Community-Bender'>View on Github</Button>
<Button link to='https://github.com/cortex-command-community/Cortex-Command-Community-Bender/releases/download/1.3.0/CCCP.Bender.1.3.0.zip'>Download Bender 1.3.0 (.exe)(latest)</Button>
</Card>
<div style={{ height: '24px' }} />
</Template >
);
}
export default Downloads;