summaryrefslogtreecommitdiff
path: root/src/birther.hpp
blob: 85773e5e58e9d01f28cdd17231898d53002a60b7 (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
#pragma once

#include "h-basic.hpp"

#include <array>

/**
 * Player information during the birth process.
 */
struct birther
{
	s16b race = 0;
	s16b rmod = 0;
	s16b pclass = 0;
	s16b spec = 0;

	byte quests = 0;

	byte god = 0;
	s32b grace = 0;

	s32b au = 0;

	std::array<s16b, 6> stat { };
	s16b luck = 0;

	bool quick_ok = false;
};