@@ -20,6 +20,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
20
20
weapon_points: 50 ,
21
21
shield_points: 10 ,
22
22
hull_points: 400 ,
23
+ unit_cost_metal: 3000 ,
24
+ unit_cost_crystal: 1000 ,
25
+ unit_cost_deuterium: 0 ,
23
26
inserted_at: now ,
24
27
updated_at: now
25
28
} ,
@@ -36,6 +39,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
36
39
weapon_points: 150 ,
37
40
shield_points: 25 ,
38
41
hull_points: 1000 ,
42
+ unit_cost_metal: 6000 ,
43
+ unit_cost_crystal: 4000 ,
44
+ unit_cost_deuterium: 0 ,
39
45
inserted_at: now ,
40
46
updated_at: now
41
47
} ,
@@ -52,6 +58,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
52
58
weapon_points: 400 ,
53
59
shield_points: 50 ,
54
60
hull_points: 2700 ,
61
+ unit_cost_metal: 20_000 ,
62
+ unit_cost_crystal: 7000 ,
63
+ unit_cost_deuterium: 2000 ,
55
64
inserted_at: now ,
56
65
updated_at: now
57
66
} ,
@@ -68,6 +77,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
68
77
weapon_points: 1000 ,
69
78
shield_points: 200 ,
70
79
hull_points: 6000 ,
80
+ unit_cost_metal: 45_000 ,
81
+ unit_cost_crystal: 15_000 ,
82
+ unit_cost_deuterium: 0 ,
71
83
inserted_at: now ,
72
84
updated_at: now
73
85
} ,
@@ -84,6 +96,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
84
96
weapon_points: 700 ,
85
97
shield_points: 400 ,
86
98
hull_points: 7000 ,
99
+ unit_cost_metal: 30_000 ,
100
+ unit_cost_crystal: 40_000 ,
101
+ unit_cost_deuterium: 15_000 ,
87
102
inserted_at: now ,
88
103
updated_at: now
89
104
} ,
@@ -100,6 +115,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
100
115
weapon_points: 1000 ,
101
116
shield_points: 500 ,
102
117
hull_points: 7500 ,
118
+ unit_cost_metal: 50_000 ,
119
+ unit_cost_crystal: 25_000 ,
120
+ unit_cost_deuterium: 15_000 ,
103
121
inserted_at: now ,
104
122
updated_at: now
105
123
} ,
@@ -116,6 +134,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
116
134
weapon_points: 2000 ,
117
135
shield_points: 500 ,
118
136
hull_points: 11_000 ,
137
+ unit_cost_metal: 60_000 ,
138
+ unit_cost_crystal: 50_000 ,
139
+ unit_cost_deuterium: 15_000 ,
119
140
inserted_at: now ,
120
141
updated_at: now
121
142
} ,
@@ -132,6 +153,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
132
153
weapon_points: 2800 ,
133
154
shield_points: 700 ,
134
155
hull_points: 14_000 ,
156
+ unit_cost_metal: 50_000 ,
157
+ unit_cost_crystal: 50_000 ,
158
+ unit_cost_deuterium: 20_000 ,
135
159
inserted_at: now ,
136
160
updated_at: now
137
161
} ,
@@ -148,6 +172,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
148
172
weapon_points: 12_000 ,
149
173
shield_points: 16_000 ,
150
174
hull_points: 900_000 ,
175
+ unit_cost_metal: 1_000_000 ,
176
+ unit_cost_crystal: 500_000 ,
177
+ unit_cost_deuterium: 100_000 ,
151
178
inserted_at: now ,
152
179
updated_at: now
153
180
} ,
@@ -164,6 +191,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
164
191
weapon_points: 0 ,
165
192
shield_points: 1 ,
166
193
hull_points: 200 ,
194
+ unit_cost_metal: 0 ,
195
+ unit_cost_crystal: 2000 ,
196
+ unit_cost_deuterium: 500 ,
167
197
inserted_at: now ,
168
198
updated_at: now
169
199
} ,
@@ -180,6 +210,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
180
210
weapon_points: 0 ,
181
211
shield_points: 1 ,
182
212
hull_points: 5000 ,
213
+ unit_cost_metal: 2000 ,
214
+ unit_cost_crystal: 2000 ,
215
+ unit_cost_deuterium: 0 ,
183
216
inserted_at: now ,
184
217
updated_at: now
185
218
} ,
@@ -196,6 +229,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
196
229
weapon_points: 0 ,
197
230
shield_points: 1 ,
198
231
hull_points: 100 ,
232
+ unit_cost_metal: 0 ,
233
+ unit_cost_crystal: 1000 ,
234
+ unit_cost_deuterium: 0 ,
199
235
inserted_at: now ,
200
236
updated_at: now
201
237
} ,
@@ -211,7 +247,10 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
211
247
type: :ship ,
212
248
weapon_points: 5 ,
213
249
shield_points: 5 ,
214
- hull_points: 400 ,
250
+ hull_points: 4000 ,
251
+ unit_cost_metal: 2000 ,
252
+ unit_cost_crystal: 2000 ,
253
+ unit_cost_deuterium: 0 ,
215
254
inserted_at: now ,
216
255
updated_at: now
217
256
} ,
@@ -227,7 +266,10 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
227
266
type: :ship ,
228
267
weapon_points: 10 ,
229
268
shield_points: 15 ,
230
- hull_points: 1200 ,
269
+ hull_points: 12_000 ,
270
+ unit_cost_metal: 6000 ,
271
+ unit_cost_crystal: 6000 ,
272
+ unit_cost_deuterium: 0 ,
231
273
inserted_at: now ,
232
274
updated_at: now
233
275
} ,
@@ -243,7 +285,10 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
243
285
type: :ship ,
244
286
weapon_points: 5 ,
245
287
shield_points: 10 ,
246
- hull_points: 1600 ,
288
+ hull_points: 16_000 ,
289
+ unit_cost_metal: 10_000 ,
290
+ unit_cost_crystal: 6000 ,
291
+ unit_cost_deuterium: 2000 ,
247
292
inserted_at: now ,
248
293
updated_at: now
249
294
} ,
@@ -258,7 +303,10 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
258
303
type: :ship ,
259
304
weapon_points: 10 ,
260
305
shield_points: 25 ,
261
- hull_points: 3000 ,
306
+ hull_points: 30_000 ,
307
+ unit_cost_metal: 10_000 ,
308
+ unit_cost_crystal: 20_000 ,
309
+ unit_cost_deuterium: 10_000 ,
262
310
inserted_at: now ,
263
311
updated_at: now
264
312
} ,
@@ -274,7 +322,10 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
274
322
type: :ship ,
275
323
weapon_points: 20 ,
276
324
shield_points: 200 ,
277
- hull_points: 6000 ,
325
+ hull_points: 70_000 ,
326
+ unit_cost_metal: 50_000 ,
327
+ unit_cost_crystal: 20_000 ,
328
+ unit_cost_deuterium: 15_000 ,
278
329
inserted_at: now ,
279
330
updated_at: now
280
331
} ,
@@ -291,6 +342,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
291
342
weapon_points: 80 ,
292
343
shield_points: 20 ,
293
344
hull_points: 200 ,
345
+ unit_cost_metal: 2000 ,
346
+ unit_cost_crystal: 0 ,
347
+ unit_cost_deuterium: 0 ,
294
348
inserted_at: now ,
295
349
updated_at: now
296
350
} ,
@@ -307,6 +361,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
307
361
weapon_points: 100 ,
308
362
shield_points: 25 ,
309
363
hull_points: 200 ,
364
+ unit_cost_metal: 1500 ,
365
+ unit_cost_crystal: 500 ,
366
+ unit_cost_deuterium: 0 ,
310
367
inserted_at: now ,
311
368
updated_at: now
312
369
} ,
@@ -323,6 +380,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
323
380
weapon_points: 250 ,
324
381
shield_points: 100 ,
325
382
hull_points: 800 ,
383
+ unit_cost_metal: 6000 ,
384
+ unit_cost_crystal: 2000 ,
385
+ unit_cost_deuterium: 0 ,
326
386
inserted_at: now ,
327
387
updated_at: now
328
388
} ,
@@ -339,6 +399,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
339
399
weapon_points: 150 ,
340
400
shield_points: 500 ,
341
401
hull_points: 800 ,
402
+ unit_cost_metal: 2000 ,
403
+ unit_cost_crystal: 6000 ,
404
+ unit_cost_deuterium: 0 ,
342
405
inserted_at: now ,
343
406
updated_at: now
344
407
} ,
@@ -355,6 +418,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
355
418
weapon_points: 1100 ,
356
419
shield_points: 200 ,
357
420
hull_points: 3500 ,
421
+ unit_cost_metal: 20_000 ,
422
+ unit_cost_crystal: 15_000 ,
423
+ unit_cost_deuterium: 2000 ,
358
424
inserted_at: now ,
359
425
updated_at: now
360
426
} ,
@@ -371,6 +437,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
371
437
weapon_points: 3000 ,
372
438
shield_points: 300 ,
373
439
hull_points: 10_000 ,
440
+ unit_cost_metal: 50_000 ,
441
+ unit_cost_crystal: 50_000 ,
442
+ unit_cost_deuterium: 30_000 ,
374
443
inserted_at: now ,
375
444
updated_at: now
376
445
} ,
@@ -387,6 +456,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
387
456
weapon_points: 0 ,
388
457
shield_points: 2000 ,
389
458
hull_points: 4000 ,
459
+ unit_cost_metal: 10_000 ,
460
+ unit_cost_crystal: 10_000 ,
461
+ unit_cost_deuterium: 0 ,
390
462
inserted_at: now ,
391
463
updated_at: now
392
464
} ,
@@ -403,6 +475,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
403
475
weapon_points: 0 ,
404
476
shield_points: 10_000 ,
405
477
hull_points: 20_000 ,
478
+ unit_cost_metal: 50_000 ,
479
+ unit_cost_crystal: 50_000 ,
480
+ unit_cost_deuterium: 0 ,
406
481
inserted_at: now ,
407
482
updated_at: now
408
483
} ,
@@ -470,6 +545,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
470
545
weapon_points: 0 ,
471
546
shield_points: 0 ,
472
547
hull_points: 6500 ,
548
+ unit_cost_metal: 8000 ,
549
+ unit_cost_crystal: 0 ,
550
+ unit_cost_deuterium: 2000 ,
473
551
inserted_at: now ,
474
552
updated_at: now
475
553
} ,
@@ -486,6 +564,9 @@ defmodule Galaxies.Repo.Migrations.InsertUnits do
486
564
weapon_points: 15_000 ,
487
565
shield_points: 0 ,
488
566
hull_points: 12_500 ,
567
+ unit_cost_metal: 125_000 ,
568
+ unit_cost_crystal: 0 ,
569
+ unit_cost_deuterium: 20_000 ,
489
570
inserted_at: now ,
490
571
updated_at: now
491
572
}
0 commit comments