From 12231d3472957ac84a0f1c90bf0976d259960cfe Mon Sep 17 00:00:00 2001 From: John Bytheway Date: Sat, 2 May 2020 21:18:42 -0400 Subject: [PATCH] Add achievements for 10, 100 kills Another example of hiding. --- data/json/achievements.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/data/json/achievements.json b/data/json/achievements.json index 07e329328c9ba..3cf8c6d818600 100644 --- a/data/json/achievements.json +++ b/data/json/achievements.json @@ -12,6 +12,19 @@ "time_constraint": { "since": "game_start", "is": "<=", "target": "1 minute" }, "requirements": [ { "event_statistic": "num_avatar_kills", "is": ">=", "target": 1 } ] }, + { + "id": "achievement_kill_10_monsters", + "type": "achievement", + "name": "Decamate", + "requirements": [ { "event_statistic": "num_avatar_kills", "is": ">=", "target": 10 } ] + }, + { + "id": "achievement_kill_100_monsters", + "type": "achievement", + "name": "Centinel", + "hidden_by": [ "achievement_kill_10_monsters" ], + "requirements": [ { "event_statistic": "num_avatar_kills", "is": ">=", "target": 100 } ] + }, { "id": "achievement_survive_one_day", "type": "achievement",