Skip to content
/ Armus Public

A project that I created with a friend in the hope to make an army of amogi.

License

Notifications You must be signed in to change notification settings

apix0n/Armus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Voir le site internet en Français View the website in English Web sitesine Türkçede bak

🌹 Armus is a project that I created with a friend in the hope to create an "army" of amogi.

πŸ“• Definitions

  • amogus /aˈmoΙ‘Ιͺs, aˈmoΙ‘us/
  • noun
  • 1/ An edited crewmate or impostor from the videogame Among Us.
  • 2/ Misspelling/slang of the videogame Among Us.

  • amogi /aˈmoΙ‘Ιͺ/
  • plural noun
  • 1/ Edited crewmates or impostors from the videogame Among Us.

πŸ… Achievements

❓ How to see the characters?

or

  • Below the icon on the top of the README, click on a button to go to your preferred language.

πŸ“ What are all those folders?

Armus
β”œβ”€β”€ .github                     <--- GitHub files
β”‚   └── ISSUE_TEMPLATE          <--- Issue templates
β”‚
β”œβ”€β”€ en                          <--- English version of the website
β”‚   └── character               <--- Character guide in English
β”‚
β”œβ”€β”€ fr                          <--- French version of the website
β”‚   └── character               <--- Character guide in French
β”‚
β”œβ”€β”€ other
β”‚   β”œβ”€β”€ achievements            <--- Medals (.png)
β”‚   β”œβ”€β”€ achievements-psd        <--- Medals (.psd)
β”‚   β”œβ”€β”€ buttons                 <--- README buttons (.png)
β”‚   β”œβ”€β”€ buttons-psd             <--- README buttons (.psd)
β”‚   β”œβ”€β”€ create-a-character      <--- Resources to create the characters
β”‚   └── icons-psd               <--- Icons (.psd)
β”‚
β”œβ”€β”€ pics                        <--- Images of the characters (.jpeg)
β”‚
└── tr                          <--- Turkish version of the website

🎨 How to add a character

Example with the character: "termius"

  • Open /db.json

  • Gather the following informations:

    • The character's name (required),
    • The artist's ID (if you don't know what I'm talking about, check "How to add an artist" below "How to add a character") (required),
    • The image of the character (required),
    • The date when the artist drew the character or when you're adding it (required),
    • The GitHub "AddCharacter" issue number,
    • The GitHub "Idea" issue number,
  • Find the place where the character will be (the characters need to be sorted alphabetically).

    Here, the character's name is "termius", so it will be placed between "tchoupius" and "tetrus".

"characters": [
    ...
  },
  {
    "name": "talecramptus",
    "artist": "Kooki",
    "image": "../pics/talecramptus.jpeg",
    "date": "04/07/2023"
  },
  {
    "name": "tchoupius",
    "artist": "Aliko",
    "image": "../pics/tchoupius.jpeg",
    "date": "29/06/2022"
  },
  // INDICATION: This is where the character will be placed. 
  {
    "name": "tetrus",
    "artist": "Kooki",
    "image": "../pics/tetrus.jpeg",
    "date": "05/04/2023"
  },
  {
    "name": "the-creatorus",
    "artist": "Chus",
    "image": "../pics/the-creatorus.jpeg",
    "date": "20/06/2022"
  },
  {
    ...
]
  • Add the character in the right place to db.json.
"characters": [
    ...
  },
  {
    "name": "talecramptus",
    "artist": "Kooki",
    "image": "../pics/talecramptus.jpeg",
    "date": "04/07/2023"
  },
  {
    "name": "tchoupius",
    "artist": "Aliko",
    "image": "../pics/tchoupius.jpeg",
    "date": "29/06/2022"
  },
  // INDICATION: These are the lines you are adding.
  {
    "name": "termius",  // Replace "termius" by the name of the character
    "artist": "Apix",   // Replace "Apix" by the ArtistID 
    "image": "../pics/termius.jpeg", // Replace by the path of the image
    "date": "04/07/2023" // Replace by the date when the artist drew the character or when you're adding it
  }, 
  // INDICATION: Don't forget to add the comma after the ending bracket.
  {
    "name": "tetrus",
    "artist": "Kooki",
    "image": "../pics/tetrus.jpeg",
    "date": "05/04/2023"
  },
  {
    "name": "the-creatorus",
    "artist": "Chus",
    "image": "../pics/the-creatorus.jpeg",
    "date": "20/06/2022"
  },
  {
    ...
]

βœ‰ How to add an artist

Example with the artist: "EL MALADO"

  • Open /db.json.

  • Find the place where the artist should be (the artists are not sorted, add the artist after the last one).

"artists": [
  ...
  },
  {
    "id": "Jiwon",
    "prettyname": "Jiwon",
    "rank": 0
  },
  {
    "id": "GaimeLeZuitres",
    "prettyname": "GaimeLΓ©Zuitres",
    "rank": 0
  } // INDICATION: The artist will be added after this bracket.
],
  ...
  • Place the artist:
"artists": [
  ...
  },
  {
    "id": "Jiwon",
    "prettyname": "Jiwon",
    "rank": 0
  },
  {
    "id": "GaimeLeZuitres",
    "prettyname": "GaimeLΓ©Zuitres",
    "rank": 0
  }, // INDICATION: Don't forget to add the comma after the ending bracket.
  { // INDICATION: These are the lines you are adding.
    "id": "EL-MALADO", // This is the ArtistID. Repalce it by a string which doesn't have special characters nor spaces (only hyphens are allowed).
    "prettyname": "EL MALADO", // Replace this by the name that will be shown on the website.
    "rank": 0 // This is the rank of the artist. See "Artist ranks" below for more informations.
  }
],
  ...

🌟 Artist ranks

There are currently 5 artist ranks in Armus. They add style and color to the website.

  • 0, no class, less than 10 characters, no emoji, no color.
  • 1, .rank1, from 10 to 19 characters, πŸ‘‘, golden name for the artist.
  • 2, .rank2, from 20 to 29 characters, πŸ’Ž, blue name for the artist.
  • 3, .rank3, from 30 to 39 characters, 🌹, red name for the artist.
  • 4, .rank4, from 40 to 49 characters, πŸ€, green name for the artist.
  • There is an exception for Apix that will not add an emoji but add the Apix icon instead.
Where are the colors shown?

Ranks in cards The ranks are shown in each character card, where each artist's name is colored and emoji'd according to their rank.


Ranks in the overlay The ranks are shown in the overlay when you tap/click on a charcter card. It colors the bottom right gradient, the close button and the name has the corresponding emoji.


Ranks in the Thanks The ranks are shown on the artist names. They are colored and the name has the corresponding emoji.

πŸ“– The Armus Alphabet

Armus has characters that start with the letters:

  • A, first character uploaded on 19/06/2022
  • B, first character uploaded on 19/06/2022
  • C, first character uploaded on 19/06/2022
  • D, first character uploaded on 28/06/2022
  • E, first character uploaded on 21/06/2022
  • F, first character uploaded on 25/06/2022
  • G, first character uploaded on 19/06/2022
  • H, first character uploaded on 29/06/2022
  • I, first character uploaded on 20/06/2022
  • J, first character uploaded on 29/06/2022
  • K, first character uploaded on 28/06/2022
  • L, first character uploaded on 19/06/2022
  • M, first character uploaded on 19/06/2022
  • N, first character uploaded on 19/06/2022
  • O, first character uploaded on 26/12/2022
  • P, first character uploaded on 19/06/2022
  • Q, first character uploaded on 12/11/2022
  • R, first character uploaded on 28/06/2022
  • S, first character uploaded on 19/06/2022
  • T, first character uploaded on 20/06/2022
  • U, first character uploaded on 29/06/2022
  • V, first character uploaded on 19/06/2022
  • W, first character uploaded on 22/06/2022
  • X, first character uploaded on 29/06/2022
  • Y, first character uploaded on 29/06/2022
  • Z, first character uploaded on 12/11/2022

✨ Useful links

Acknowledgements A problem?

ℹ️ Other

Armus by is licensed under CC BY-NC-SA 4.0

About

A project that I created with a friend in the hope to make an army of amogi.

Resources

License

Stars

Watchers

Forks