diff --git a/config.default.json b/config.default.json index 9d11dff..71e4139 100644 --- a/config.default.json +++ b/config.default.json @@ -518,6 +518,130 @@ "size": 250 } } - } + }, + "blood": { + "src": "./resources/bloodTemplate.png", + "z": 2, + "anchor": { + "x": { + "absolute": true, + "position": 0, + "offset": "Math.random()*(imgWidth - 400/5)", + "size": "123*5" + }, + "y": { + "absolute": true, + "position": 0, + "offset": "Math.random()*(imgHeight - 368/5)", + "size": "130*5" + } + } + }, + "hypers": { + "src": "./resources/hypersTemplate.png", + "z": 2, + "anchor": { + "x": { + "position": 0, + "offset": 70, + "size": 450 + }, + "y": { + "position": 0, + "offset": 0, + "size": 445 + } + } + }, + "deer": { + "src": "./resources/deer.png", + "z": 0, + "anchor": { + "x": { + "position": 0, + "offset": 0, + "size": 100 + }, + "y": { + "position": 0, + "offset": 40, + "size": 100 + } + } + }, + "christmasbell": [ + { + "src": "./resources/christmasBellMask.png", + "z": 2, + "anchor": { + "x": { + "position": 0, + "offset": 25, + "size": 325 + }, + "y": { + "position": 0, + "offset": 55, + "size": 330 + } + }, + "attributes": { + "globalCompositeOperation": "destination-in" + } + }, + { + "src": "./resources/christmasBell.png", + "z": 2, + "anchor": { + "x": { + "position": 0, + "offset": 0, + "size": 380 + }, + "y": { + "position": 0, + "offset": 0, + "size": 380 + } + } + } + ], + "star": [ + { + "src": "./resources/starMask.png", + "z": 2, + "anchor": { + "x": { + "position": 0, + "offset": 50, + "size": 900 + }, + "y": { + "position": 0, + "offset": 50, + "size": 900 + } + }, + "attributes": { + "globalCompositeOperation": "destination-in" + } + }, + { + "src": "./resources/star.png", + "z": 2, + "anchor": { + "x": { + "position": 0, + "offset": 0, + "size": 1024 + }, + "y": { + "position": 0, + "offset": 0, + "size": 1024 + } + } + } + ] } } diff --git a/resources/bloodTemplate.png b/resources/bloodTemplate.png new file mode 100644 index 0000000..c4b2722 Binary files /dev/null and b/resources/bloodTemplate.png differ diff --git a/resources/christmasBell.png b/resources/christmasBell.png new file mode 100644 index 0000000..e8a4f25 Binary files /dev/null and b/resources/christmasBell.png differ diff --git a/resources/christmasBellMask.png b/resources/christmasBellMask.png new file mode 100644 index 0000000..3b97251 Binary files /dev/null and b/resources/christmasBellMask.png differ diff --git a/resources/deer.png b/resources/deer.png new file mode 100644 index 0000000..2a33c99 Binary files /dev/null and b/resources/deer.png differ diff --git a/resources/hypersTemplate.png b/resources/hypersTemplate.png new file mode 100644 index 0000000..6d57d85 Binary files /dev/null and b/resources/hypersTemplate.png differ diff --git a/resources/star.png b/resources/star.png new file mode 100644 index 0000000..8d49487 Binary files /dev/null and b/resources/star.png differ diff --git a/resources/starMask.png b/resources/starMask.png new file mode 100644 index 0000000..1897831 Binary files /dev/null and b/resources/starMask.png differ