OSDN Git Service
(root)
/
hengbandforosx
/
hengbandosx.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #1403 from sikabane-works/release/3.0.0Alpha36
[hengbandforosx/hengbandosx.git]
/
src
/
object-enchant
/
activation-info-table.h
1
#pragma once
2
3
#include "system/angband.h"
4
5
typedef struct activation_type {
6
concptr flag;
7
byte index;
8
byte level;
9
int32_t value;
10
struct {
11
int constant;
12
DICE_NUMBER dice;
13
} timeout;
14
concptr desc;
15
} activation_type;
16
17
#define MAX_ACTIVATION_TYPE 138
18
extern const activation_type activation_info[MAX_ACTIVATION_TYPE];