Skip to content
This repository was archived by the owner on Aug 23, 2020. It is now read-only.

Commit c828053

Browse files
committed
1 parent 52ac0a7 commit c828053

10 files changed

Lines changed: 120 additions & 3 deletions

.checksum.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2b90cce9970532b3a2e5678e650e38e8
1+
95a1bd6209b1b2b33cead60f40873c58

agent_upgrades.ron

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#![enable(unwrap_newtypes)]
2+
3+
{
4+
"swordsman": ["heavy_swordsman", "elite_swordsman"],
5+
"spearman": ["heavy_spearman", "elite_spearman"],
6+
}

elite_spearman.png

5.82 KB
Loading

elite_swordsman.png

5.71 KB
Loading

elite_swordsman_rage.png

5.52 KB
Loading

heavy_spearman.png

6.43 KB
Loading

heavy_swordsman.png

6.75 KB
Loading

objects.ron

Lines changed: 80 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
{
44
"swordsman": [
5+
Blocker(()),
6+
Strength((
7+
strength: 3,
8+
)),
9+
Agent((
10+
moves: 1,
11+
attacks: 1,
12+
jokers: 1,
13+
reactive_attacks: 1,
14+
attack_distance: 1,
15+
attack_strength: 2,
16+
attack_accuracy: 4,
17+
attack_break: 0,
18+
weapon_type: Slash,
19+
move_points: 3,
20+
)),
21+
Abilities([
22+
(ability: Jump(2), base_cooldown: 2),
23+
]),
24+
],
25+
"elite_swordsman": [
526
Blocker(()),
627
Strength((
728
strength: 4,
@@ -24,6 +45,25 @@
2445
(ability: Dash, base_cooldown: 1),
2546
]),
2647
],
48+
"heavy_swordsman": [
49+
Blocker(()),
50+
Strength((
51+
strength: 6,
52+
)),
53+
Agent((
54+
moves: 0,
55+
attacks: 1,
56+
jokers: 1,
57+
reactive_attacks: 0,
58+
attack_distance: 1,
59+
attack_strength: 3,
60+
attack_accuracy: 5,
61+
attack_break: 1,
62+
dodge: -1,
63+
weapon_type: Slash,
64+
move_points: 3,
65+
)),
66+
],
2767
"alchemist": [
2868
Blocker(()),
2969
Strength((
@@ -83,10 +123,30 @@
83123
moves: 0,
84124
attacks: 0,
85125
jokers: 1,
86-
reactive_attacks: 3,
126+
reactive_attacks: 2,
87127
attack_distance: 2,
88128
attack_strength: 1,
89-
attack_accuracy: 5,
129+
attack_accuracy: 4,
130+
weapon_type: Pierce,
131+
move_points: 3,
132+
)),
133+
Abilities([
134+
(ability: Jump(3), base_cooldown: 3),
135+
]),
136+
],
137+
"elite_spearman": [
138+
Blocker(()),
139+
Strength((
140+
strength: 4,
141+
)),
142+
Agent((
143+
moves: 0,
144+
attacks: 1,
145+
jokers: 1,
146+
reactive_attacks: 2,
147+
attack_distance: 2,
148+
attack_strength: 1,
149+
attack_accuracy: 6,
90150
weapon_type: Pierce,
91151
dodge: 1,
92152
move_points: 3,
@@ -95,6 +155,24 @@
95155
(ability: Jump(3), base_cooldown: 3),
96156
]),
97157
],
158+
"heavy_spearman": [
159+
Blocker(()),
160+
Strength((
161+
strength: 5,
162+
)),
163+
Agent((
164+
moves: 0,
165+
attacks: 0,
166+
jokers: 1,
167+
reactive_attacks: 2,
168+
attack_distance: 2,
169+
attack_strength: 2,
170+
attack_accuracy: 5,
171+
weapon_type: Pierce,
172+
dodge: -1,
173+
move_points: 3,
174+
)),
175+
],
98176
"imp": [
99177
Blocker(()),
100178
Strength((

sprites.ron

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@
88
offset_y: 0.1,
99
shadow_size_coefficient: 1.0,
1010
),
11+
"elite_swordsman": (
12+
paths: {
13+
"": "/elite_swordsman.png",
14+
"rage": "/elite_swordsman_rage.png",
15+
},
16+
offset_x: 0.15,
17+
offset_y: 0.1,
18+
shadow_size_coefficient: 1.0,
19+
),
20+
"heavy_swordsman": (
21+
paths: {
22+
"": "/heavy_swordsman.png",
23+
},
24+
offset_x: 0.15,
25+
offset_y: 0.1,
26+
shadow_size_coefficient: 1.0,
27+
),
1128
"spearman": (
1229
paths: {
1330
"": "/spearman.png",
@@ -16,6 +33,22 @@
1633
offset_y: 0.05,
1734
shadow_size_coefficient: 1.0,
1835
),
36+
"elite_spearman": (
37+
paths: {
38+
"": "/elite_spearman.png",
39+
},
40+
offset_x: 0.2,
41+
offset_y: 0.05,
42+
shadow_size_coefficient: 1.0,
43+
),
44+
"heavy_spearman": (
45+
paths: {
46+
"": "/heavy_spearman.png",
47+
},
48+
offset_x: 0.2,
49+
offset_y: 0.05,
50+
shadow_size_coefficient: 1.0,
51+
),
1952
"hammerman": (
2053
paths: {
2154
"": "/hammerman.png",

swordsman.png

-1.63 KB
Loading

0 commit comments

Comments
 (0)