This repository has been archived by the owner on Sep 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created some monsters, adventures and started 'explorer' method
- Loading branch information
1 parent
e5d1cbd
commit b9d2393
Showing
5 changed files
with
73 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"typescript.tsdk": "node_modules\\typescript\\lib" | ||
} |
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,32 @@ | ||
{ | ||
"1": { | ||
"level": 1, | ||
"name": "Murlock's Home", | ||
"monsters": { | ||
"1": { | ||
"name": "Murlock", | ||
"level": 1, | ||
"damage": 2, | ||
"shield": 0, | ||
"givedXp": 5, | ||
"givedGold": 2 | ||
}, | ||
"2": { | ||
"name": "Murlock-Mage", | ||
"level": 1, | ||
"damage": 3, | ||
"shield": 0, | ||
"givedXp": 6, | ||
"givedGold": 3 | ||
}, | ||
"3": { | ||
"name": "King Murlock", | ||
"level": 1, | ||
"damage": 5, | ||
"shield": 2, | ||
"givedXp": 10, | ||
"givedGold": 5 | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { Monster } from "./monster"; | ||
|
||
export interface Adventure { | ||
level: number; | ||
name: string; | ||
monsters: Monster[]; | ||
} |
This file was deleted.
Oops, something went wrong.