<?php

$minis = array();

// the first dark angel unit
$mini = new Miniature();
$mini->armyCode = armyCode::DARK_ANGELS;
$mini->datePainted = new DateTime('2012-10-30');
$mini->name = "Dark Angels - Unit 1";
$mini->description = "This is the unit of Dark Angels space marines that came with the Citadel Warhammer 40,000 starter paint set.";
$mini->paintUsed = array(
    'Caliban Green', 'Mephiston Red', 'Ulthuan Grey', 'Ushabti Bone', 'Mournfang Brown', 'Leadbelcher', 'Agrax Earthshade'
);
$photo = new Photo();
$photo->thumbnail = 'dark_angels_unit_1/da_u1_th.jpg';
$photo->photo = 'dark_angels_unit_1/da_u1.jpg';
array_push($mini->photos, $photo);

array_push( $minis, $mini );


// the first chaos space marine miniature
$mini = new Miniature();
$mini->armyCode = armyCode::CHAOS_SPACE_MARINES;
$mini->datePainted = new DateTime('2012-11-10');
$mini->name = "Dark Vengeance - Chaos Cultists Space Marines - Miniature 1";
$mini->description = "This is the first miniature of the Dark Vengeance box that I painted. I decided that this unit would have more blue on their clothes to recognize them better.";
$mini->paintUsed = array(
    'Stegadon Scale Green (actually this is blue)','Mephiston Red', 'Ulthuan Grey', 'Mournfang Brown', 'Leadbelcher', 'Agrax Earthshade', 'Imperial Primer'
);


$photo = new Photo();
$photo->thumbnail = 'chaos_space_marines_mini_1/csm_m1_th.jpg';
$photo->photo = 'chaos_space_marines_mini_1/csm_m1.jpg';
array_push($mini->photos, $photo);

array_push( $minis, $mini );



// the second chaos space marine miniature - alot of skin
$mini = new Miniature();
$mini->armyCode = armyCode::CHAOS_SPACE_MARINES;
$mini->datePainted = new DateTime('2012-11-17');
$mini->name = "Dark Vengeance - Chaos Cultists Space Marines - Miniature 2";
$mini->description = "This is the second miniature of the Dark Vengeance box that I painted. The big challenge with this one was to paint the skin, I did not have the right paint for it as the 'Eldar Flesh' is a dry paint but I think I managed well enough.";
$mini->paintUsed = array(
    'Eldar Flesh', 'Stegadon Scale Green (actually this is blue)','Mephiston Red', 'Mournfang Brown', 'Leadbelcher', 'Agrax Earthshade'
);
$photo = new Photo();
$photo->thumbnail = 'chaos_space_marines_mini_2/csm_m2_th.jpg';
$photo->photo = 'chaos_space_marines_mini_2/csm_m2.jpg';
array_push($mini->photos, $photo);
array_push( $minis, $mini );



// the third chaos space marine miniature - alot of skin
$mini = new Miniature();
$mini->armyCode = armyCode::CHAOS_SPACE_MARINES;
$mini->datePainted = new DateTime('2012-11-25');
$mini->name = "Dark Vengeance - Chaos Cultists Space Marines - Miniature 3";
$mini->description = "This is the third miniature of the Dark Vengeance box that I painted. I'm already painting much faster and getting better at mixing paint.";
$mini->paintUsed = array(
    'Stegadon Scale Green (actually this is blue)','Mephiston Red', 'Mournfang Brown', 'Leadbelcher', 'Hashut copper', 'Nuln Oil', 'Ulthuan Grey'
);
$photo = new Photo();
$photo->thumbnail = 'chaos_space_marines_mini_3/csm_m3_th.jpg';
$photo->photo = 'chaos_space_marines_mini_3/csm_m3.jpg';
array_push($mini->photos, $photo);
array_push( $minis, $mini );



// the fourth chaos space marine miniature -
$mini = new Miniature();
$mini->armyCode = armyCode::CHAOS_SPACE_MARINES;
$mini->datePainted = new DateTime('2012-12-12');
$mini->name = "Dark Vengeance - Chaos Cultists Space Marines - Miniature 4 & 5";
$mini->description = "This is the last miniatures that complete the first unit of Chaos Cultists.";
$mini->paintUsed = array(
    'Stegadon Scale Green (actually this is blue)', 'Imperial Primer',  'Ulthuan Grey', 'Mephiston Red', 'Mournfang Brown', 'Leadbelcher',  'Ungor Flesh', 'Agrax Earthshade', 'Nuln Oil'
);
$photo = new Photo();
$photo->thumbnail = 'chaos_space_marines_mini_4/csm_m4_th.jpg';
$photo->photo = 'chaos_space_marines_mini_4/csm_m4.jpg';
array_push($mini->photos, $photo);
$photo = new Photo();
$photo->thumbnail = 'chaos_space_marines_mini_4/csm_m5_th.jpg';
$photo->photo = 'chaos_space_marines_mini_4/csm_m5.jpg';
array_push($mini->photos, $photo);
$photo = new Photo();
$photo->thumbnail = 'chaos_space_marines_mini_4/csm_m5_th3.jpg';
$photo->photo = 'chaos_space_marines_mini_4/csm_m5_3.jpg';
array_push($mini->photos, $photo);
array_push( $minis, $mini );



// the third chaos space marine miniature - alot of skin
$mini = new Miniature();
$mini->armyCode = armyCode::CHAOS_SPACE_MARINES;
$mini->datePainted = new DateTime('2012-12-13');
$mini->name = "Dark Vengeance - Chaos Cultists - Unit 1";
$mini->description = "Full unit of Chaos Cultists from the Dark Vengeance Warhammer 40k box";
$mini->paintUsed = array(

);
$photo = new Photo();
$photo->thumbnail = 'chaos_space_marines_mini_4/csm_u1_th.jpg';
$photo->photo = 'chaos_space_marines_mini_4/csm_u1.jpg';
array_push($mini->photos, $photo);
array_push( $minis, $mini );