-
Notifications
You must be signed in to change notification settings - Fork 0
/
tractors.js
90 lines (89 loc) · 2.06 KB
/
tractors.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const tractors = [
{
type: 'new holland',
model: 'TS90 2WD',
price: 'Tsh 60,000,000',
purchasingAge: 1,
capacity: {
fuel: '8',
acrePerDay: 12,
acrePerHour: 1.2,
hectorPerYear: 480,
operatingHours: 10,
},
image: 'newhalland.jpg'
},
{
type: 'ursus',
model: '6014-4WD Turbo engine',
price: 'Tsh 33,000,000',
purchasingAge: 1,
capacity: {
fuel: '5-6',
acrePerDay: 10,
acrePerHour: 1,
hectorPerYear: 400,
operatingHours: 8,
},
image: 'ursus.jpg'
},
{
type: 'john deere',
model: '5075E-4WD',
price: 'Tsh 75,000,000',
purchasingAge: 1,
capacity: {
fuel: '5-6',
acrePerDay: 15,
acrePerHour: 1.5,
hectorPerYear: 600,
operatingHours: 10,
},
image: 'johndeere.jpg'
},
{
type: 'massey ferguson',
model: '285S-2WD ',
price: 'Tsh 68,000,000',
purchasingAge: 1,
capacity: {
fuel: '7',
acrePerDay: 15,
acrePerHour: 1.5,
hectorPerYear: 720,
operatingHours: 10,
},
image: 'massey.jpg'
},
{
type: 'mahindra',
serial: 'NE476-1-TC',
model: '8000 4WD (KNSA)',
price: 'Tsh 60,000,000',
purchasingAge: 1,
capacity: {
fuel: '3-4',
acrePerDay: 16,
acrePerHour: 2,
hectorPerYear: 640,
operatingHours: 8,
},
image: 'mahindra.jpg'
},
{
type: 'ford',
serial: '0806100 1',
model: '5614 2WD',
price: '70,000,000',
purchasingAge: 1,
capacity: {
fuel: '8',
acrePerDay: 12,
acrePerHour: 1.2,
hectorPerYear: 480,
operatingHours: 10,
},
image: 'ford.jpg'
}
]
module.exports = tractors;