forked from decentraland/marketplace
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add more wearables (decentraland#252)
* feat: add new collections * feat: add collection to webapp
- Loading branch information
1 parent
2a6bf9e
commit f96f9f7
Showing
8 changed files
with
149 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
import { Wearable } from './Wearable' | ||
|
||
export let atari_launch: Wearable[] = [ | ||
new Wearable( | ||
'atari_blue_hat', | ||
'Blue Atari Cap', | ||
"Atari's signature logo on a blue cap.", | ||
'hat', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'atari_green_hat', | ||
'Green Atari Cap', | ||
"Atari's signature logo on a green cap.", | ||
'hat', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'atari_orange_hat', | ||
'Orange Atari Cap', | ||
"Atari's signature logo on an orange cap.", | ||
'hat', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'atari_purple_hat', | ||
'Purple Atari Cap', | ||
"Atari's signature logo on a purple cap.", | ||
'hat', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'atari_red_hat', | ||
'Red Atari Cap', | ||
"Atari's signature logo on a red cap.", | ||
'hat', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'atari_blue_upper_body', | ||
'Blue Atari Tee', | ||
"Atari's signature logo on a blue tee.", | ||
'upper_body', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'atari_green_upper_body', | ||
'Green Atari Tee', | ||
"Atari's signature logo on a green tee.", | ||
'upper_body', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'atari_orange_upper_body', | ||
'Orange Atari Tee', | ||
"Atari's signature logo on an orange tee.", | ||
'upper_body', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'atari_purple_upper_body', | ||
'Purple Atari Tee', | ||
"Atari's signature logo on a purple tee.", | ||
'upper_body', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'atari_red_upper_body', | ||
'Red Atari Tee', | ||
"Atari's signature logo on a red tee.", | ||
'upper_body', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
) | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { Wearable } from './Wearable' | ||
|
||
export let ml_liondance: Wearable[] = [ | ||
new Wearable( | ||
'lion_dance_feet', | ||
'Lion Dance Shoes', | ||
'Dragon City 2021 Spring Festival Souvenirs', | ||
'feet', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'lion_dance_hat', | ||
'Lion Dance Hat', | ||
'Dragon City 2021 Spring Festival Souvenirs', | ||
'hat', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'lion_dance_lower_body', | ||
'Lion Dance Pants', | ||
'Dragon City 2021 Spring Festival Souvenirs', | ||
'lower_body', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'lion_dance_upper_body', | ||
'Lion Dance Coat', | ||
'Dragon City 2021 Spring Festival Souvenirs', | ||
'upper_body', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
) | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters