From 914419bf06ab2b8f9d869a4975d62a749bf10742 Mon Sep 17 00:00:00 2001 From: DeXtroTip Date: Fri, 2 Sep 2016 01:44:22 +0100 Subject: [PATCH 1/3] Updated docs/configuration_files.md about CompleteTutorial --- docs/configuration_files.md | 44 +++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/docs/configuration_files.md b/docs/configuration_files.md index 1b3e491945..9b3e96c871 100644 --- a/docs/configuration_files.md +++ b/docs/configuration_files.md @@ -47,6 +47,7 @@ - [Egg Incubator](#egg-incubator) - [ShowBestPokemon](#showbestpokemon) - [Telegram Task](#telegram-task) +- [CompleteTutorial](#completetutorial) #Configuration files @@ -1017,3 +1018,46 @@ Bot answer on command '/info' self stats. } } ``` + +## CompleteTutorial +[[back to top](#table-of-contents)] + +### Description +[[back to top](#table-of-contents)] + +Completes the tutorial: + +* Legal screen +* Avatar selection +* First Pokemon capture +* Set nickname +* Firte time experience +* Pick team at level 5 + + +### Options +[[back to top](#table-of-contents)] + +* `nickname` : Nickname to be used ingame. +* `team` : Team to pick after reaching level 5. + +Available `team` : +``` +0: Neutral (No team) +1: Blue (Mystic) +2: Red (Valor) +3: Yellow (Instinct) +``` + +### Sample configuration +[[back to top](#table-of-contents)] +```json +{ + "type": "CompleteTutorial", + "config": { + "enabled": true, + "nickname": "PokemonGoF", + "team": 2 + } +} +``` \ No newline at end of file From ed8bd7160393205e842e7b43d05dc63bf62b53eb Mon Sep 17 00:00:00 2001 From: DeXtroTip Date: Fri, 2 Sep 2016 01:47:00 +0100 Subject: [PATCH 2/3] Added defualt team --- docs/configuration_files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration_files.md b/docs/configuration_files.md index 9b3e96c871..4e977c3d4e 100644 --- a/docs/configuration_files.md +++ b/docs/configuration_files.md @@ -1039,7 +1039,7 @@ Completes the tutorial: [[back to top](#table-of-contents)] * `nickname` : Nickname to be used ingame. -* `team` : Team to pick after reaching level 5. +* `team` : `Default: 0`. Team to pick after reaching level 5. Available `team` : ``` From 85c3e2d29d8a54c22293c398b8341f6724f71932 Mon Sep 17 00:00:00 2001 From: DeXtroTip Date: Fri, 2 Sep 2016 01:47:55 +0100 Subject: [PATCH 3/3] Sample configuration fix --- docs/configuration_files.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/configuration_files.md b/docs/configuration_files.md index 4e977c3d4e..b7e4db6495 100644 --- a/docs/configuration_files.md +++ b/docs/configuration_files.md @@ -1054,10 +1054,10 @@ Available `team` : ```json { "type": "CompleteTutorial", - "config": { - "enabled": true, - "nickname": "PokemonGoF", - "team": 2 - } + "config": { + "enabled": true, + "nickname": "PokemonGoF", + "team": 2 + } } ``` \ No newline at end of file