diff --git a/app.js b/app.js index 1d612c8..8186204 100644 --- a/app.js +++ b/app.js @@ -22,6 +22,21 @@ const recipes = [ ingredients: ['O', 'O'], // 2x Sauerstoff result: 'O₂ (Sauerstoff-Molekül)', color: '#bdc3c7' + }, + { + ingredients: ['C', 'O', 'O'], // 1x Kohlenstoff, 2x Sauerstoff + result: 'CO₂ (Kohlendioxid)', + color: '#7f8c8d' + }, + { + ingredients: ['C', 'H', 'H', 'H', 'H'], // 1x Kohlenstoff, 4x Wasserstoff + result: 'CH₄ (Methan)', + color: '#f39c12' + }, + { + ingredients: ['N', 'H', 'H', 'H'], // 1x Stickstoff, 3x Wasserstoff + result: 'NH₃ (Ammoniak)', + color: '#9b59b6' } ]; diff --git a/index.html b/index.html index ab7b474..9c32966 100644 --- a/index.html +++ b/index.html @@ -12,6 +12,8 @@
Klicke, um Atome zu spawnen.