Mercurial > touhou
annotate data/ST/Makefile @ 182:20843875ad8f
(Hopefully) use difficulty as it should.
The difficulty[0] (also called rank) varies from 0 to 32 and affects
various parts of the game. The difficulty now impact those parts,
but how it is modified during the gameplay is not clear.
Such changes to the difficulty are not handled yet.
[0] http://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil/Gameplay#Rank
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Tue, 25 Oct 2011 01:29:40 +0200 |
parents | 1bc0ad774ed4 |
children | b0b8825296d0 |
rev | line source |
---|---|
121
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
1 all: stg1bg.png stg1bg.anm stage1.std face03a.anm face03b.anm face42.png eff01.png eff01.anm stg1enm2.anm ecldata1.ecl stg1enm.png stg1enm.anm stg1enm2.anm msg1.dat etama3.anm etama3.png etama4.anm etama4.png |
115 | 2 |
3 face42.png: face.svg | |
4 inkscape -e face42.png face.svg | |
5 | |
6 | |
7 stg1bg.png: stg1bg.svg | |
8 inkscape -e stg1bg.png stg1bg.svg | |
9 | |
10 | |
11 stg1enm.png: stg1enm.svg | |
12 inkscape -e stg1enm.png stg1enm.svg | |
13 | |
14 | |
15 eff01.png: eff01.svg | |
16 inkscape -e eff01.png eff01.svg | |
17 | |
18 | |
19 stg1bg.anm: stg1bg.script | |
20 thanm c stg1bg.anm stg1bg.script | |
21 | |
22 | |
23 stg1enm.anm: stg1enm.script | |
24 thanm c stg1enm.anm stg1enm.script | |
25 | |
26 | |
27 face03a.anm: face03a.script | |
28 thanm c face03a.anm face03a.script | |
29 | |
30 | |
31 face03b.anm: face03a.script | |
32 thanm c face03b.anm face03a.script | |
33 | |
34 | |
35 eff01.anm: eff01.script | |
36 thanm c eff01.anm eff01.script | |
37 | |
38 | |
116
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
39 etama3.anm: etama3.script |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
40 thanm c etama3.anm etama3.script |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
41 |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
42 |
121
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
43 etama4.anm: etama4.script |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
44 thanm c etama4.anm etama4.script |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
45 |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
46 |
116
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
47 etama3.png: etama3.svg |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
48 inkscape -e etama3.png etama3.svg |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
49 |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
50 |
121
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
51 etama4.png: etama4.svg |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
52 inkscape -e etama4.png etama4.svg |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
53 |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
54 |
115 | 55 stg1enm2.anm: stg1enm2.script |
56 thanm c stg1enm2.anm stg1enm2.script | |
57 | |
58 | |
59 ecldata1.ecl: make_ecl.py | |
60 PYTHONPATH=../../ python make_ecl.py | |
61 | |
62 | |
63 stage1.std: make_stage.py | |
64 PYTHONPATH=../../ python make_stage.py | |
65 | |
66 | |
67 msg1.dat: msg1.script | |
68 thmsg c6 msg1.script msg1.dat | |
69 | |
70 | |
71 clean: | |
121
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
72 rm -f stg1bg.png stg1bg.anm stage1.std face03a.anm face03b.anm face42.png eff01.png eff01.anm stg1enm2.anm ecldata1.ecl stg1enm.png stg1enm.anm stg1enm2.anm msg1.dat etama3.anm etama3.png etama4.anm etama4.png |
115 | 73 |
74 .PHONY: all clean |