-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from TemirkhanN/main
Item types, activities carcass, qa tools
- Loading branch information
Showing
98 changed files
with
3,033 additions
and
895 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ log.txt | |
.phpunit.result.cache | ||
var/** | ||
!var/.gitkeep | ||
.phpstan | ||
.phpcs-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Lumberjack: | ||
- id: 1 | ||
name: 'Hollow tree' | ||
description: 'Hollow tree. Can be sold as fuel for a coin or two.' | ||
complexity: 1 | ||
reward_exp: 5 | ||
reward_item_id: 6 | ||
|
||
- id: 2 | ||
name: 'Oak tree' | ||
description: 'Strong tree. They say hogs love hanging around it.' | ||
complexity: 3 | ||
reward_exp: 8 | ||
reward_item_id: 7 | ||
Farmer: | ||
- id: 1 | ||
name: 'Hay field' | ||
description: 'Dried grass that is usually used to feed cows.' | ||
complexity: 1 | ||
reward_exp: 5 | ||
reward_item_id: 8 | ||
- id: 2 | ||
name: 'Potato field' | ||
description: 'Grows underground. Does not need much and yields plenty of resource.' | ||
complexity: 3 | ||
reward_exp: 8 | ||
reward_item_id: 9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,8 @@ | |
name: 'Restore stamina' | ||
type: 1 | ||
power: 5 | ||
- | ||
item_id: 9 | ||
name: 'Restore stamina' | ||
type: 1 | ||
power: 3 |
Oops, something went wrong.