forked from Thaewyn/operation-jungle-knight
-
Notifications
You must be signed in to change notification settings - Fork 0
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 Thaewyn#21 from DevelopThisOfficial/issue_14-enemy…
…_data_structure Issue 14 enemy data structure
- Loading branch information
Showing
6 changed files
with
135 additions
and
41 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"0": { | ||
"id": 0, | ||
"attack_name": "something", | ||
"attack_desc": "basic attack", | ||
"animation_id": 0, | ||
"effect_ids": [], | ||
"damage_type": 0, | ||
"damage_name": "scramble", | ||
"strength": 5 | ||
}, | ||
"1": { | ||
"id": 1, | ||
"attack_name": "fireball", | ||
"attack_desc": "shoots a fireball", | ||
"animation_id": 1, | ||
"effect_ids": [2], | ||
"damage_type": 2, | ||
"damage_name": "intercept", | ||
"strength": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"0": { | ||
"id": 0, | ||
"enemy_name": "Interference Node", | ||
"enemy_desc": "Interference node attempts to scramble your connection to the server.", | ||
"defence": 0, | ||
"damage_type": 0, | ||
"damage_name": "scramble", | ||
"max_health": 10, | ||
"attack_ids": [1,1,5] | ||
}, | ||
"1": { | ||
"id": 1, | ||
"enemy_name": "Sniffer", | ||
"enemy_desc": "Sniffer attempts to identify your precise location.", | ||
"defence": 2, | ||
"damage_type": 1, | ||
"damage_name": "decode", | ||
"max_health": 8, | ||
"attack_ids": [3,2,4] | ||
}, | ||
"2": { | ||
"id": 2, | ||
"enemy_name": "Worm", | ||
"enemy_desc": "W0rm tries to burrow into your system", | ||
"defence": 2, | ||
"damage_type": 1, | ||
"damage_name": "decode", | ||
"max_health": 8, | ||
"attack_ids": [3,2,4] | ||
}, | ||
"3": { | ||
"id": 3, | ||
"enemy_name": "Firewall", | ||
"enemy_desc": "Buffs other enemy defense.", | ||
"defence": 2, | ||
"damage_type": 1, | ||
"damage_name": "decode", | ||
"max_health": 8, | ||
"attack_ids": [3,2,4] | ||
}, | ||
"4": { | ||
"id": 4, | ||
"enemy_name": "Sentry", | ||
"enemy_desc": "Alerts the system when intruders are detected", | ||
"defence": 2, | ||
"damage_type": 1, | ||
"damage_name": "decode", | ||
"max_health": 8, | ||
"attack_ids": [3,2,4] | ||
}, | ||
"5": { | ||
"id": 5, | ||
"enemy_name": "Honeypot", | ||
"enemy_desc": "Aborbs attacks targeted at other ICE.", | ||
"defence": 2, | ||
"damage_type": 1, | ||
"damage_name": "decode", | ||
"max_health": 8, | ||
"attack_ids": [3,2,4] | ||
}, | ||
"6": { | ||
"id": 6, | ||
"enemy_name": "Trapdoor", | ||
"enemy_desc": "Trapdoor baits an attack and counterattacks.", | ||
"defence": 2, | ||
"damage_type": 1, | ||
"damage_name": "decode", | ||
"max_health": 8, | ||
"attack_ids": [3,2,4] | ||
} | ||
} |
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
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