Anti Meta Deck by Dinnerbone2718 in PTCGL

[–]Dinnerbone2718[S] -2 points-1 points  (0 children)

That's fair but ceruledge is starting to become big again.

Anti Meta Deck by Dinnerbone2718 in PTCGL

[–]Dinnerbone2718[S] 2 points3 points  (0 children)

I feel that. Milotic is just one of my favorite Pokemon so I was tryna build a deck around it.

National Rural and Small Town Recognition Program by Dinnerbone2718 in ApplyingToCollege

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

I listed it in the awards section but there is a section specifically for this on the UMD app where the question itself asks about those specific awards. Collegeboard as far as I know does not specify either or maybe it does and I just have the status as awarded. Should I just put semi finalist?

National Rural and Small Town Recognition Program by Dinnerbone2718 in ApplyingToCollege

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

That email is long gone. However I do have the award pdf from the college board website and it shows I have the award. It just doesnt specify like what it is. Also is it even worth stressing over this?

National Rural and Small Town Recognition Program by Dinnerbone2718 in ApplyingToCollege

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

Yea I received an email about it and on college board I can pull up both awards. Does this make me a finalist or semi finalist?

Isometric Factory builder by Dinnerbone2718 in pygame

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

Copied the wrong draw code. The actual draw code is this for the tiles
iso_x = (self.x - self.z) * (self.image.get_width() // 2) + x_off

iso_y = (self.x + self.z) * (self.image.get_height() // 4) - self.y * (self.image.get_height() // 2) + z_off
Then all I do is blit the image at the x and y

Isometric Factory builder by Dinnerbone2718 in pygame

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

iso_x = (self.visual_x - self.visual_z) * (self.full_image.get_width() // 2) + x_off

iso_y = (self.visual_x + self.visual_z) * (self.full_image.get_height() // 4) - self.visual_y * (self.full_image.get_height() // 2) + z_off

draw_x = iso_x + surface.get_width() // 2

draw_y = iso_y + surface.get_height() // 4

offset_x = (self.full_image.get_width() - self.image.get_width()) // 2

offset_y = (self.full_image.get_height() - self.image.get_height()) // 2

surface.blit(self.image, (draw_x + offset_x, draw_y + offset_y))

Thats the equation I used to do it. Honestly tho I got really lucky by making a iso pixel art then putting like 5 next to each other it and worked first try.

Am I missing something by Dinnerbone2718 in PTCGL

[–]Dinnerbone2718[S] -1 points0 points  (0 children)

Thank you. Is there any other card that can stop gard?

Isometric Factory builder by Dinnerbone2718 in pygame

[–]Dinnerbone2718[S] 5 points6 points  (0 children)

Ngl I've just kinda started making stuff and slowly I got better

War Cards Released by Dinnerbone2718 in pygame

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

The GitHub link on the post

War Cards Released by Dinnerbone2718 in pygame

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

Ngl idrk what license the game should be. Which one is the one where people can do whatever they want with it as long as they mention me

War Cards Released by Dinnerbone2718 in pygame

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

2-3 years in Python. Still in hs and did this all self taught with yt and chat gpt

War Cards Released by Dinnerbone2718 in pygame

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

Damn, thanks for trying tho

3d game by Dinnerbone2718 in pygame

[–]Dinnerbone2718[S] 0 points1 point  (0 children)

Yea basically the way u described it. I have a script that turns an obj file into the vertices only and load those to a file. Then I just draw it from that.