Pot of Greed is probably the most infamous case of this as mentioned below, being a straightforward card that allows the player to draw 2 more cards
(3) Once per turn (Quick Effect): You can target 1 card in either GY
Genetic Apex Museum 1 (Charizard) There are three different Genetic Apex Museum secret missions, all of which are tied to getting the unique illustration cards
Complete the mission that gets you the Rayquaza ex card: Win 50 battles. Once you win 50 battles (on any mode or difficulty), return to the Special mission page, then complete the mission to get your card
![journey together enhanced booster box case Pokemon (SV09) CASE! 6 Boxes Factory Sealed IN HAND! VioletJourney Together expansion Booster Box [Enhanced] Prices |](https://i.ebayimg.com/images/g/4HUAAeSwmd1qSqGI/s-l300.jpg)
This is the card This is what i do: Read the card and convert it to grayscale import cv2 import numpy as np import pytesseract from PIL import Image frame = cv2.imread(" ") imgray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) Get the outer contour and resize the image edged = cv2.Canny(imgray, 30, 200) contours, hierarchy = cv2.findContours(edged, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) if len(contours) != 0: # find the biggest countour (c) by the area c = max(contours, key=cv2.contourArea) x, y, w, h = cv2.boundingRect(c) # draw the biggest contour (c) in green # cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2) crop_frame = frame[y: y + h, x: x + w] crop_frame = cv2.resize(crop_frame, (450, 600), interpolation=cv2.INTER_AREA) Cut the bottom right corner height, width, channels = crop_frame.shape bottom_right_corner = crop_frame[560: 600, 300: 450] Read the bottom corner text with pytesseract ocr gray = cv2.cvtColor(bottom_right_corner, cv2.COLOR_BGR2GRAY) image_ = Image.fromarray(gray) text = pytesseract.image_to_string(image_) Final code import cv2 import numpy as np import pytesseract from PIL import Image frame = cv2.imread(" ") imgray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) edged = cv2.Canny(imgray, 30, 200) contours, hierarchy = cv2.findContours(edged, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) if len(contours) != 0: # find the biggest countour (c) by the area c = max(contours, key=cv2.contourArea) x, y, w, h = cv2.boundingRect(c) # draw the biggest contour (c) in green # cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2) crop_frame = frame[y: y + h, x: x + w] crop_frame = cv2.resize(crop_frame, (450, 600), interpolation=cv2.INTER_AREA) height, width, channels = crop_frame.shape bottom_right_corner = crop_frame[560: 600, 300: 450] gray = cv2.cvtColor(bottom_right_corner, cv2.COLOR_BGR2GRAY) cv2.imshow("gray", gray) cv2.waitKey(0) image_ = Image.fromarray(gray) text = pytesseract.image_to_string(image_) print("Text: ", text)
![journey together enhanced booster box case Pokemon (SV09) CASE! 6 Boxes Factory Sealed IN HAND! VioletJourney Together expansion Booster Box [Enhanced] Prices |](https://thehiddenpotion.com/cdn/shop/files/JTBB.jpg?v=1769131792&width=1000)
This attack does 40 damage at base and, if you win a coin flip, you get to do an extra 60 damage