blob: e7ed3231d8414b006014ce02c5621d91085772e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include "armor.h"
#include "creature.h"
#include "entry.h"
#include <string>
#include <sstream>
using namespace std;
namespace entry{
string Armor::getText(const creature::Creature& c) const {
return genText(*this, c);
}
string genText(const Armor& a, const creature::Creature& c) {
stringstream text;
text << genText(static_cast<const Item&>(a), c);
text << ": AC: " << a.getACBonus();
if(a.getArmorType() == "light") {
text << " + dex (i.e., " << (a.getACBonus() + c.getBonus("dex")) << ")";
} else if(a.getArmorType() == "medium") {
int actualBonus = a.getACBonus();
actualBonus += (c.getBonus("dex") > 2)? 2 : c.getBonus("dex");
text << " + dex max 2 (i.e., " << actualBonus << ")";
}
if(a.getStrRequirement() > 0) {
text << ", Mininum str: " << a.getStrRequirement();
}
if(a.stealthDisadvantage()) {
text << ", Imposes stealth disadvantage";
}
text << ". " << genText(static_cast<const Substantial&>(a));
return text.str();
}
}
|