1{
2id: "acorn_throwable_respawning",
3prototype: ["respawning_object_anchor"],
4vars: {
5	spawn_type: "acorn_throwable_respawning.acorn_throwable",
6},
7animation: {
8	id: "normal",
9	image: "props/rock-projectiles.png",
10	rect: [16,16,31,31],
11	accel_y: 0,
12	frames: 1,
13	duration: 10,
14},
15object_type: {
16	id: "acorn_throwable",
17	prototype: ["throwable_projectile"],
18	properties: {
19		is_player_ammo: 1,
20	},
21	animation: [
22		{
23			image: "props/rock-projectiles.png",
24			pad: 3,
25			body_area: "all",
26			rect: [16,16,31,31],
27			accel_y: 0,
28			id: "normal",
29			frames: 1,
30			duration: 10,
31		},
32		{
33			image: "props/rock-projectiles.png",
34			pad: 3,
35			body_area: null,
36			rect: [16,16,31,31],
37			accel_y: 80,
38			id: "thrown",
39			frames: 1,
40			duration: 10,
41			thrown_area: "all",
42		},
43		{
44			image: "props/rock-projectiles.png",
45			pad: 3,
46			body_area: "all",
47			rect: [16,16,31,31],
48			accel_y: 80,
49			id: "on_back",
50			frames: 1,
51			duration: 10,
52			thrown_area: null,
53		},
54	],
55},
56}
57