Search
REQUIREMENT_UNITDEATH_X_TURNS_AGO
Last updated
Aug 13, 2022
Edit Source
This is a
Requirement Type. Please refer to that page for more information on Requirement Types
# Info
REQUIREMENT_UNITDEATH_X_TURNS_AGO
- Class:
Unknown
- Arguments:
- Turns
Unknown
- ScalingType
Unknown
- Scaling
Unknown
# Samples
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
35
| INSERT INTO Requirements
(
RequirementId,
RequirementType
)
VALUES
(
"HAS_BEEN_ZOMBIE_RESPAWN_TURNS_LONGER_AGAIN_REQUIREMENT",
"REQUIREMENT_UNITDEATH_X_TURNS_AGO"
);
INSERT INTO RequirementArguments
(
RequirementId,
Name,
Value
)
VALUES
(
"HAS_BEEN_ZOMBIE_RESPAWN_TURNS_LONGER_AGAIN_REQUIREMENT",
"Scaling",
1
),
(
"HAS_BEEN_ZOMBIE_RESPAWN_TURNS_LONGER_AGAIN_REQUIREMENT",
"ScalingType",
"SCALING_HALF"
),
(
"HAS_BEEN_ZOMBIE_RESPAWN_TURNS_LONGER_AGAIN_REQUIREMENT",
"Turns",
150
);
|
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
| INSERT INTO Requirements
(
RequirementId,
RequirementType
)
VALUES
(
"HAS_BEEN_ONE_TURN_REQUIREMENT",
"REQUIREMENT_UNITDEATH_X_TURNS_AGO"
);
INSERT INTO RequirementArguments
(
RequirementId,
Name,
Value
)
VALUES
(
"HAS_BEEN_ONE_TURN_REQUIREMENT",
"Turns",
1
);
|