added files from web

This commit is contained in:
Ell 2021-07-07 15:05:57 +02:00
parent 300627e536
commit 64ce411c9c
25 changed files with 5529 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/src/node_modules

1
.htaccess Normal file
View File

@ -0,0 +1 @@
Options -Indexes

16
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent any
stages {
stage('Build') {
when {
branch 'main'
}
steps {
sh '''cd src
npm install
npx presskit build --output ../out --pretty-links --collapse-menu
cp ../out/** /var/www/press'''
}
}
}
}

1
src/.htaccess Normal file
View File

@ -0,0 +1 @@
Deny from all

54
src/data.xml Normal file
View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<company>
<title>Ellpeck Games</title>
<based-in>Aachen, Germany</based-in>
<founding-date>December 2019</founding-date>
<website>https://ellpeck.de</website>
<press-contact>press@ellpeck.de</press-contact>
<phone>+49 (0)241 45093753</phone>
<address>
<line>
Kastanienweg 27
</line>
<line>
52074 Aachen
</line>
<line>
Germany
</line>
</address>
<socials>
<social>
<name>Twitter</name>
<link>https://twitter.com/Ellpeck</link>
</social>
<social>
<name>Discord</name>
<link>https://ellpeck.de/discord</link>
</social>
</socials>
<description>Ellpeck is a student, programmer and indie game developer from Germany. He has released multiple of his projects, including the popular Minecraft mods Actually Additions and Nature's Aura, both of which have received over five million downloads. Currently, he is finishing his Computer Science degree and working on his passion project, an upcoming indie life simulation called Tiny Life.</description>
<history>From a young age, Ellpeck had an interest in computers and programming. He discovered the Minecraft modding communtiy, which inspired him to learn Java and make some mods of his own. After a few years, he started making small games as well and eventually taught himself C#, which lead him to create some more polished projects, including the Android game Touchy Tickets and his current main project, Tiny Life.</history>
<trailers>
<trailer>
<name>Tiny Life</name>
<youtube>HkQDooqdlRI</youtube>
</trailer>
<trailer>
<name>Touchy Tickets</name>
<youtube>pgfuI7xiirs</youtube>
</trailer>
</trailers>
<contacts>
<contact>
<name>Ellpeck</name>
<mail>me@ellpeck.de</mail>
</contact>
</contacts>
</company>

BIN
src/images/Portrait.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 475 KiB

BIN
src/images/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
src/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

5373
src/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

15
src/package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "src",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"presskit": "^0.13.0"
}
}

68
src/tinylife/data.xml Normal file
View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="utf-8"?>
<product>
<title>Tiny Life</title>
<release-dates>
<release-date>Public Alpha - 01 Nov, 2020</release-date>
<release-date>Full Release - Coming Soon</release-date>
</release-dates>
<website>https://tinylifegame.com</website>
<press-copy-request>https://account.keymailer.co/1573838734/products/126937</press-copy-request>
<platforms>
<platform>
<name>itch.io</name>
<link>https://ellpeck.itch.io/tiny-life</link>
</platform>
<platform>
<name>Steam</name>
<link>https://store.steampowered.com/app/1651490/Tiny_Life/</link>
</platform>
</platforms>
<prices>
<price>
<value>Pay what you want</value>
</price>
</prices>
<description>Tiny Life is a fun simulation game that tries to capture the essence of games like The Sims, but in an isometric pixelart style. In the game, you control a set of people that live together in a household. You take care of their daily needs, build their skills, forge new relationships... or just mess up their entire life in whatever way you can think of!</description>
<history>Tiny Life's creator, the solo indie developer Ellpeck, has always loved casual life simulation games like The Sims, Harvest Moon and Stardew Valley. For multiple years, he deemed the prospect of making a complex life simulation game similar to The Sims too difficult, until he started working on Tiny Life and realized that it is, indeed, quite the task. Nevertheless, he has been working on the game regularly for over a year and considers it his passion project.</history>
<features>
<feature>Create your own characters with unique personalities and skills and dress them however you like</feature>
<feature>Build houses and community spaces like parks and cafés and watch households inhabit them</feature>
<feature>Control your household and tell your characters what to do, from cooking food to learning complex skills like programming and painting</feature>
<feature>Have your characters interact, build relationships, grow families and live unique lives</feature>
<feature>Share your creations with the community by exporting lots and households from your game</feature>
<feature>Create additional content through the game's built-in C# modding API</feature>
</features>
<trailers>
<trailer>
<name>Public Alpha Trailer</name>
<youtube>HkQDooqdlRI</youtube>
</trailer>
</trailers>
<widgets>
<steam>1651490</steam>
<itch>807915</itch>
</widgets>
<credits>
<credit>
<person>Ellpeck</person>
<role>Creator</role>
<website>https://ellpeck.de</website>
</credit>
</credits>
<contacts>
<contact>
<name>Ellpeck</name>
<mail>me@ellpeck.de</mail>
</contact>
</contacts>
</product>

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 459 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 740 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 433 KiB