Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.

Commit 75d174d

Browse files
authored
Merge pull request #299 from Frannsoft/terry
Terry
2 parents 554ca11 + f468140 commit 75d174d

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

src/Contracts/FrannHammer.WebScraping.Domain.Contracts/CharacterIds.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ public static class CharacterIds
8383
public const int Hero = 75;
8484
public const int BanjoKazooie = 76;
8585
public const int IceClimbers = 77;
86+
public const int Terry = 78;
8687

8788
public static int FindByName(string characterName)
8889
{

src/Implementation/FrannHammer.WebScraping.Domain/Characters.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ public static class Characters
101101
new Joker(),
102102
new Hero(),
103103
new BanjoKazooie(),
104-
new IceClimbers()
104+
new IceClimbers(),
105+
new Terry()
105106
};
106107
}
107108
}

src/Implementation/FrannHammer.WebScraping.Domain/PacMan.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,14 @@ public PacMan()
1111
CssKey = "pacman";
1212
}
1313
}
14+
15+
public class Terry : WebCharacter
16+
{
17+
public Terry()
18+
: base("Terry", potentialScrapingNames: "terry")
19+
{
20+
DisplayName = "Terry";
21+
CssKey = "terry";
22+
}
23+
}
1424
}

0 commit comments

Comments
 (0)