EVR.Animation.Ending.Tombstone.Base = function(tombstone)
{
   EVR.Graphic.call(
      this, tombstone.container, RATIO_HEIGHT, tombstone, ALIGN_BOTTOM);
   this.set_attributes();
}
EVR.Animation.Ending.Tombstone.Base.prototype = new EVR.Graphic;
EVR.Animation.Ending.Tombstone.Base.prototype.set_attributes = function()
{
   this.set_proportions(TOMBSTONE_BASE_WIDTH, TOMBSTONE_BASE_HEIGHT);
   this.set_color(TOMBSTONE_COLOR);
   this.set_z(TOMBSTONE_BASE_Z_INDEX);
   this.css.borderTop = TOMBSTONE_BASE_BORDER;
}
EVR.Animation.Ending.Tombstone.Base.prototype.toString = function()
{
   return "[object EVR.Animation.Ending.Tombstone.Base]";
}
EVR.include("animation/ending/tombstone/cross/Cross.js");
EVR.include("animation/ending/tombstone/Base.js");
EVR.Animation.Ending.Tombstone = function(ending)
{
   EVR.Graphic.call(this, ending.container, RATIO_HEIGHT, null, ALIGN_BOTTOM);
   this.ending = ending;
   this.set_attributes();
   this.cross = new EVR.Animation.Ending.Tombstone.Cross(this);
   this.base = new EVR.Animation.Ending.Tombstone.Base(this);
}
EVR.Animation.Ending.Tombstone.prototype = new EVR.Graphic;
EVR.Animation.Ending.Tombstone.prototype.set_attributes = function()
{
   this.set_proportions(TOMBSTONE_WIDTH, TOMBSTONE_HEIGHT);
   this.set_color(TOMBSTONE_COLOR);
   this.place(TOMBSTONE_OFFSET, this.ending.y_offset);
   this.set_z(TOMBSTONE_Z_INDEX);
   this.css.borderTop = TOMBSTONE_BORDER;
}
EVR.Animation.Ending.Tombstone.prototype.append = function()
{
   EVR.Graphic.prototype.append.call(this);
   this.base.append();
}
EVR.Animation.Ending.Tombstone.prototype.draw = function()
{
   EVR.Graphic.prototype.draw.call(this);
   this.base.draw();
   this.cross.draw();
}
EVR.Animation.Ending.Tombstone.prototype.remove = function()
{
   this.base.remove();
   EVR.Graphic.prototype.remove.call(this);
}
EVR.Animation.Ending.Tombstone.prototype.toString = function()
{
   return "[object EVR.Animation.Ending.Tombstone]";
}
EVR.Animation.Ending.Tombstone.Cross.Horizontal = function(cross)
{
   EVR.Graphic.call(this, cross.tombstone, null, null, ALIGN_TOP);
   this.set_attributes();
}
EVR.Animation.Ending.Tombstone.Cross.Horizontal.prototype = new EVR.Graphic;
EVR.Animation.Ending.Tombstone.Cross.Horizontal.prototype.set_attributes =
   function()
{
   this.set_color(TOMBSTONE_CROSS_COLOR);
   var thickness = TOMBSTONE_CROSS_THICKNESS;
   this.set_proportions(TOMBSTONE_CROSS_WIDTH, thickness);
   this.place(null, TOMBSTONE_CROSS_BAR_OFFSET);
}
EVR.Animation.Ending.Tombstone.Cross.Horizontal.prototype.toString = function()
{
   return "[object EVR.Animation.Ending.Tombstone.Cross.Horizontal]";
}
EVR.Animation.Ending.Tombstone.Cross.Vertical = function(cross)
{
   EVR.Graphic.call(this, cross.tombstone, null, null, ALIGN_TOP);
   this.set_attributes();
}
EVR.Animation.Ending.Tombstone.Cross.Vertical.prototype = new EVR.Graphic;
EVR.Animation.Ending.Tombstone.Cross.Vertical.prototype.set_attributes =
   function()
{
   this.set_color(TOMBSTONE_CROSS_COLOR);
   var thickness = TOMBSTONE_CROSS_THICKNESS / TOMBSTONE_WIDTH;
   this.set_proportions(TOMBSTONE_CROSS_THICKNESS, TOMBSTONE_CROSS_HEIGHT);
   this.place(null, TOMBSTONE_CROSS_OFFSET);
}
EVR.Animation.Ending.Tombstone.Cross.Vertical.prototype.toString = function()
{
   return "[object EVR.Animation.Ending.Tombstone.Cross.Vertical]";
}
EVR.include("animation/ending/tombstone/cross/Vertical.js");
EVR.include("animation/ending/tombstone/cross/Horizontal.js");
EVR.Animation.Ending.Tombstone.Cross = function(tombstone)
{
   this.tombstone = tombstone;
   this.add_bars();
   this.append();
}
EVR.Animation.Ending.Tombstone.Cross.prototype.add_bars = function()
{
   this.bars = [
      new EVR.Animation.Ending.Tombstone.Cross.Vertical(this),
      new EVR.Animation.Ending.Tombstone.Cross.Horizontal(this)];
}
EVR.Animation.Ending.Tombstone.Cross.prototype.append = function()
{
   var bars = this.bars;
   bars[0].append();
   bars[1].append();
}
EVR.Animation.Ending.Tombstone.Cross.prototype.draw = function()
{
   var bars = this.bars;
   bars[0].draw();
   bars[1].draw();
   this.fixDimensions();
}
EVR.Animation.Ending.Tombstone.Cross.prototype.fixDimensions = function()
{
   var bars = this.bars;
   var horizontal = bars[1];
   var vertical = bars[0];
   var horizontal_width = horizontal.get_dimensions()[0];
   var vertical_width = vertical.get_dimensions()[0];
   if ((horizontal_width - vertical_width) % 2)
   {
      vertical.set_dimensions(vertical_width + 1);
   }
}
EVR.Animation.Ending.Tombstone.Cross.prototype.toString = function()
{
   return "[object EVR.Animation.Ending.Tombstone.Cross]";
}
EVR.Animation.Ending.Message = function(ending)
{
   EVR.Animation.call(this, ENDING_MESSAGE_FRAME_RATE);
   this.container = ending.container;
   this.color = ENDING_MESSAGE_TEXT_COLOR;
   this.family = ENDING_MESSAGE_FONT_FAMILY;
   this.depth = ENDING_MESSAGE_Z_INDEX;
   this.attached = false;
   this.add_prompts();
}
EVR.Animation.Ending.Message.prototype = new EVR.Animation;
EVR.Animation.Ending.Message.prototype.add_prompts = function()
{
   this.prompts = [];
//    this.add_title();
//    this.add_thanks();
   this.add_command();
}
EVR.Animation.Ending.Message.prototype.add_title = function()
{
   var text = ENDING_MESSAGE_TITLE_TEXT;
   var size = ENDING_MESSAGE_TITLE_SIZE;
   var spacing = ENDING_MESSAGE_TITLE_LETTER_SPACING;
   var offset = [0, ENDING_MESSAGE_TITLE_OFFSET];
   this.add_prompt(text, size, spacing, offset);
}
EVR.Animation.Ending.Message.prototype.add_thanks = function()
{
   var text = ENDING_MESSAGE_THANKS_TEXT;
   var size = ENDING_MESSAGE_THANKS_SIZE;
   var spacing = ENDING_MESSAGE_THANKS_LETTER_SPACING;
   var offset = [0, ENDING_MESSAGE_THANKS_OFFSET];
   this.add_prompt(text, size, spacing, offset);
}
EVR.Animation.Ending.Message.prototype.add_command = function()
{
   var text = ENDING_MESSAGE_COMMAND_TEXT;
   var size = ENDING_MESSAGE_COMMAND_SIZE;
   var spacing = ENDING_MESSAGE_COMMAND_LETTER_SPACING;
   var offset = [0, ENDING_MESSAGE_COMMAND_OFFSET];
   this.add_prompt(text, size, spacing, offset);
}
EVR.Animation.Ending.Message.prototype.add_prompt = function(
   text, size, spacing, offset)
{
   this.prompts.push(new EVR.Prompt(
      this.container, text, this.color, size, null, this.depth, null, offset,
      spacing));
}
EVR.Animation.Ending.Message.prototype.sequence = function()
{
   var palette = TRANSMISSION_COLORS;
   var color = palette[Math.get_random_int(0, palette.length - 1)]
   var prompts = this.prompts;
   for (var ii = 0; ii < prompts.length; ii++)
   {
	 prompts[ii].text.css.color = color;
   }
}
EVR.Animation.Ending.Message.prototype.append = function()
{
   this.apply_to_prompts("append");
   this.attached = true;
   this.play();
}
EVR.Animation.Ending.Message.prototype.apply_to_prompts = function(method)
{
   var prompt, prompts = this.prompts;
   var args = Array.prototype.slice.call(arguments);
   for (var ii = 0; ii < prompts.length; ii++)
   {
      prompt = prompts[ii];
      prompt[method].apply(prompt, args.slice(1));
   }
}
EVR.Animation.Ending.Message.prototype.draw = function()
{
   this.apply_to_prompts("draw");
}
EVR.Animation.Ending.Message.prototype.remove = function()
{
   this.stop();
   if (this.attached)
   {
      this.apply_to_prompts("remove");
   }
   this.attached = false;
}
EVR.Animation.Ending.Message.prototype.toString = function()
{
   return "[object EVR.Animation.Ending.Message]";
}
3.17.177.75
3.17.177.75
3.17.177.75
 
June 23, 2019

is pikachu dead

yes and how about that for a brain tickler that what you're seeing all along was a ghost. we used a digital stream of bits that in the future we call blood to recreate everything as a malleable substance that is projected through computers over a massive interstellar network that runs faster than the speed of light in order to simultaneously exist at every moment in time exactly the same way effectively creating a new dimension through which you can experience the timeless joy of video games. you can press a button and watch the impact of your actions instantaneously resonate eternally across an infinite landscape as you the master of a constantly regenerating universe supplant your reality with your imagination giving profoundly new meaning to the phrase what goes around comes around as what comes around is the manifestation of the thoughts you had before you were aware of them. thoughts before they were thought and actions before they were done! it's so revolutionary we saved it for 10,000 years from now but it's all recycled here in the past with you at the helm and the future at the tips of your fingers