Skip to content

Commit

Permalink
Merge pull request #182 from raid-guild/chore/add-new-default-classes…
Browse files Browse the repository at this point in the history
…-and-items

Add new default classes and items
  • Loading branch information
ECWireless authored Apr 18, 2024
2 parents 7008ac1 + 8dc3ba0 commit 5bd0c64
Showing 1 changed file with 77 additions and 2 deletions.
79 changes: 77 additions & 2 deletions lib/traits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ export type ItemLayer = {
};

export const DEFAULT_ITEMS: Array<ItemLayer> = [
{
name: 'Amulet Of Influence',
description: 'Amulet Of Influence',
thumbnail: 'THUMB__Amulet_of_Influence',
layer: '4_AmuletOfInfluence',
type: EquippableTraitType.EQUIPPED_ITEM_1,
},
{
name: 'Babymoloch Chain',
description: 'Babymoloch Chain',
Expand Down Expand Up @@ -80,6 +87,13 @@ export const DEFAULT_ITEMS: Array<ItemLayer> = [
layer: '4_Elderbow',
type: EquippableTraitType.EQUIPPED_ITEM_1,
},
{
name: 'Guilden Quill',
description: 'Guilden Quill',
thumbnail: 'THUMB__Guilden_Quill',
layer: '4_GildenQuill',
type: EquippableTraitType.EQUIPPED_ITEM_1,
},
{
name: 'Lute Of Lore',
description: 'Lute Of Lore',
Expand All @@ -94,13 +108,27 @@ export const DEFAULT_ITEMS: Array<ItemLayer> = [
layer: '4_Rake',
type: EquippableTraitType.EQUIPPED_ITEM_1,
},
{
name: 'Sacred Flame Spell',
description: 'Sacred Flame Spell',
thumbnail: 'THUMB__Sacred_Flame_Spell',
layer: '4_SacredFlame',
type: EquippableTraitType.EQUIPPED_ITEM_1,
},
{
name: 'Small Dagger',
description: 'Small Dagger',
thumbnail: 'THUMB__Small_Dagger',
layer: '4_SmallDagger',
type: EquippableTraitType.EQUIPPED_ITEM_1,
},
{
name: 'Staff Of Buhndoar',
description: 'Staff Of Buhndoar',
thumbnail: 'THUMB__Staff_of_Buhndoar',
layer: '4_StaffOfBuhndoar',
type: EquippableTraitType.EQUIPPED_ITEM_1,
},
{
name: 'Wooden Bow',
description: 'Wooden Bow',
Expand Down Expand Up @@ -136,6 +164,20 @@ export const DEFAULT_ITEMS: Array<ItemLayer> = [
layer: '5_Cleric',
type: EquippableTraitType.EQUIPPED_WEARABLE,
},
{
name: 'Druid Clothing',
description: 'Druid Clothing',
thumbnail: 'THUMB__Druid_clothing',
layer: '5_Druid',
type: EquippableTraitType.EQUIPPED_WEARABLE,
},
{
name: 'Golden Raider Clothing',
description: 'Golden Raider Clothing',
thumbnail: 'THUMB__GoldenRaider_clothing',
layer: '5_GoldenRaider',
type: EquippableTraitType.EQUIPPED_WEARABLE,
},
{
name: 'Healer Clothing',
description: 'Healer Clothing',
Expand Down Expand Up @@ -213,6 +255,13 @@ export const DEFAULT_ITEMS: Array<ItemLayer> = [
layer: '5_Scribe',
type: EquippableTraitType.EQUIPPED_WEARABLE,
},
{
name: 'Sorcerer Clothing',
description: 'Sorcerer Clothing',
thumbnail: 'THUMB__Sorcerer_clothing',
layer: '5_Sorcerer',
type: EquippableTraitType.EQUIPPED_WEARABLE,
},
{
name: 'Tavern Keeper Clothing',
description: 'Tavern Keeper Clothing',
Expand Down Expand Up @@ -241,6 +290,13 @@ export const DEFAULT_ITEMS: Array<ItemLayer> = [
layer: '7_BasicSword',
type: EquippableTraitType.EQUIPPED_ITEM_2,
},
{
name: 'Brass Knuckles',
description: 'Brass Knuckles',
thumbnail: 'THUMB__Brass_knuckles',
layer: '7_BrassKnuckles',
type: EquippableTraitType.EQUIPPED_ITEM_2,
},
{
name: 'Broken Brood',
description: 'Broken Brood',
Expand All @@ -255,6 +311,13 @@ export const DEFAULT_ITEMS: Array<ItemLayer> = [
layer: '7_Hammer',
type: EquippableTraitType.EQUIPPED_ITEM_2,
},
{
name: 'Katana',
description: 'Katana',
thumbnail: 'THUMB__Katana',
layer: '7_Katana',
type: EquippableTraitType.EQUIPPED_ITEM_2,
},
{
name: 'Spikey',
description: 'Spikey',
Expand Down Expand Up @@ -283,6 +346,13 @@ export const DEFAULT_ITEMS: Array<ItemLayer> = [
layer: '7_TheGhoulSlayer',
type: EquippableTraitType.EQUIPPED_ITEM_2,
},
{
name: 'Warhammer',
description: 'Warhammer',
thumbnail: 'THUMB__Warhammer',
layer: '7_Warhammer',
type: EquippableTraitType.EQUIPPED_ITEM_2,
},
];

export type ClassEmblem = {
Expand Down Expand Up @@ -322,6 +392,11 @@ export const DEFAULT_CLASSES: Array<ClassEmblem> = [
description: 'Hunter',
emblem: 'hunter',
},
{
name: 'Jester',
description: 'Jester',
emblem: 'jester',
},
{
name: 'Monk',
description: 'Monk',
Expand Down Expand Up @@ -381,10 +456,10 @@ export const DEFAULT_TRAITS: TraitsArray = [
];

export const LAYERS_URI =
'ipfs://bafybeidfpt3earjjmrcbk4gcviupjp3a4b5vkx5ldhf5brioobtvbgzlni';
'ipfs://QmZz2uLSv1cFPPmvHMjef8PJPGd47QBtkqCEyZfvtyeAyv';

export const CLASS_URI =
'ipfs://QmTgLoiqngDkMvcK2sE8DGBxKWwZ38epkYeKJYs6g4XTFB';
'ipfs://QmVxRbtYB6YYwg2QcUZfPcxPyBhCfYUdWtjVNNtwXpidkB';

export const TRAITS: { [key: number]: { [key: string]: string[] } } = {
0: {
Expand Down

0 comments on commit 5bd0c64

Please sign in to comment.