added T-800 as playable character

This commit is contained in:
2024-07-15 19:33:32 -04:00
parent 1ebdd2d162
commit 991ab34ca2
8 changed files with 56 additions and 13 deletions

15
src/player/t_800.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef __T_800_H__
#define __T_800_H__
#include "../player.h"
class potion;
class t_800 final: public player_base {
static const int RUSTY = 5;
public:
t_800(RNG *rng, const feature enabled_features);
const char *get_race_name() const override;
void apply_effect(potion *p) override;
};
#endif