Skip to content

Commit 74993eb

Browse files
committed
first commit
0 parents  commit 74993eb

File tree

12 files changed

+147
-0
lines changed

12 files changed

+147
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
vendor
3+
composer.lock

composer.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "timongorpg/creatures",
3+
"description": "Creatures package for Timongo",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Hudson Pereira",
9+
"email": "hudson.byte@gmail.com"
10+
}
11+
],
12+
"require": {
13+
"league/flysystem": "^1.0"
14+
},
15+
"autoload": {
16+
"psr-4": {"Timongo\\Creatures\\": "src/"}
17+
}
18+
}

data/angry-sheep.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "Angry Sheep",
3+
"image": "sheep.gif",
4+
"level": 5,
5+
"health": 33,
6+
"attack": 8,
7+
"armor": 1,
8+
"magic_resistance": 1,
9+
"experience": 47,
10+
"gold": 5
11+
}

data/bug.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "Bug",
3+
"image": "bug.gif",
4+
"level": 1,
5+
"health": 10,
6+
"attack": 2,
7+
"armor": 0,
8+
"magic_resistance": 0,
9+
"experience": 25,
10+
"gold": 2
11+
}

data/snake.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "Snake",
3+
"image": "cobra.gif",
4+
"level": 2,
5+
"health": 13,
6+
"attack": 3,
7+
"armor": 1,
8+
"magic_resistance": 0,
9+
"experience": 32,
10+
"gold": 3
11+
}

data/toad.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "Toad",
3+
"image": "toad.gif",
4+
"level": 3,
5+
"health": 20,
6+
"attack": 5,
7+
"armor": 2,
8+
"magic_resistance": 1,
9+
"experience": 40,
10+
"gold": 4
11+
}

img/bug.gif

1.93 KB
Loading

img/cobra.gif

671 Bytes
Loading

img/sheep.gif

1.93 KB
Loading

img/toad.gif

2.94 KB
Loading

0 commit comments

Comments
 (0)