Skip to content

Commit c8f74ec

Browse files
Mewtwo Update Res (#730)
* Pretty much done²🥀 * cleanup * fixes * make cooling station tank have see through water & new particle * Update potion_effect.particle.json * add contained mewtwo prop. --------- Co-authored-by: smell-of-curry <75345244+smell-of-curry@users.noreply.github.com>
1 parent ac0cc9f commit c8f74ec

84 files changed

Lines changed: 67141 additions & 66 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
{
2+
"format_version": "1.10.0",
3+
"animation_controllers": {
4+
"controller.animation.contained_mewtwo": {
5+
"initial_state": "stage_0",
6+
"states": {
7+
"stage_0": {
8+
"blend_transition": 0.1,
9+
"animations": [
10+
{ "eyelash_idle": "!query.property('pokeb:in_transition')" },
11+
{ "eyelash_transition": "query.property('pokeb:in_transition')" }
12+
],
13+
"transitions": [
14+
{ "failing": "query.property('pokeb:failing')" },
15+
{ "stage_1": "query.property('pokeb:development_stage') == 1" }
16+
]
17+
},
18+
"stage_1": {
19+
"blend_transition": 0.1,
20+
"animations": [
21+
{ "blastocsyt_idle": "!query.property('pokeb:in_transition')" },
22+
{ "blastocsyt_transition": "query.property('pokeb:in_transition')" }
23+
],
24+
"transitions": [
25+
{ "failing": "query.property('pokeb:failing')" },
26+
{ "stage_0": "query.property('pokeb:development_stage') == 0" },
27+
{ "stage_2": "query.property('pokeb:development_stage') == 2" }
28+
]
29+
},
30+
"stage_2": {
31+
"blend_transition": 0.1,
32+
"animations": [
33+
{ "fetus_idle": "!query.property('pokeb:in_transition')" },
34+
{ "fetus_transition": "query.property('pokeb:in_transition')" }
35+
],
36+
"transitions": [
37+
{ "failing": "query.property('pokeb:failing')" },
38+
{ "stage_1": "query.property('pokeb:development_stage') == 1" },
39+
{ "stage_3": "query.property('pokeb:development_stage') == 3" }
40+
]
41+
},
42+
"stage_3": {
43+
"blend_transition": 0.1,
44+
"animations": [
45+
{ "mew_idle": "!query.property('pokeb:in_transition')" },
46+
{ "mew_transition": "query.property('pokeb:in_transition')" }
47+
],
48+
"transitions": [
49+
{ "failing": "query.property('pokeb:failing')" },
50+
{ "stage_2": "query.property('pokeb:development_stage') == 2" },
51+
{ "stage_4": "query.property('pokeb:development_stage') == 4" }
52+
]
53+
},
54+
"stage_4": {
55+
"blend_transition": 0.1,
56+
"animations": [
57+
{ "mewt_idle": "!query.property('pokeb:in_transition')" },
58+
{ "mewt_transition": "query.property('pokeb:in_transition')" }
59+
],
60+
"transitions": [
61+
{ "failing": "query.property('pokeb:failing')" },
62+
{ "stage_3": "query.property('pokeb:development_stage') == 3" },
63+
{ "stage_5": "query.property('pokeb:development_stage') == 5" }
64+
]
65+
},
66+
"stage_5": {
67+
"blend_transition": 0.1,
68+
"animations": [
69+
{ "mewtw_idle": "!query.property('pokeb:in_transition')" },
70+
{ "mewtw_transition": "query.property('pokeb:in_transition')" }
71+
],
72+
"transitions": [
73+
{ "failing": "query.property('pokeb:failing')" },
74+
{ "stage_4": "query.property('pokeb:development_stage') == 4" },
75+
{ "stage_6": "query.property('pokeb:development_stage') == 6" }
76+
]
77+
},
78+
"stage_6": {
79+
"blend_transition": 0.1,
80+
"animations": ["mewtwo_idle"],
81+
"transitions": [
82+
{ "failing": "query.property('pokeb:failing')" },
83+
{ "stage_5": "query.property('pokeb:development_stage') == 5" }
84+
]
85+
},
86+
"failing": {
87+
"animations": ["mewtwo_failure"]
88+
}
89+
}
90+
}
91+
}
92+
}
Lines changed: 224 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
{
2+
"format_version": "1.10.0",
3+
"animation_controllers": {
4+
"controller.animation.containment_chamber": {
5+
"initial_state": "default",
6+
"states": {
7+
"default": {
8+
"animations": ["idle"],
9+
"transitions": [
10+
{
11+
"breaking": "query.property('pokeb:containment_chamber_state') == 'breaking'"
12+
},
13+
{
14+
"closing": "query.property('pokeb:containment_chamber_state') == 'closing'"
15+
},
16+
{
17+
"opening": "query.property('pokeb:containment_chamber_state') == 'opening'"
18+
},
19+
{
20+
"fill_level_0": "query.property('pokeb:containment_chamber_water_level') == 0"
21+
},
22+
{
23+
"fill_level_1": "query.property('pokeb:containment_chamber_water_level') == 1"
24+
},
25+
{
26+
"fill_level_2": "query.property('pokeb:containment_chamber_water_level') == 2"
27+
},
28+
{
29+
"fill_level_3": "query.property('pokeb:containment_chamber_water_level') == 3"
30+
},
31+
{
32+
"fill_level_4": "query.property('pokeb:containment_chamber_water_level') == 4"
33+
},
34+
{
35+
"fill_level_5": "query.property('pokeb:containment_chamber_water_level') == 5"
36+
},
37+
{
38+
"fill_level_6": "query.property('pokeb:containment_chamber_water_level') == 6"
39+
},
40+
{
41+
"fill_level_7": "query.property('pokeb:containment_chamber_water_level') == 7"
42+
},
43+
{
44+
"fill_level_8": "query.property('pokeb:containment_chamber_water_level') == 8"
45+
},
46+
{
47+
"fill_level_9": "query.property('pokeb:containment_chamber_water_level') == 9"
48+
},
49+
{
50+
"fill_level_10": "query.property('pokeb:containment_chamber_water_level') == 10"
51+
},
52+
{
53+
"fill_level_11": "query.property('pokeb:containment_chamber_water_level') == 11"
54+
},
55+
{
56+
"fill_level_12": "query.property('pokeb:containment_chamber_water_level') == 12"
57+
},
58+
{
59+
"fill_level_13": "query.property('pokeb:containment_chamber_water_level') == 13"
60+
},
61+
{
62+
"fill_level_14": "query.property('pokeb:containment_chamber_water_level') == 14"
63+
},
64+
{
65+
"fill_level_15": "query.property('pokeb:containment_chamber_water_level') == 15"
66+
}
67+
]
68+
},
69+
"opening": {
70+
"animations": ["opening"],
71+
"transitions": [
72+
{
73+
"default": "query.property('pokeb:containment_chamber_state') != 'opening'"
74+
}
75+
]
76+
},
77+
"closing": {
78+
"animations": ["closing"],
79+
"transitions": [
80+
{
81+
"default": "query.property('pokeb:containment_chamber_state') != 'closing'"
82+
}
83+
]
84+
},
85+
"breaking": {
86+
"animations": ["breaking"],
87+
"transitions": [
88+
{
89+
"default": "query.property('pokeb:containment_chamber_state') != 'breaking'"
90+
}
91+
]
92+
},
93+
"fill_level_0": {
94+
"animations": ["water_idle0"],
95+
"transitions": [
96+
{
97+
"default": "query.property('pokeb:containment_chamber_water_level') != 0"
98+
}
99+
]
100+
},
101+
"fill_level_1": {
102+
"animations": ["water_idle1"],
103+
"transitions": [
104+
{
105+
"default": "query.property('pokeb:containment_chamber_water_level') != 1"
106+
}
107+
]
108+
},
109+
"fill_level_2": {
110+
"animations": ["water_idle2"],
111+
"transitions": [
112+
{
113+
"default": "query.property('pokeb:containment_chamber_water_level') != 2"
114+
}
115+
]
116+
},
117+
"fill_level_3": {
118+
"animations": ["water_idle3"],
119+
"transitions": [
120+
{
121+
"default": "query.property('pokeb:containment_chamber_water_level') != 3"
122+
}
123+
]
124+
},
125+
"fill_level_4": {
126+
"animations": ["water_idle4"],
127+
"transitions": [
128+
{
129+
"default": "query.property('pokeb:containment_chamber_water_level') != 4"
130+
}
131+
]
132+
},
133+
"fill_level_5": {
134+
"animations": ["water_idle5"],
135+
"transitions": [
136+
{
137+
"default": "query.property('pokeb:containment_chamber_water_level') != 5"
138+
}
139+
]
140+
},
141+
"fill_level_6": {
142+
"animations": ["water_idle6"],
143+
"transitions": [
144+
{
145+
"default": "query.property('pokeb:containment_chamber_water_level') != 6"
146+
}
147+
]
148+
},
149+
"fill_level_7": {
150+
"animations": ["water_idle7"],
151+
"transitions": [
152+
{
153+
"default": "query.property('pokeb:containment_chamber_water_level') != 7"
154+
}
155+
]
156+
},
157+
"fill_level_8": {
158+
"animations": ["water_idle8"],
159+
"transitions": [
160+
{
161+
"default": "query.property('pokeb:containment_chamber_water_level') != 8"
162+
}
163+
]
164+
},
165+
"fill_level_9": {
166+
"animations": ["water_idle9"],
167+
"transitions": [
168+
{
169+
"default": "query.property('pokeb:containment_chamber_water_level') != 9"
170+
}
171+
]
172+
},
173+
"fill_level_10": {
174+
"animations": ["water_idle10"],
175+
"transitions": [
176+
{
177+
"default": "query.property('pokeb:containment_chamber_water_level') != 10"
178+
}
179+
]
180+
},
181+
"fill_level_11": {
182+
"animations": ["water_idle11"],
183+
"transitions": [
184+
{
185+
"default": "query.property('pokeb:containment_chamber_water_level') != 11"
186+
}
187+
]
188+
},
189+
"fill_level_12": {
190+
"animations": ["water_idle12"],
191+
"transitions": [
192+
{
193+
"default": "query.property('pokeb:containment_chamber_water_level') != 12"
194+
}
195+
]
196+
},
197+
"fill_level_13": {
198+
"animations": ["water_idle13"],
199+
"transitions": [
200+
{
201+
"default": "query.property('pokeb:containment_chamber_water_level') != 13"
202+
}
203+
]
204+
},
205+
"fill_level_14": {
206+
"animations": ["water_idle14"],
207+
"transitions": [
208+
{
209+
"default": "query.property('pokeb:containment_chamber_water_level') != 14"
210+
}
211+
]
212+
},
213+
"fill_level_15": {
214+
"animations": ["water_idle15"],
215+
"transitions": [
216+
{
217+
"default": "query.property('pokeb:containment_chamber_water_level') != 15"
218+
}
219+
]
220+
}
221+
}
222+
}
223+
}
224+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"format_version": "1.10.0",
3+
"animation_controllers": {
4+
"controller.animation.containment_chamber_dirty": {
5+
"initial_state": "clean",
6+
"states": {
7+
"clean": {
8+
"animations": ["is_clean"],
9+
"transitions": [
10+
{
11+
"dirty": "query.property('pokeb:containment_chamber_dirty') == true"
12+
}
13+
]
14+
},
15+
"dirty": {
16+
"animations": ["is_dirty"],
17+
"transitions": [
18+
{
19+
"clean": "query.property('pokeb:containment_chamber_dirty') != true"
20+
}
21+
]
22+
}
23+
}
24+
}
25+
}
26+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"format_version": "1.10.0",
3+
"animation_controllers": {
4+
"controller.animation.cooling_station": {
5+
"initial_state": "default",
6+
"states": {
7+
"default": {
8+
"animations": ["idle"],
9+
"transitions": [
10+
{
11+
"idle": "query.property('pokeb:cooling_station_state') == 'idle'"
12+
},
13+
{
14+
"failing": "query.property('pokeb:cooling_station_state') == 'failing'"
15+
}
16+
]
17+
},
18+
"idle": {
19+
"animations": ["idle"],
20+
"transitions": [
21+
{
22+
"default": "query.property('pokeb:cooling_station_state') != 'idle'"
23+
}
24+
]
25+
},
26+
"failing": {
27+
"animations": ["failing"],
28+
"transitions": [
29+
{
30+
"default": "query.property('pokeb:cooling_station_state') != 'failing'"
31+
}
32+
]
33+
}
34+
}
35+
}
36+
}
37+
}

0 commit comments

Comments
 (0)