Переглянути джерело

Add sizes for March and Noir

tags/v0.0.7
Fen Dweller 5 роки тому
джерело
коміт
ccdd10e445
1 змінених файлів з 62 додано та 0 видалено
  1. +62
    -0
      presets/characters.js

+ 62
- 0
presets/characters.js Переглянути файл

@@ -175,6 +175,37 @@ function makeMarch() {
};

const entity = makeEntity("March", "March-Dragon", views);

entity.defaults.push({
name: "Normal",
height: math.unit(7.9, "feet")
});

entity.defaults.push({
name: "Macro",
height: math.unit(220, "meters")
});

entity.defaults.push({
name: "Megamacro",
height: math.unit(2.98, "km")
});

entity.defaults.push({
name: "Gigamacro",
height: math.unit(15963, "meters")
});

entity.defaults.push({
name: "Teramacro",
height: math.unit(2980000000, "kilometers")
});

entity.defaults.push({
name: "Examacro",
height: math.unit(250, "parsecs")
});

entity.views.front.height = math.unit(2.98, "km");
return entity;
}
@@ -205,6 +236,37 @@ function makeNoir() {
};

const entity = makeEntity("Noir", "March-Dragon", views);

entity.defaults.push({
name: "Normal",
height: math.unit(6.6, "feet")
});

entity.defaults.push({
name: "Macro",
height: math.unit(500, "feet")
});

entity.defaults.push({
name: "Megamacro",
height: math.unit(2.5, "km")
});

entity.defaults.push({
name: "Gigamacro",
height: math.unit(22500, "meters")
});

entity.defaults.push({
name: "Teramacro",
height: math.unit(2500000000, "kilometers")
});

entity.defaults.push({
name: "Examacro",
height: math.unit(200, "parsecs")
});

entity.views.front.height = math.unit(2.5, "km");
return entity;
}


Завантаження…
Відмінити
Зберегти