diff --git a/creator/index.php b/creator/index.php index a69e81e2..4e7f9012 100644 --- a/creator/index.php +++ b/creator/index.php @@ -728,6 +728,7 @@ include('../globalHTML/header-1.php');

Justin J.

Sam B.

Damian Z.

+

Montana K.

And of course, thank you to all of those who have made donations in the past.

diff --git a/img/frames/dmu/stainedGlass/crown.svg b/img/frames/dmu/stainedGlass/crown.svg new file mode 100644 index 00000000..61213e8a --- /dev/null +++ b/img/frames/dmu/stainedGlass/crown.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/img/frames/dmu/stainedGlass/crownThumb.png b/img/frames/dmu/stainedGlass/crownThumb.png new file mode 100644 index 00000000..44c54d2d Binary files /dev/null and b/img/frames/dmu/stainedGlass/crownThumb.png differ diff --git a/img/frames/dmu/stainedGlass/rules.svg b/img/frames/dmu/stainedGlass/rules.svg new file mode 100644 index 00000000..0d2431ea --- /dev/null +++ b/img/frames/dmu/stainedGlass/rules.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/img/frames/dmu/stainedGlass/rulesThumb.png b/img/frames/dmu/stainedGlass/rulesThumb.png new file mode 100644 index 00000000..495c3bf8 Binary files /dev/null and b/img/frames/dmu/stainedGlass/rulesThumb.png differ diff --git a/js/frames/packDMUStainedGlass.js b/js/frames/packDMUStainedGlass.js index 66d711eb..537cec9b 100644 --- a/js/frames/packDMUStainedGlass.js +++ b/js/frames/packDMUStainedGlass.js @@ -1,26 +1,28 @@ //Create objects for common properties across available frames +var masks = [{src:'/img/frames/dmu/stainedGlass/rules.svg', name:'Rules'}]; +var masks2 = [{src:'/img/frames/dmu/stainedGlass/crown.svg', name:'Inner Crown'}]; var bounds = {x:0.7747, y:0.8872, width:0.1747, height:0.0605}; var bounds2 = {x:0.1134, y:0.0139, width:0.7734, height:0.0262}; //defines available frames availableFrames = [ - {name:'White Frame', src:'/img/frames/dmu/stainedGlass/w.png'}, - {name:'Blue Frame', src:'/img/frames/dmu/stainedGlass/u.png'}, - {name:'Black Frame', src:'/img/frames/dmu/stainedGlass/b.png'}, - {name:'Red Frame', src:'/img/frames/dmu/stainedGlass/r.png'}, - {name:'Green Frame', src:'/img/frames/dmu/stainedGlass/g.png'}, - {name:'Multicolored Frame', src:'/img/frames/dmu/stainedGlass/m.png'}, + {name:'White Frame', src:'/img/frames/dmu/stainedGlass/w.png', masks:masks}, + {name:'Blue Frame', src:'/img/frames/dmu/stainedGlass/u.png', masks:masks}, + {name:'Black Frame', src:'/img/frames/dmu/stainedGlass/b.png', masks:masks}, + {name:'Red Frame', src:'/img/frames/dmu/stainedGlass/r.png', masks:masks}, + {name:'Green Frame', src:'/img/frames/dmu/stainedGlass/g.png', masks:masks}, + {name:'Multicolored Frame', src:'/img/frames/dmu/stainedGlass/m.png', masks:masks}, {name:'White Power/Toughness', src:'/img/frames/dmu/stainedGlass/pt/w.png', bounds:bounds}, {name:'Blue Power/Toughness', src:'/img/frames/dmu/stainedGlass/pt/u.png', bounds:bounds}, {name:'Black Power/Toughness', src:'/img/frames/dmu/stainedGlass/pt/b.png', bounds:bounds}, {name:'Red Power/Toughness', src:'/img/frames/dmu/stainedGlass/pt/r.png', bounds:bounds}, {name:'Green Power/Toughness', src:'/img/frames/dmu/stainedGlass/pt/g.png', bounds:bounds}, {name:'Multicolored Power/Toughness', src:'/img/frames/dmu/stainedGlass/pt/m.png', bounds:bounds}, - {name:'White Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/w.png', bounds:bounds2}, - {name:'Blue Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/u.png', bounds:bounds2}, - {name:'Black Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/b.png', bounds:bounds2}, - {name:'Red Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/r.png', bounds:bounds2}, - {name:'Green Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/g.png', bounds:bounds2}, - {name:'Multicolored Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/m.png', bounds:bounds2}, + {name:'White Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/w.png', bounds:bounds2, masks:masks2}, + {name:'Blue Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/u.png', bounds:bounds2, masks:masks2}, + {name:'Black Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/b.png', bounds:bounds2, masks:masks2}, + {name:'Red Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/r.png', bounds:bounds2, masks:masks2}, + {name:'Green Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/g.png', bounds:bounds2, masks:masks2}, + {name:'Multicolored Legend Crown', src:'/img/frames/dmu/stainedGlass/crowns/m.png', bounds:bounds2, masks:masks2}, {name:'Rare Stamp', src:'/img/frames/dmu/stamp.png', bounds:{x:0.4554, y:0.9172, width:0.0894, height:0.0320}} ]; //disables/enables the "Load Frame Version" button