Advertisement
Gauge1417

Trading Card

Dec 6th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. /* Gauge Smithee
  2. Trading Card
  3. */
  4. PImage Kden;
  5. int x,y;
  6. PImage Border;
  7.  
  8. void setup() {
  9. background(100,100,100);
  10. size(480,700);
  11. Kden = loadImage("Kden.png");
  12. Border = loadImage("Border.jpg");
  13. x = 40;
  14. y = 125;
  15. }
  16.  
  17. void draw () {
  18. image(Border, 0, 0);
  19. image(Kden, x, y);
  20. fill(500,500,500);
  21. textSize(30);
  22. text("Chromie",45,70);
  23. fill(0,0,0);
  24. textSize(35);
  25. text("Trap Card",260,110);
  26. textSize(15);
  27. text("Play this card when your homie with extra chromies", 50, 545);
  28. textSize(15);
  29. text(" says weird crap and you dont know how to respond.", 43, 565);
  30. textSize(17);
  31. text("THE BRO CODE",55,510);
  32. textSize(10);
  33. text("One use per homie",45,645);
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement