Skip to content

Commit

Permalink
Add wipe detector german translations
Browse files Browse the repository at this point in the history
These are added from pull #121 so can be included in the 0.7.0 binary
update for convenience.
  • Loading branch information
ArkfrostLumas authored and quisquous committed May 22, 2018
1 parent ac1fe71 commit c0083ae
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion CactbotOverlay/WipeDetector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,24 @@ public WipeDetector(CactbotOverlay client) {
private string player_name_ = null;
private string player_name_with_colons_ = null;
// Filled in later with player name.
private string[] weakness_strs_ = new string[4];
private string[] weakness_strs_ = new string[8];
private string[] lb3_strs_ = {
":Pulse Of Life:",
":Pulsation Vitale:",
":Lebenspuls:",
":生命の鼓動:",
":Angel Feathers:",
":Plumes D'ange:",
":Engelsfedern:",
":エンジェルフェザー:",
":Astral Stasis:",
":Astrale Stasis:",
":星天開門:",
":Équilibre Astral:",
":Flames Of Rebirth:",
":Feu Résurrecteur:",
":Flammen Der Wiedergeburt:",
":転生の炎:",
};

private DateTime? last_revived_time_;
Expand All @@ -47,6 +55,10 @@ public void OnPlayerChanged(JSEvents.PlayerChangedEvent player) {
weakness_strs_[1] = " 1A:" + player_name_ + " gains the effect of Brink Of Death from";
weakness_strs_[2] = " 1A:" + player_name_ + " gains the effect of Affaiblissement from";
weakness_strs_[3] = " 1A:" + player_name_ + " gains the effect of Mourant from";
weakness_strs_[4] = " 1A:" + player_name_ + " gains the effect of Schwäche from";
weakness_strs_[5] = " 1A:" + player_name_ + " gains the effect of Sterbenselend from";
weakness_strs_[6] = " 1A:" + player_name_ + " gains the effect of 衰弱 from";
weakness_strs_[7] = " 1A:" + player_name_ + " gains the effect of 衰弱[強] from";
}

var now = DateTime.Now;
Expand Down

0 comments on commit c0083ae

Please sign in to comment.