2020-12-30 22:20:14 -05:00
|
|
|
<?php
|
2021-02-11 22:02:06 -05:00
|
|
|
$machine->name = "Hinamizawa";
|
|
|
|
|
$machine->description = "a riverside village in the valley of the forested mountains";
|
2021-02-11 20:02:07 -05:00
|
|
|
|
2021-02-11 22:02:06 -05:00
|
|
|
$disk1->id = "furude";
|
|
|
|
|
$disk1->name = "Furude";
|
|
|
|
|
$disk1->description = "the high priestess";
|
|
|
|
|
$disk1->location = "/data/";
|
|
|
|
|
$disk2->id = "maebara";
|
|
|
|
|
$disk2->name = "Maebara";
|
|
|
|
|
$disk2->description = "the fool";
|
|
|
|
|
$disk2->location = "/data/maebara/";
|
|
|
|
|
$disk3->id = "houjou";
|
|
|
|
|
$disk3->name = "Houjou";
|
|
|
|
|
$disk3->description = "the moon";
|
|
|
|
|
$disk3->location = "/data/houjou/";
|
|
|
|
|
$disk4->id = "ryuuguu";
|
|
|
|
|
$disk4->name = "Ryuuguu";
|
|
|
|
|
$disk4->description = "the hierophant";
|
|
|
|
|
$disk4->location = "/data/ryuuguu/";
|
|
|
|
|
$disk5->id = "sonozaki";
|
|
|
|
|
$disk5->name = "Sonozaki";
|
|
|
|
|
$disk5->description = "the chariot";
|
|
|
|
|
$disk5->location = "/data/houjou/";
|
2021-02-11 20:02:07 -05:00
|
|
|
|
2021-02-11 22:02:06 -05:00
|
|
|
$service1->id = "st-lucia";
|
|
|
|
|
$service1->name = "St. Lucia";
|
|
|
|
|
$service1->description = "academy for girls";
|
|
|
|
|
$service1->location = "https://st.lucia.homo.casa";
|
|
|
|
|
$service2->id = "seventh-mart";
|
|
|
|
|
$service2->name = "Seventh Mart";
|
|
|
|
|
$service2->description = "local grocery store";
|
|
|
|
|
$service2->location = "https://seventh.mart.homo.casa";
|
|
|
|
|
$service3->id = "irie-clinic";
|
|
|
|
|
$service3->name = "Irie Clinic";
|
|
|
|
|
$service3->description = "healthcare research";
|
|
|
|
|
$service3->location = "https://irie.clinic.homo.casa";
|
|
|
|
|
$service1->id = "angel-mort";
|
|
|
|
|
$service4->name = "Angel Mort";
|
|
|
|
|
$service4->description = "dessert cafe";
|
|
|
|
|
$service4->location = "https://angel.mort.homo.casa";
|
2021-02-11 20:02:07 -05:00
|
|
|
|
2021-02-11 22:02:06 -05:00
|
|
|
$machine->driveLabel = "Houses";
|
|
|
|
|
$machine->drives = array($disk1, $disk2, $disk3, $disk4, $disk5);
|
|
|
|
|
$machine->serviceLabel = "Places of Business";
|
|
|
|
|
$machine->services = array($service1, $service2, $service3, $service4);
|
2021-02-11 20:02:07 -05:00
|
|
|
|
2021-02-11 22:02:06 -05:00
|
|
|
$machine->footer->name = "hanyuu";
|
|
|
|
|
$machine->footer->description = "Child of Man. What do you seek from this world?";
|
2020-12-30 22:20:14 -05:00
|
|
|
?>
|