Skip to main content

Among Us Finally Getting Airship Map — Its Biggest One Yet


Among Us Airship map brings new tasks along with a refreshed art style and animations.

Among Us is finally getting the Airship map. The game's fourth map is also its biggest one to date complete with multiple floors, contraptions, new tasks, and a fresh set of hats. Developer InnerSloth first announced the new map at the Game Awards 2020 back in December. Thanks to its massive popularity, Among Us has been receiving constant updates to make the multiplayer title even better. Among Us was launched in 2018 but tasted great success last year as the coronavirus-induced pandemic restricted everyone to their homes. The new map update for the game also brings an increase in the number of players. Alongside, it is also getting a new code of conduct.

Announcing the update through a blog post on Thursday, InnerSloth detailed
 all the features Among Us is now receiving. The developers claim that they have
 “updated theart style with cleaner lines and an easier animation process.
” Among Us' latest Airship map will include tasks such as jewel polishing, taking 
out the trash, and more. The new update will also give players the ability to pick the 
room they start in as well as provide new areas to explore in the game.
Among Us has also improved how the characters move around in the game by including ladders and moving platforms. Lastly, the new update provides more hats for players to choose from, including a heart pin, angry eyebrows, unicorn head, among others. For players to experience the new features, they should have at least iOS 13 or Android 6 or above.

The game's agenda is to complete tasks, work as a team of up to 15 players, all the while trying to avoid getting killed and figuring out who the imposter is in the group. Recently, InnerSloth included the capability of cross-platform play with the inclusion of Nintendo Switch to the list of platforms compatible with the game. The company had also announced in December 2020 that Among Us will be available on Microsoft's Xbox Game Pass for PC and will also be available for Xbox Consoles later this year.



Comments

Popular posts from this blog

5 CSS Tips and Tricks to Try in Your Next Project

  5 CSS Tips and Tricks to Try in Your Next Project Looking for inspiration on how to add a twist to your project design? Take a look at these 5 CSS techniques and have fun experimenting with some bold ideas! 1. Bring back the 90’s with the background-clip Have you ever wondered how to apply a gradient or a texture to the text in CSS? The good news is you can easily achieve that with the background-clip property! First, we need to apply the background color to our  <h1> , then use the value text for the  background-clip  property and set the text color to transparent. < h1 class = "wordart" > The background is clipped to this text </ h1 > h1 { background-color: #ff1493; background-image: linear-gradient(319deg, #ff1493 0%, #0000ff 37%, #ff8c00 100%); } .wordart { -webkit-background-clip: text; color: transparent; } And voilà, the 90’ style WordArt is ready! 2. Crazy shapes with clip-path If you like to experiment with your ...

Passwords Suck: Here Are 4 Ways We Can Fix Them

  Passwords Suck: Here Are 4 Ways We Can Fix Them With so many websites and platforms on which we set complicated passwords, remembering them is becoming  a memory challenge . Naturally, most of us forget passwords from time to time.  In 2004, Gates predicted that passwords would die out. But, in 2021, we are still using them to log into our social platforms and emails, among many other uses. There were also other criticisms regarding the level of security and protection passwords provide. Cybersecurity professionals and businesses criticize individuals for bad password choices, without noting that technologies allow them to set such passwords. However, many people continue to set weak passwords and appear to be oblivious of common best practices. Many businesses provide no upfront instructions on how to pick the passwords they require us to have. Probably, it’s because they believe we already know or can find out this information elsewhere. However, the fact th...

Organizing Data In Table: A Quick Guide

  Organizing Data In Table: A Quick Guide We can use tables to structure data in columns and rows. The table is the HTML way to lay out the data. The CSS way to create the layout on the web page is  CSS float ,  flexbox , and  CSS grid . We cover an example to understand how to create a table on the web page. You can view the HTML table example at the below codepen link: https://codepen.io/taimoorsattar/pen/NWpdwbp For example, we can create a table in HTML for customer’s grocery item bill as below: < table border = "3" cellpadding = "10" cellspacing = "0" > < caption > Grocery Items Bill </ caption > < thead > < colgroup > < col width = "60%" > < col width = "20%" > < col width = "20%" span = "1" style = "background-color:#f1f1f1;" > </ colgroup > < tr > < th align = ...