From 7883a3c030d721b55473d8b88729aad28e88c453 Mon Sep 17 00:00:00 2001 From: ntr Date: Mon, 31 Dec 2018 17:31:50 +1100 Subject: [PATCH] tutorial update --- client/src/tutorial.js | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/client/src/tutorial.js b/client/src/tutorial.js index 2ad48bbd..a730df71 100644 --- a/client/src/tutorial.js +++ b/client/src/tutorial.js @@ -25,29 +25,30 @@ Once you have a team ready press the New PVE Game button to start playing. `; const SKILL_PHASE_MESSAGE = ` -A cryps battle has three main phases. This first phase is called the SKILL PHASE. +A cryps battle has two main phases. This first phase is called the SKILL PHASE. Your cryps are positioned on the left, your opponent's are on the right. In the centre are your cryps' SKILLS, grayed out SKILLS are currently ON COOLDOWN. A skill's cooldown reduces on every turn that cryp does not use a skill with a cooldown. For the moment, drag ATTACK onto the opponent team to have your cryps attack them with physical damage. `; -const TARGET_PHASE_MESSAGE = ` -This phase is the TARGET PHASE. -In cryps you do not directly attack your opponent's cryps, you attack the opponent as a team -and you and your opponent choose which cryp is the TARGET of each ability. -Drag the incoming ATTACKS from the right hand side onto your own cryps. -It's wise to spread the damage around! -`; +// const TARGET_PHASE_MESSAGE = ` +// This phase is the TARGET PHASE. +// In cryps you do not directly attack your opponent's cryps, you attack the opponent as a team +// and you and your opponent choose which cryp is the TARGET of each ability. +// Drag the incoming ATTACKS from the right hand side onto your own cryps. +// It's wise to spread the damage around! +// `; const RESOLUTION_PHASE_MESSAGE = ` -Finally we come to the RESOLUTION PHASE. +The second phase is called the RESOLUTION PHASE. This phase happens automatically, every skill is RESOLVED in order of its SPEED. -This is important because attacks only RESOVLE while their caster is still able to use the skill, +This is important because attacks only RESOLVE while their caster is still able to use the skill, a fast skill that does a small amount of damage may KO an opponent cryp, causing any SKILLS they have used to no longer RESOLVE! Another example of this is the skill STUN. STUN causes an opponent cryp to be unable to use any -abilities for TWO TURNS (including the turn it resolves on). +abilities for TWO TURNS including the turn it resolves on. In other words it lasts for the rest of the turn it resolves on +and the whole next turn. Try it now! `; @@ -65,7 +66,7 @@ const STEPS = [ 'welcome', 'homepage', 'skillPhase', - 'targetPhase', + // 'targetPhase', 'resolutionPhase', 'finishPhase', 'none', @@ -119,7 +120,7 @@ function tutorial() { if (step === 'welcome') return showTutorial(WELCOME_MESSAGE, 'welcome', 'homepage'); if (step === 'homepage') return showTutorial(HOMEPAGE_MESSAGE, 'homepage', 'skillPhase'); if (step === 'skillPhase') return showTutorial(SKILL_PHASE_MESSAGE, 'skillPhase', 'targetPhase'); - if (step === 'targetPhase') return showTutorial(TARGET_PHASE_MESSAGE, 'targetPhase', 'resolutionPhase'); + // if (step === 'targetPhase') return showTutorial(TARGET_PHASE_MESSAGE, 'targetPhase', 'resolutionPhase'); if (step === 'resolutionPhase') return showTutorial(RESOLUTION_PHASE_MESSAGE, 'resolutionPhase', 'finishPhase'); if (step === 'finishPhase') return showTutorial(FINISH_PHASE_MESSAGE, 'finishPhase', 'none');