-
Notifications
You must be signed in to change notification settings - Fork 0
/
SmallProjectsData.js
98 lines (97 loc) · 4.5 KB
/
SmallProjectsData.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
const filterOptions = [
{ value: "3d", label: "3D" },
{ value: "2d", label: "2D" },
{ value: "lang", label: "Pure code (with framework)" },
{ value: "unity", label: "Unity" },
// { value: "unreal", label: "Unreal" },
// { value: "godot", label: "Godot" },
{ value: "csharp", label: "C#" },
{ value: "cpp", label: "C++" },
{ value: "htmlcssjs", label: "HTML/CSS/JS" },
// { value: "xr", label: "XR" },
{ value: "console", label: "Console" },
{ value: "mobile", label: "Mobile" },
{ value: "gamejam", label: "Game Jam" }
];
const projects = [
{
title: "This website you are on now.",
image: "Covers/Portifolo.png",
description: "My portifolo website, second version.",
tags: ["2d", "lang", "htmlcssjs"],
blankTarget: true,
href: "https://github.com/bas-boop/Portfolio2"
},
{
title: "Macroplastics",
image: "Covers/Schilpad.png",
description: "This was a 6 hour game jam at HKU made with 4 people, a developer, designer and 2 artists and a small group of musicians. Move turtle and kill brain via shooting the canon.",
tags: ["2d", "engine", "unity", "csharp", "gamejam"],
blankTarget: true,
href: "https://baz-geluk9.itch.io/schildpad"
},
{
title: "Ice Bites",
image: "https://raw.githubusercontent.com/Team-Swamp/IceBites/refs/heads/develop/Assets/Sprites/T_GameIcon.png",
description: "A game about a point and click penguin restaurant. Cook dishes and serve them to the customers. Cook dishes by combining 2 ingredients on the cutting table.",
tags: ["3d", "engine", "unity", "csharp", "mobile"],
blankTarget: true,
href: "https://github.com/Team-Swamp/IceBites"
},
{
title: "Tic tac toe",
image: "Covers/Tictactoe.png",
description: "A console app where you can play tic-tac-toe with somelse or with the computer.",
tags: ["2d", "lang", "cpp", "console"],
blankTarget: true,
href: "https://github.com/bas-boop/tictactoe"
},
{
title: "Mecco the Chameleon",
image: "Covers/Mecco.png",
description: "Mecco is learning how colors work, so Mecco covers herself in baths with paint to combine the colors.",
tags: ["2d", "engine", "unity", "csharp", "gamejam"],
blankTarget: true,
href: "https://github.com/bas-boop/Mecco-the-Chameleon"
},
{
title: "Coffe maker",
image: "https://img.itch.zone/aW1nLzE0MDc1MDEyLnBuZw==/315x250%23c/sjeXEj.png",
description: "Made for the Hyper Unicorn Gamejam: Untitled (Part 4). You make coffees for the different kind of customers. Combine liquids and decorations to do so.",
tags: ["2d", "engine", "unity", "csharp", "gamejam"],
blankTarget: true,
href: "https://github.com/bas-boop/Coffee-maker"
},
{
title: "Inner thoughts",
image: "Covers/Inner_thoughts.png",
description: "It is a 2D pixel rogue-like, destroying all the eyes that have infiltrated your mind.",
tags: ["2d", "engine", "unity", "csharp", "gamejam"],
blankTarget: true,
href: "https://github.com/Team-Swamp/Inner-Thoughts"
},
{
title: "Voedelstjes",
image: "https://img.itch.zone/aW1nLzE0MjE4Nzc5LmpwZw==/315x250%23c/XNLv88.jpg",
description: "I was craving food when designing the game, so I'm going to make a game about food. You walk around to gather some tools, avoid the cutlery.",
tags: ["2d", "engine", "unity", "csharp", "gamejam"],
blankTarget: true,
href: "https://github.com/bas-boop/HUGJ2022P1-Voedelstjes"
},
{
title: "Blacksmith simulator",
image: "https://img.itch.zone/aW1nLzEzMjU0MTUxLnBuZw==/315x250%23c/p1ypUL.png",
description: "Made for the GMTK gamejam 2023, with the theme roles reversed. In this game you are in a RPG world, where you are the blacksmith for the heroes that pass by.",
tags: ["3d", "engine", "unity", "csharp", "gamejam"],
blankTarget: true,
href: "https://github.com/Team-Swamp/BlacksmithSimulator"
},
{
title: "Vormen vs Formen",
image: "https://m.gjcdn.net/game-screenshot/1200/12724325-euc6ynez-v4.webp",
description: "My first working solo project. Made in 10 weeks of time, with a relection at the end. A simple tower defence game.",
tags: ["2d", "engine", "unity", "csharp"],
blankTarget: true,
href: "https://github.com/bas-boop/VormenVsFormen"
}
];