diff --git a/data/borders/foil.png b/data/borders/foil.png index 58677fee..6aeaa216 100644 Binary files a/data/borders/foil.png and b/data/borders/foil.png differ diff --git a/data/borders/m15/legendMultiMask.png b/data/borders/m15/legendMultiMask.png index 33254c7a..ec439368 100644 Binary files a/data/borders/m15/legendMultiMask.png and b/data/borders/m15/legendMultiMask.png differ diff --git a/data/borders/old.png b/data/borders/old.png new file mode 100644 index 00000000..58677fee Binary files /dev/null and b/data/borders/old.png differ diff --git a/data/scripts/main.js b/data/scripts/main.js index 9da87682..b5de8aea 100644 --- a/data/scripts/main.js +++ b/data/scripts/main.js @@ -244,7 +244,9 @@ function createBorder() { //These if else statements check to see whether or not to draw different parts of the card, like the legendary border or rare stamp, and draws them in the appropriate order so that when multiple border colors are used the gradients overlap correctly //BACKGROUND COLOR border.clearRect(0, 0, cardWidth, cardHeight) - drawMask(document.getElementById("inputColor").value, 0, 0, cardWidth, cardHeight, border, imgArtMask, false, false) + if (document.getElementById("checkboxBorderless").checked == false) { + drawMask(document.getElementById("inputColor").value, 0, 0, cardWidth, cardHeight, border, imgArtMask, false, false) + } //MAIN CARD FRAME drawMask(imgBorderColor, 0, 0, cardWidth, cardHeight, border, imgFrameMask, false, false) if (secondColor == true && secondBorder == true) { diff --git a/index.html b/index.html index b3c62225..fc3c9442 100644 --- a/index.html +++ b/index.html @@ -139,22 +139,27 @@