Update Adding a new NPC authored by Noah MacMinn's avatar Noah MacMinn
### As of Spring 2022: ### As of Spring 2022:
1. In PlayersForTest.java create the NPC with the following outline <br> 1. In PlayersForTest.java create the NPC with the following outline <br>
`NPCNAME(id, playerName, type, row, col, password, mapName, pin, changedOn, doubloons, experiencePoints, crew, major, section, buffPool, online, places previously visited)` `PlayersForTest(int id, String playerName, String type, int row, int col, String password, String mapName, int pin, String changedOn, int doubloons, int experiencePoints,Crew crew, Major major, int section, int buffPool, boolean online, ArrayList<String> mapsVisited)
`
2. In NPCForTest.java add the NPC <br> 2. In NPCForTest.java add the NPC <br>
`NPCNAME(PlayersForTest.NPCNAME.getPlayerID(), "behavior")` `NPCNAME(PlayersForTest.NPCNAME.getPlayerID(), "behavior")`
3. Ensure the behavior exists or create the new behavior 3. Ensure the behavior exists or create the new behavior
... ...
......