Commit 19d72442 authored by mercury233's avatar mercury233

add pendulum ritual

parent 3c555830
...@@ -12,7 +12,7 @@ namespace ImgGen ...@@ -12,7 +12,7 @@ namespace ImgGen
{ {
private Bitmap[] bAttributes = new Bitmap[8]; private Bitmap[] bAttributes = new Bitmap[8];
private Bitmap[] bStar = new Bitmap[2]; private Bitmap[] bStar = new Bitmap[2];
private Bitmap[] bTemplates = new Bitmap[15]; private Bitmap[] bTemplates = new Bitmap[16];
private Bitmap[] bType = new Bitmap[9]; private Bitmap[] bType = new Bitmap[9];
private Bitmap[] bLinkNums = new Bitmap[8]; private Bitmap[] bLinkNums = new Bitmap[8];
private Bitmap[] bLinkMarkers = new Bitmap[9]; private Bitmap[] bLinkMarkers = new Bitmap[9];
...@@ -118,6 +118,7 @@ namespace ImgGen ...@@ -118,6 +118,7 @@ namespace ImgGen
bTemplates[12] = new Bitmap("./textures/card_psynchro.png"); bTemplates[12] = new Bitmap("./textures/card_psynchro.png");
bTemplates[13] = new Bitmap("./textures/card_pfusion.png"); bTemplates[13] = new Bitmap("./textures/card_pfusion.png");
bTemplates[14] = new Bitmap("./textures/card_link.png"); bTemplates[14] = new Bitmap("./textures/card_link.png");
bTemplates[15] = new Bitmap("./textures/card_pritual.png");
bAttributes[0] = new Bitmap("./textures/att_earth.png"); bAttributes[0] = new Bitmap("./textures/att_earth.png");
bAttributes[1] = new Bitmap("./textures/att_water.png"); bAttributes[1] = new Bitmap("./textures/att_water.png");
bAttributes[2] = new Bitmap("./textures/att_fire.png"); bAttributes[2] = new Bitmap("./textures/att_fire.png");
...@@ -221,6 +222,10 @@ namespace ImgGen ...@@ -221,6 +222,10 @@ namespace ImgGen
{ {
template = bTemplates[13]; template = bTemplates[13];
} }
else if (data.isType(Type.TYPE_RITUAL))
{
template = bTemplates[15];
}
else if (data.isType(Type.TYPE_EFFECT)) else if (data.isType(Type.TYPE_EFFECT))
{ {
template = bTemplates[10]; template = bTemplates[10];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment