Naming fixes

This commit is contained in:
Shaun Bennett 2016-03-31 16:47:16 +11:00
parent 0fd39e1300
commit 44abf8f1e2
9 changed files with 10 additions and 11 deletions

View File

@ -24,11 +24,11 @@ public class AttackEnemyObjective extends OrderedObjective<ClansMainTutorial>
public AttackEnemyObjective(ClansMainTutorial clansMainTutorial, JavaPlugin javaPlugin) public AttackEnemyObjective(ClansMainTutorial clansMainTutorial, JavaPlugin javaPlugin)
{ {
super(clansMainTutorial, javaPlugin, "Attack Enemy", "Attack and raid this enemy!"); super(clansMainTutorial, javaPlugin, "Enemy Clans", "Attack and raid this enemy!");
_cannon = new HashMap<>(); _cannon = new HashMap<>();
addGoal(new GetMapGoal(this)); addGoal(new GetMapGoal(this));
addGoal(new HoldItemGoal(this, Material.MAP, "Identify Enemy Clan", "By looking at your map, identify your new enemy")); addGoal(new HoldItemGoal(this, Material.MAP, "Locate Enemy on Map", "By looking at your map, identify your new enemy"));
addGoal(new MountCannonGoal(this)); addGoal(new MountCannonGoal(this));
addGoal(new LoadCannonGoal(this)); addGoal(new LoadCannonGoal(this));
addGoal(new BlowUpWallGoal(this)); addGoal(new BlowUpWallGoal(this));

View File

@ -13,12 +13,11 @@ public class ClanObjective extends OrderedObjective<ClansMainTutorial>
{ {
public ClanObjective(ClansMainTutorial clansMainTutorial, JavaPlugin javaPlugin) public ClanObjective(ClansMainTutorial clansMainTutorial, JavaPlugin javaPlugin)
{ {
super(clansMainTutorial, javaPlugin, "Clans", "Create clan with /c create <name>"); super(clansMainTutorial, javaPlugin, "Clan Basics", "Create clan with /c create <name>");
addGoal(new LeaveSpawnGoal(this)); addGoal(new LeaveSpawnGoal(this));
addGoal(new CreateClanGoal(this)); addGoal(new CreateClanGoal(this));
addGoal(new ClanManagementGoal(this)); addGoal(new ClanManagementGoal(this));
addGoal(new ClanDetailsGoal(this));
addGoal(new ClanInfoGoal(this)); addGoal(new ClanInfoGoal(this));
addGoal(new ClaimLandGoal(this)); addGoal(new ClaimLandGoal(this));
addGoal(new BuildHouseGoal(this)); addGoal(new BuildHouseGoal(this));

View File

@ -24,7 +24,7 @@ public class BlowUpWallGoal extends ObjectiveGoal<AttackEnemyObjective>
{ {
public BlowUpWallGoal(AttackEnemyObjective objective) public BlowUpWallGoal(AttackEnemyObjective objective)
{ {
super(objective, "Attack Enemy", "Attack enemy clan! Blow a hole in their base by Left-Clicking to fire the Cannon."); super(objective, "Blow up the Enemy Base", "Attack enemy clan! Blow a hole in their base by Left-Clicking to fire the Cannon.");
} }
@Override @Override

View File

@ -13,7 +13,7 @@ public class LoadCannonGoal extends ObjectiveGoal<AttackEnemyObjective>
{ {
public LoadCannonGoal(AttackEnemyObjective objective) public LoadCannonGoal(AttackEnemyObjective objective)
{ {
super(objective, "Load Cannon", "Right click to open the Cannon, and load it with TNT!"); super(objective, "Load the Cannon", "Right click to open the Cannon, and load it with TNT!");
} }
@Override @Override

View File

@ -20,7 +20,7 @@ public class MountCannonGoal extends ObjectiveGoal<AttackEnemyObjective>
{ {
public MountCannonGoal(AttackEnemyObjective objective) public MountCannonGoal(AttackEnemyObjective objective)
{ {
super(objective, "Get on Cannon", "Right click on the Cannon to hop on!"); super(objective, "Get on the Cannon", "Right click on the Cannon to hop on!");
} }
@Override @Override

View File

@ -27,7 +27,7 @@ public class StealEnemyPotatoesGoal extends ObjectiveGoal<AttackEnemyObjective>
public StealEnemyPotatoesGoal(AttackEnemyObjective objective) public StealEnemyPotatoesGoal(AttackEnemyObjective objective)
{ {
super(objective, "Steal Enemy Potatoes", "Steal the enemy's potatoes"); super(objective, "Steal Potatoes", "Steal the enemy's potatoes");
} }
@Override @Override

View File

@ -35,7 +35,7 @@ public class BuildHouseGoal extends ObjectiveGoal<ClanObjective>
public BuildHouseGoal(ClanObjective objective) public BuildHouseGoal(ClanObjective objective)
{ {
super(objective, "Build House", "Build a Stone Brick house. (Place all your blocks)"); super(objective, "Build a House", "Build a Stone Brick house. (Place all your blocks)");
} }
@Override @Override

View File

@ -17,7 +17,7 @@ public class ClanManagementGoal extends ObjectiveGoal<ClanObjective>
{ {
public ClanManagementGoal(ClanObjective objective) public ClanManagementGoal(ClanObjective objective)
{ {
super(objective, "Manage your clan", "Manage your clan by using the command /c"); super(objective, "Open the Clan Menu", "Manage your clan by using the command /c");
} }
@Override @Override

View File

@ -18,7 +18,7 @@ public class SetHomeGoal extends ObjectiveGoal<ClanObjective>
{ {
public SetHomeGoal(ClanObjective objective) public SetHomeGoal(ClanObjective objective)
{ {
super(objective, "Set Home", "Set your Clan's home by typing /c sethome"); super(objective, "Set Clan Home", "Set your Clan's home by typing /c sethome");
} }
@Override @Override