Skip to content

Commit 467d0a6

Browse files
committed
improving wording for some levels
1 parent 5e716ec commit 467d0a6

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

towers/beginner/level_002.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# --------
44

55
description "It is too dark to see anything, but you smell sludge nearby."
6-
tip "Use warrior.feel.empty? to see if there's anything in front of you, and warrior.attack! to fight it. Remember, you can only do one action (ending in !) per turn."
6+
tip "Use warrior.feel.empty? to see if there is anything in front of you, and warrior.attack! to fight it. Remember, you can only do one action (ending in !) per turn."
77
clue "Add an if/else condition using warrior.feel.empty? to decide whether to warrior.attack! or warrior.walk!."
88

99
time_bonus 20

towers/beginner/level_003.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
description "The air feels thicker than before. There must be a horde of sludge."
66
tip "Be careful not to die! Use warrior.health to keep an eye on your health, and warrior.rest! to earn 10% of max health back."
7-
clue "When there's no enemy ahead of you, call warrior.rest! until health is full before walking forward."
7+
clue "When there is no enemy ahead of you call warrior.rest! until health is full before walking forward."
88

99
time_bonus 35
1010
ace_score 71

towers/beginner/level_005.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# -------
44

55
description "You hear cries for help. Captives must need rescuing."
6-
tip "Use warrior.feel.captive? to see if there's a captive, and warrior.rescue! to rescue him. Don't attack captives."
7-
clue "Don't forget to constantly check if you're taking damage and rest until your health is full if you aren't taking damage."
6+
tip "Use warrior.feel.captive? to see if there is a captive and warrior.rescue! to rescue him. Don't attack captives."
7+
clue "Don't forget to constantly check if you're taking damage. Rest until your health is full if you aren't taking damage."
88

99
time_bonus 45
1010
ace_score 123

towers/beginner/level_006.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# --------
44

55
description "The wall behind you feels a bit further away in this room. And you hear more cries for help."
6-
tip "You can walk backward by passing ':backward' as an argument to walk!. Same goes for feel, rescue! and attack!."
6+
tip "You can walk backward by passing ':backward' as an argument to walk!. Same goes for feel, rescue! and attack!. Archers have a limited attack distance."
77
clue "Walk backward if you are taking damage from afar and do not have enough health to attack. You may also want to consider walking backward until warrior.feel(:backward).wall?."
88

99
time_bonus 55

towers/intermediate/level_002.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
description "Another large room, but with several enemies blocking your way to the stairs."
77
tip "Just like walking, you can attack! and feel in multiple directions (:forward, :left, :right, :backward)."
8-
clue "Call warrior.feel(direction).enemy? in each direction to make sure there isn't an enemy beside you (attack if there is). Call warrior.rest! if you're low and health when there's no enemies around."
8+
clue "Call warrior.feel(direction).enemy? in each direction to make sure there isn't an enemy beside you (attack if there is). Call warrior.rest! if you're low and health when there are no enemies around."
99

1010
time_bonus 40
1111
ace_score 84

towers/intermediate/level_003.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
description "You feel slime on all sides, you're surrounded!"
88
tip "Call warrior.bind!(direction) to bind an enemy to keep him from attacking. Bound enemies look like captives."
9-
clue "Count the number of enemies around you, if there's two or more, bind one."
9+
clue "Count the number of enemies around you. Bind an enemy if there are two or more."
1010

1111
time_bonus 50
1212
ace_score 101

0 commit comments

Comments
 (0)