less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
456 B

  1. function makeBuilding() {
  2. views = {
  3. building: {
  4. attributes: {
  5. height: {
  6. name: "Height",
  7. power: 1,
  8. type: "length",
  9. base: math.unit(324, "meter")
  10. }
  11. },
  12. image: "./media/buildings/eiffel-tower.svg",
  13. name: "Building"
  14. },
  15. };
  16. return makeEntity("Eiffel Tower", "Fen", views);
  17. }