forked from decentraland/marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add stay safe collection and only start once (decentraland#172)
* feat: add stay safe collection and only start once * fix: typos
- Loading branch information
1 parent
f60edf8
commit 203ee8b
Showing
9 changed files
with
109 additions
and
19 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -196,6 +196,7 @@ templates: | |
- Parcel | ||
- Estate | ||
- Wearable | ||
- ENS | ||
abis: | ||
- name: ERC721 | ||
file: ./abis/ERC721.json | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import { Wearable } from './Wearable' | ||
|
||
export let stay_safe: Wearable[] = [ | ||
new Wearable( | ||
'protection_mask_abstract_mask', | ||
'Abstract Protection Mask', | ||
'Supporting the #CryptoAgainstCOVID initiative', | ||
'mask', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'protection_mask_african_mask', | ||
'African Protection Mask', | ||
'Supporting the #CryptoAgainstCOVID initiative', | ||
'mask', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'protection_mask_funny_mask', | ||
'Funny Protection Mask', | ||
'Supporting the #CryptoAgainstCOVID initiative', | ||
'mask', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'protection_mask_graffiti_mask', | ||
'Graffiti Protection Mask', | ||
'Supporting the #CryptoAgainstCOVID initiative', | ||
'mask', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'protection_mask_hot_mask', | ||
'Hot Protection Mask', | ||
'Supporting the #CryptoAgainstCOVID initiative', | ||
'mask', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'protection_mask_monster_mask', | ||
'Monster Protection Mask', | ||
'Supporting the #CryptoAgainstCOVID initiative', | ||
'mask', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'protection_mask_skull_mask', | ||
'Skull Protection Mask', | ||
'Supporting the #CryptoAgainstCOVID initiative', | ||
'mask', | ||
'epic', | ||
['BaseMale', 'BaseFemale'] | ||
), | ||
new Wearable( | ||
'protection_mask_tiger_mask', | ||
'Tiger Protection Mask', | ||
'Supporting the #CryptoAgainstCOVID initiative', | ||
'mask', | ||
'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