Skip to content

Commit

Permalink
update: Mon 22 Jul 2024 13:24:29 CEST
Browse files Browse the repository at this point in the history
  • Loading branch information
cophilot committed Jul 22, 2024
1 parent 71398fa commit e93cde1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 22 deletions.
37 changes: 25 additions & 12 deletions src/games/dorfromatik-duel/definition.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
import tree from './assets/tree.png';
import field from './assets/field.png';
import house from './assets/house.png';
import rail from './assets/rail.png';
import river from './assets/river.png';
import border from './assets/border.png';
import six from './assets/six.png';
import flagGreen from './assets/flag-green.png';
import flagYellow from './assets/flag-yellow.png';
import flagRed from './assets/flag-red.png';
import longRail from './assets/longest-rail.png';
import longRiver from './assets/longest-river.png';

export default function getDefinition() {
return {
title: 'Dorfromatik: Duel',
Expand All @@ -10,51 +23,51 @@ export default function getDefinition() {
rows: [
{
name: 'Tree',
icon: 'src/games/dorfromatik-duel/assets/tree.png',
icon: tree,
},
{
name: 'Field',
icon: 'src/games/dorfromatik-duel/assets/field.png',
icon: field,
},
{
name: 'House',
icon: 'src/games/dorfromatik-duel/assets/house.png',
icon: house,
},
{
name: 'Railway',
icon: 'src/games/dorfromatik-duel/assets/rail.png',
icon: rail,
},
{
name: 'River',
icon: 'src/games/dorfromatik-duel/assets/river.png',
icon: river,
},
{
name: 'Border',
icon: 'src/games/dorfromatik-duel/assets/border.png',
icon: border,
},
{
name: 'Six',
icon: 'src/games/dorfromatik-duel/assets/six.png',
icon: six,
},
{
name: 'Flag green',
icon: 'src/games/dorfromatik-duel/assets/flag-green.png',
icon: flagGreen,
},
{
name: 'Flag yellow',
icon: 'src/games/dorfromatik-duel/assets/flag-yellow.png',
icon: flagYellow,
},
{
name: 'Flag red',
icon: 'src/games/dorfromatik-duel/assets/flag-red.png',
icon: flagRed,
},
{
name: 'Longest Railway',
icon: 'src/games/dorfromatik-duel/assets/longest-rail.png',
icon: longRail,
},
{
name: 'Longest River',
icon: 'src/games/dorfromatik-duel/assets/longest-river.png',
icon: longRiver,
},
],
};
Expand Down
25 changes: 15 additions & 10 deletions src/games/harmonies/definition.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import leaf from './assets/leaf.png';
import stone from './assets/stone.png';
import flower from './assets/flower.png';
import house from './assets/house.png';
import water from './assets/water.png';
import card from './assets/card.png';

export default function getDefinition() {
return {
Expand All @@ -16,43 +21,43 @@ export default function getDefinition() {
},
{
name: 'Stone',
icon: 'src/games/harmonies/assets/stone.png',
icon: stone,
},
{
name: 'Flower',
icon: 'src/games/harmonies/assets/flower.png',
icon: flower,
},
{
name: 'House',
icon: 'src/games/harmonies/assets/house.png',
icon: house,
},
{
name: 'Water',
icon: 'src/games/harmonies/assets/water.png',
icon: water,
},
{
name: 'Animal',
icon: 'src/games/harmonies/assets/card.png',
icon: card,
},
{
name: 'Animal',
icon: 'src/games/harmonies/assets/card.png',
icon: card,
},
{
name: 'Animal',
icon: 'src/games/harmonies/assets/card.png',
icon: card,
},
{
name: 'Animal',
icon: 'src/games/harmonies/assets/card.png',
icon: card,
},
{
name: 'Animal',
icon: 'src/games/harmonies/assets/card.png',
icon: card,
},
{
name: 'Animal',
icon: 'src/games/harmonies/assets/card.png',
icon: card,
},
],
};
Expand Down

0 comments on commit e93cde1

Please sign in to comment.