Procházet zdrojové kódy

Add Vipers (from XCOM 2)

tags/v0.1.0
Fen Dweller před 5 roky
rodič
revize
47268a0dfb
3 změnil soubory, kde provedl 1143 přidání a 0 odebrání
  1. +16
    -0
      media/attribution.js
  2. +1106
    -0
      media/species/viper/front.svg
  3. +21
    -0
      presets/species.js

+ 16
- 0
media/attribution.js Zobrazit soubor

@@ -9402,6 +9402,18 @@ const attributionData = {
"chimerasynx"
]
},
{
prefix: "./media/species/viper/",
files: [
{ name: "front.svg", source: null }
],
authors: [
"firaxis"
],
owners: [
"firaxis"
]
},
{
prefix: "./media/vehicles/",
files: [
@@ -12543,6 +12555,10 @@ const attributionData = {
"name": "Hexuza",
"url": "https://www.furaffinity.net/user/hexuza/",
},
"firaxis": {
"name": "Firaxis",
"url": "https://firaxis.com/",
},
}
}



+ 1106
- 0
media/species/viper/front.svg
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 21
- 0
presets/species.js Zobrazit soubor

@@ -53,6 +53,27 @@ speciesMakers["Synx"] = () => {
return species;
};

speciesMakers["Viper"] = () => makeCharacter(
{ name: "Viper" },
{
front: {
height: math.unit(2.6, "meters"),
weight: math.unit(500, "lb"),
name: "Front",
image: {
source: "./media/species/viper/front.svg"
}
},
},
[
{
name: "Normal",
height: math.unit(2.6, "meters"),
default: true
},
]
);

function makeSpecies() {
const results = [];



Načítá se…
Zrušit
Uložit