Skip to content

Commit

Permalink
complete the grid
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisinajar committed Aug 1, 2024
1 parent 77a2d65 commit 810b413
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/game/inventory/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ export function Inventory(): JSX.Element | null {
artifact={hero.equipment.leftHand?.imbue?.artifact}
affixes={hero.equipment.leftHand?.imbue?.affixes}
/>
</Grid>
<Grid item xs={6} sm={3}>
<ArtifactModifiers
title={
hero.equipment.rightHand
Expand All @@ -166,6 +168,8 @@ export function Inventory(): JSX.Element | null {
artifact={hero.equipment.rightHand?.imbue?.artifact}
affixes={hero.equipment.rightHand?.imbue?.affixes}
/>
</Grid>
<Grid item xs={6} sm={3}>
<ArtifactModifiers
title={
hero.equipment.bodyArmor
Expand All @@ -175,6 +179,8 @@ export function Inventory(): JSX.Element | null {
artifact={hero.equipment.bodyArmor?.imbue?.artifact}
affixes={hero.equipment.bodyArmor?.imbue?.affixes}
/>
</Grid>
<Grid item xs={6} sm={3}>
<ArtifactModifiers
title={
hero.equipment.handArmor
Expand All @@ -184,6 +190,8 @@ export function Inventory(): JSX.Element | null {
artifact={hero.equipment.handArmor?.imbue?.artifact}
affixes={hero.equipment.handArmor?.imbue?.affixes}
/>
</Grid>
<Grid item xs={6} sm={3}>
<ArtifactModifiers
title={
hero.equipment.legArmor
Expand All @@ -193,6 +201,8 @@ export function Inventory(): JSX.Element | null {
artifact={hero.equipment.legArmor?.imbue?.artifact}
affixes={hero.equipment.legArmor?.imbue?.affixes}
/>
</Grid>
<Grid item xs={6} sm={3}>
<ArtifactModifiers
title={
hero.equipment.headArmor
Expand All @@ -202,6 +212,8 @@ export function Inventory(): JSX.Element | null {
artifact={hero.equipment.headArmor?.imbue?.artifact}
affixes={hero.equipment.headArmor?.imbue?.affixes}
/>
</Grid>
<Grid item xs={6} sm={3}>
<ArtifactModifiers
title={
hero.equipment.footArmor
Expand Down

0 comments on commit 810b413

Please sign in to comment.