OSDN Git Service

685dd12e091bac14d624755a05c1f90d30a68658
[hengbandforosx/hengbandosx.git] / src / object-enchant / activation-info-table.h
1 #pragma once
2
3 #include <string>
4 #include <vector>
5
6 enum class RandomArtActType : short;
7 struct activation_type {
8     std::string flag;
9     RandomArtActType index;
10     int level;
11     int value;
12     struct {
13         int constant;
14         int dice;
15     } timeout;
16     std::string desc;
17 };
18
19 extern const std::vector<activation_type> activation_info;