-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #165 from Erol444/release/2.2.0
Release 2.2.0 **Changelog**: - Add auto-improve troops (works for both servers but TTWars is a better use case because of zero second upgrade). Read docs [here](https://tbs-docs.readthedocs.io/en/latest/improve.html) - Redesign Village>Setting tab and add a checkbox to refresh setting to enable or disable - Fix after first sleep, TBS wants to work 24/24 - Fix TBS use gold upgrade even with residence and similar building - Fix TBS forgot to check the prerequisite building before build - Fix TBS didn't know Travian forced to log out after a few inactive hours If you like my work, you can donate to me through [ko-fi.com/vinaghost](ko-fi.com/vinaghost)
- Loading branch information
Showing
69 changed files
with
2,054 additions
and
428 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
namespace MainCore.Enums | ||
{ | ||
public enum TroopEnums | ||
{ | ||
None, | ||
|
||
//Romans//, | ||
Legionnaire, | ||
|
||
Praetorian, | ||
Imperian, | ||
EquitesLegati, | ||
EquitesImperatoris, | ||
EquitesCaesaris, | ||
RomanRam, | ||
RomanCatapult, | ||
RomanChief, | ||
RomanSettler, | ||
|
||
//Teutons//, | ||
Clubswinger, | ||
|
||
Spearman, | ||
Axeman, | ||
Scout, | ||
Paladin, | ||
TeutonicKnight, | ||
TeutonRam, | ||
TeutonCatapult, | ||
TeutonChief, | ||
TeutonSettler, | ||
|
||
//Gauls//, | ||
Phalanx, | ||
|
||
Swordsman, | ||
Pathfinder, | ||
TheutatesThunder, | ||
Druidrider, | ||
Haeduan, | ||
GaulRam, | ||
GaulCatapult, | ||
GaulChief, | ||
GaulSettler, | ||
|
||
//Nature//, | ||
Rat, | ||
|
||
Spider, | ||
Snake, | ||
Bat, | ||
WildBoar, | ||
Wolf, | ||
Bear, | ||
Crocodile, | ||
Tiger, | ||
Elephant, | ||
|
||
//Natars//, | ||
Pikeman, | ||
|
||
ThornedWarrior, | ||
Guardsman, | ||
BirdsOfPrey, | ||
Axerider, | ||
NatarianKnight, | ||
Warelephant, | ||
Ballista, | ||
NatarianEmperor, | ||
Settler, | ||
|
||
//Egyptians//, | ||
SlaveMilitia, | ||
|
||
AshWarden, | ||
KhopeshWarrior, | ||
SopduExplorer, | ||
AnhurGuard, | ||
ReshephChariot, | ||
EgyptianRam, | ||
EgyptianCatapult, | ||
EgyptianChief, | ||
EgyptianSettler, | ||
|
||
//Huns//, | ||
Mercenary, | ||
|
||
Bowman, | ||
Spotter, | ||
SteppeRider, | ||
Marksman, | ||
Marauder, | ||
HunRam, | ||
HunCatapult, | ||
HunChief, | ||
HunSettler, | ||
|
||
//Hero | ||
Hero | ||
} | ||
} |
Oops, something went wrong.