Pokemon scarlet and violet snorlax
Pokémon Scarlet and Violet
2022.02.27 15:15 Infinity_Raptor Pokémon Scarlet and Violet
Released for Nintendo Switch on November 18, 2022, Pokémon Scarlet and Pokémon Violet are the newest chapters in the Pokémon mainline series. Explore freely in a richly-expressed open world and get acquainted with the Paldea region, its Pokémon, and choose your own path!
2022.02.27 15:17 Mast3rA PokemonVioletScarlet
This is a reddit community for all discussions of pokemon violet and scarlet.
2022.02.27 15:17 blizzard2875 PokemonScarlet_Violet
2023.06.05 13:19 RipperMcEl Why are some diamond and pearl cards stamped and some are just reverses?
2023.06.05 13:19 estimeric Experience grinder who sends daily gifts
Hi all! I'm looking for more friends to grind exp with. I send gifts to everyone on my friendlist daily. I can't open all of the gifts I receive, so I prioritize highest friendship level when opening them. I delete best friends once we've both had enough time to claim the rewards. I don't really care about using lucky eggs so you can open the gifts when you want to. Hope to see you around and happy Pokemon hunting!
0698 3068 9612
honkion
submitted by
estimeric to
PokemonGoFriends [link] [comments]
2023.06.05 13:16 willlael Modifications in a graphic with mathplotlib
I am currently working on automating the creation of a shift schedule for a project. I want to hand over my code a list of 0 or 1, and whenever the list contains a 1 at a specific point a squres (indicator for shift) appears. So far so good. It already works like a charm but one thing doesnt work as i want it to work. Whenever i have two doctors working the same shift, i.e. both or all three have a 1 at the same place in the list, only one square is displayed (always the latter one). How do i need the code in order to do this: Whenever there is more than one shift, i.e. two or three, i want the code to display the additional square on top of each other. Lets say, the lists look like this: doctor1 = [0,1,0,...] doctor2 = [0,1,1,...] doctor2 = [1,1,0,...] This implies that all three work shift two on day 1. Now i want that the first squares has the coordinates (see code below) (1.4, 0), the one for doctor 2 (1.4, 1) and for doctor three (1.4, 3). Another example: doctor1 = [0,0,0,...] doctor2 = [0,1,1,...] doctor2 = [1,1,0,...] Now doctor 2 should have the coordinates (1.4, 0) and doctor 3 (1.4, 1). For the last example: doctor1 = [0,1,0,...] doctor2 = [0,1,1,...] doctor2 = [1,0,0,...] Doctor 1 should have the coordinates (1.4, 0) and doctor 3 (1.4, 1). How would i achieve that? This is my code: import matplotlib.pyplot as plt from matplotlib.patches import Rectangle, Patch import numpy as np import matplotlib.lines as mlines fig = plt.figure(figsize=(12, 8)) # Plot ax = fig.add_subplot(111) ax.axis("off") # Lists changes = [4, 2, 3] doctor_1 = [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0] doctor_2 = [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0] doctor_3 = [0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0] # Coordinats positions = [(0.3, 0), (1.4, 0), (2.5, 0), (3.7, 0), (4.8, 0), (5.9, 0), (7.1, 0), (8.2, 0), (9.3, 0), (10.5, 0), (11.6, 0), (12.7, 0), (13.9, 0), (15, 0), (16.1, 0), (17.3, 0), (18.4, 0), (19.5, 0), (20.7, 0), (21.8, 0), (22.9, 0), (24.1, 0), (25.2, 0), (26.3, 0), (0.3, -3.5), (1.4, -3.5),(2.5, -3.5), (3.7, -3.5), (4.8, -3.5), (5.9, -3.5), (7.1, -3.5), (8.2, -3.5), (9.3, -3.5), (10.5, -3.5), (11.6, -3.5), (12.7, -3.5), (13.9, -3.5), (15, -3.5), (16.1, -3.5), (17.4, -3.5), (18.4, -3.5), (19.5, -3.5)] # Colors colors = ['teal', 'orange', 'violet'] fig = plt.figure(figsize=(12, 8)) ax = fig.add_subplot(111) ax.axis("off") # Plot for day in range(14): for shift in range(3): index = day * 3 + shift if doctor_1[index] == 1: ax.add_patch(Rectangle(positions[index], 1, 1, facecolor=colors[0], edgecolor="black")) if doctor_2[index] == 1: ax.add_patch(Rectangle(positions[index], 1, 1, facecolor=colors[1], edgecolor="black")) if doctor_3[index] == 1: ax.add_patch(Rectangle(positions[index], 1, 1, facecolor=colors[2], edgecolor="black")) # Legend ax.arrow(0, 0, 28.5, 0, length_includes_head=False) ax.plot([0, 28.5], [0, 0], 'k-', linewidth=1) # X-Achse ax.arrow(0, -3.5, 21.7, 0, length_includes_head=True, head_width=0.5, head_length=0.5) ax.plot([0, 21.7], [-3.5, -3.5], 'k-', linewidth=1) # X-Achse # Plot 1 # Day 1 ax.plot([0.2, 0.2], [-0.5, 1.5], 'k-') ax.plot([3.6, 3.6], [-0.5, 1.5], 'k-') ax.text(1.9, -0.8, "Day 1", weight="bold", ha="center") # Day 2 ax.plot([7, 7], [-0.5, 1.5], 'k-') ax.text(5.3, -0.8, "Day 2", weight="bold", ha="center") # Day 3 ax.plot([10.4, 10.4], [-0.5, 1.5], 'k-') ax.text(8.7, -0.8, "Day 3", weight="bold", ha="center") # Day 4 ax.plot([13.8, 13.8], [-0.5, 1.5], 'k-') ax.text(12.1, -0.8, "Day 4", weight="bold", ha="center") # Day 5 ax.plot([17.2, 17.2], [-0.5, 1.5], 'k-') ax.text(15.5, -0.8, "Day 5", weight="bold", ha="center") # Day 6 ax.plot([20.6, 20.6], [-0.5, 1.5], 'k-') ax.text(18.9, -0.8, "Day 6", weight="bold", ha="center") # Day 7 ax.plot([24, 24], [-0.5, 1.5], 'k-') ax.text(22.3, -0.8, "Day 7", weight="bold", ha="center") # Day 8 ax.plot([27.4, 27.4], [-0.5, 1.5], 'k-') ax.text(25.7, -0.8, "Day 8", weight="bold", ha="center") # Day 9 ax.plot([0.2, 0.2], [-4, -2], 'k-') ax.plot([3.6, 3.6], [-4, -2], 'k-') ax.text(1.9, -4.3, "Day 9", weight="bold", ha="center") # Day 10 ax.plot([7, 7], [-4, -2], 'k-') ax.text(5.3, -4.3, "Day 10", weight="bold", ha="center") # Day 11 ax.plot([10.4, 10.4], [-4, -2], 'k-') ax.text(8.7, -4.3, "Day 11", weight="bold", ha="center") # Day 12 ax.plot([13.8, 13.8], [-4, -2], 'k-') ax.text(12.1, -4.3, "Day 12", weight="bold", ha="center") # Day 13 ax.plot([17.2, 17.2], [-4, -2], 'k-') ax.text(15.5, -4.3, "Day 13", weight="bold", ha="center") # Day 14 ax.plot([20.6, 20.6], [-4, -2], 'k-') ax.text(18.9, -4.3, "Day 14", weight="bold", ha="center") ax.arrow(0, 0, 28.5, 0, length_includes_head=False) ax.plot([0, 28.5], [0, 0], 'k-', linewidth=1) # X-axis line ax.arrow(0, -3.5, 21.7, 0, length_includes_head=True, head_width=0.5, head_length=0.5) ax.plot([0, 21.7], [-3.5, -3.5], 'k-', linewidth=1) # X-axis line # Legende legend_elements = [ Patch(facecolor="teal", edgecolor="black", hatch="//", label="Worker 1"), Patch(facecolor="orange", edgecolor="black", hatch="", label="Worker 2"), Patch(facecolor="violet", edgecolor="black", hatch="...", label="Worker 3"), Patch(facecolor="grey", edgecolor="black", hatch="\\\\", label="Overstaffing"), Patch(facecolor="red", edgecolor="black", hatch="///", label="Understaffing"), Patch(facecolor="black", edgecolor="black", hatch="+++", label="Performance decrease"), ] # Text "Shift Changes" ax.text(25, -2.2, "Shift Changes", weight="bold", ha="center", va="center", fontsize=12) ax.text(24, -3.3, "3", color="teal", weight="bold", ha="center", va="center", fontsize=12) ax.text(25, -3.3, "2", color="orange", weight="bold", ha="center", va="center", fontsize=12) ax.text(26, -3.3, "2", color="violet", weight="bold", ha="center", va="center", fontsize=12) box_positions = [(24, -3.2), (25, -3.2), (26, -3.2)] colors = ['teal', 'orange', 'violet'] for i, change in enumerate(changes): ax.add_patch(Rectangle((box_positions[i][0] - 0.5, box_positions[i][1] - 0.5), 1, 1, facecolor=colors[i])) ax.text(box_positions[i][0], box_positions[i][1], str(change), color="black", weight="bold", ha="center", va="center", fontsize=12) rect = Rectangle((25.5, -8.5), 3, 3, fill=False, linestyle='dashed', linewidth=1.5) ax.add_patch(rect) line_coords = [(25.5, -8.5), (28.5, -8.5), (28.5, -5.5), (25.5, -5.5), (25.5, -8.5)] line = mlines.Line2D(*zip(*line_coords), color='black', linestyle='dashed', linewidth=1.5) ax.add_line(line) ax.legend(handles=legend_elements, loc="upper center", bbox_to_anchor=(0.5, 1.4), ncol=3, fancybox=True) plt.axis('scaled') plt.ylim(-5, 2) plt.show()
submitted by
willlael to
learnpython [link] [comments]
2023.06.05 13:14 willlael Help with mathplotlib
I am currently working on automating the creation of a shift schedule for a project. I want to hand over my code a list of 0 or 1, and whenever the list contains a 1 at a specific point a squres (indicator for shift) appears. So far so good. It already works like a charm but one thing doesnt work as i want it to work. Whenever i have two doctors working the same shift, i.e. both or all three have a 1 at the same place in the list, only one square is displayed (always the latter one). How do i need the code in order to do this:
Whenever there is more than one shift, i.e. two or three, i want the code to display the additional square on top of each other.
Lets say, the lists look like this:
doctor1 = [0,1,0,...]
doctor2 = [0,1,1,...]
doctor2 = [1,1,0,...]
This implies that all three work shift two on day 1. Now i want that the first squares has the coordinates (see code below) (1.4, 0), the one for doctor 2 (1.4, 1) and for doctor three (1.4, 3).
Another example:
doctor1 = [0,0,0,...]
doctor2 = [0,1,1,...]
doctor2 = [1,1,0,...]
Now doctor 2 should have the coordinates (1.4, 0) and doctor 3 (1.4, 1).
For the last example:
doctor1 = [0,1,0,...]
doctor2 = [0,1,1,...]
doctor2 = [1,0,0,...]
Doctor 1 should have the coordinates (1.4, 0) and doctor 3 (1.4, 1).
How would i achieve that?
This is my code:
import matplotlib.pyplot as plt
from matplotlib.patches import Rectangle, Patch
import numpy as np
import matplotlib.lines as mlines
fig = plt.figure(figsize=(12, 8))
# Plot
ax = fig.add_subplot(111)
ax.axis("off")
# Lists
changes = [4, 2, 3]
doctor_1 = [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0,
0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0]
doctor_2 = [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0,
0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0]
doctor_3 = [0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0,
0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0]
# Coordinats
positions = [(0.3, 0), (1.4, 0), (2.5, 0),
(3.7, 0), (4.8, 0), (5.9, 0),
(7.1, 0), (8.2, 0), (9.3, 0),
(10.5, 0), (11.6, 0), (12.7, 0),
(13.9, 0), (15, 0), (16.1, 0),
(17.3, 0), (18.4, 0), (19.5, 0),
(20.7, 0), (21.8, 0), (22.9, 0),
(24.1, 0), (25.2, 0), (26.3, 0),
(0.3, -3.5), (1.4, -3.5),(2.5, -3.5),
(3.7, -3.5), (4.8, -3.5), (5.9, -3.5),
(7.1, -3.5), (8.2, -3.5), (9.3, -3.5),
(10.5, -3.5), (11.6, -3.5), (12.7, -3.5),
(13.9, -3.5), (15, -3.5), (16.1, -3.5),
(17.4, -3.5), (18.4, -3.5), (19.5, -3.5)]
# Colors
colors = ['teal', 'orange', 'violet']
fig = plt.figure(figsize=(12, 8))
ax = fig.add_subplot(111)
ax.axis("off")
# Plot
for day in range(14):
for shift in range(3):
index = day * 3 + shift
if doctor_1[index] == 1:
ax.add_patch(Rectangle(positions[index], 1, 1, facecolor=colors[0], edgecolor="black"))
if doctor_2[index] == 1:
ax.add_patch(Rectangle(positions[index], 1, 1, facecolor=colors[1], edgecolor="black"))
if doctor_3[index] == 1:
ax.add_patch(Rectangle(positions[index], 1, 1, facecolor=colors[2], edgecolor="black"))
# Legend
ax.arrow(0, 0, 28.5, 0, length_includes_head=False)
ax.plot([0, 28.5], [0, 0], 'k-', linewidth=1) # X-Achse
ax.arrow(0, -3.5, 21.7, 0, length_includes_head=True, head_width=0.5, head_length=0.5)
ax.plot([0, 21.7], [-3.5, -3.5], 'k-', linewidth=1) # X-Achse
# Plot 1
# Day 1
ax.plot([0.2, 0.2], [-0.5, 1.5], 'k-')
ax.plot([3.6, 3.6], [-0.5, 1.5], 'k-')
ax.text(1.9, -0.8, "Day 1", weight="bold", ha="center")
# Day 2
ax.plot([7, 7], [-0.5, 1.5], 'k-')
ax.text(5.3, -0.8, "Day 2", weight="bold", ha="center")
# Day 3
ax.plot([10.4, 10.4], [-0.5, 1.5], 'k-')
ax.text(8.7, -0.8, "Day 3", weight="bold", ha="center")
# Day 4
ax.plot([13.8, 13.8], [-0.5, 1.5], 'k-')
ax.text(12.1, -0.8, "Day 4", weight="bold", ha="center")
# Day 5
ax.plot([17.2, 17.2], [-0.5, 1.5], 'k-')
ax.text(15.5, -0.8, "Day 5", weight="bold", ha="center")
# Day 6
ax.plot([20.6, 20.6], [-0.5, 1.5], 'k-')
ax.text(18.9, -0.8, "Day 6", weight="bold", ha="center")
# Day 7
ax.plot([24, 24], [-0.5, 1.5], 'k-')
ax.text(22.3, -0.8, "Day 7", weight="bold", ha="center")
# Day 8
ax.plot([27.4, 27.4], [-0.5, 1.5], 'k-')
ax.text(25.7, -0.8, "Day 8", weight="bold", ha="center")
# Day 9
ax.plot([0.2, 0.2], [-4, -2], 'k-')
ax.plot([3.6, 3.6], [-4, -2], 'k-')
ax.text(1.9, -4.3, "Day 9", weight="bold", ha="center")
# Day 10
ax.plot([7, 7], [-4, -2], 'k-')
ax.text(5.3, -4.3, "Day 10", weight="bold", ha="center")
# Day 11
ax.plot([10.4, 10.4], [-4, -2], 'k-')
ax.text(8.7, -4.3, "Day 11", weight="bold", ha="center")
# Day 12
ax.plot([13.8, 13.8], [-4, -2], 'k-')
ax.text(12.1, -4.3, "Day 12", weight="bold", ha="center")
# Day 13
ax.plot([17.2, 17.2], [-4, -2], 'k-')
ax.text(15.5, -4.3, "Day 13", weight="bold", ha="center")
# Day 14
ax.plot([20.6, 20.6], [-4, -2], 'k-')
ax.text(18.9, -4.3, "Day 14", weight="bold", ha="center")
ax.arrow(0, 0, 28.5, 0, length_includes_head=False)
ax.plot([0, 28.5], [0, 0], 'k-', linewidth=1) # X-axis line
ax.arrow(0, -3.5, 21.7, 0, length_includes_head=True, head_width=0.5, head_length=0.5)
ax.plot([0, 21.7], [-3.5, -3.5], 'k-', linewidth=1) # X-axis line
# Legende
legend_elements = [
Patch(facecolor="teal", edgecolor="black", hatch="//", label="Worker 1"),
Patch(facecolor="orange", edgecolor="black", hatch="", label="Worker 2"),
Patch(facecolor="violet", edgecolor="black", hatch="...", label="Worker 3"),
Patch(facecolor="grey", edgecolor="black", hatch="\\\\", label="Overstaffing"),
Patch(facecolor="red", edgecolor="black", hatch="///", label="Understaffing"),
Patch(facecolor="black", edgecolor="black", hatch="+++", label="Performance decrease"),
]
# Text "Shift Changes"
ax.text(25, -2.2, "Shift Changes", weight="bold", ha="center", va="center", fontsize=12)
ax.text(24, -3.3, "3", color="teal", weight="bold", ha="center", va="center", fontsize=12)
ax.text(25, -3.3, "2", color="orange", weight="bold", ha="center", va="center", fontsize=12)
ax.text(26, -3.3, "2", color="violet", weight="bold", ha="center", va="center", fontsize=12)
box_positions = [(24, -3.2), (25, -3.2), (26, -3.2)]
colors = ['teal', 'orange', 'violet']
for i, change in enumerate(changes):
ax.add_patch(Rectangle((box_positions[i][0] - 0.5, box_positions[i][1] - 0.5), 1, 1, facecolor=colors[i]))
ax.text(box_positions[i][0], box_positions[i][1], str(change), color="black", weight="bold", ha="center",
va="center", fontsize=12)
rect = Rectangle((25.5, -8.5), 3, 3, fill=False, linestyle='dashed', linewidth=1.5)
ax.add_patch(rect)
line_coords = [(25.5, -8.5), (28.5, -8.5), (28.5, -5.5), (25.5, -5.5), (25.5, -8.5)]
line = mlines.Line2D(*zip(*line_coords), color='black', linestyle='dashed', linewidth=1.5)
ax.add_line(line)
ax.legend(handles=legend_elements, loc="upper center", bbox_to_anchor=(0.5, 1.4), ncol=3, fancybox=True)
plt.axis('scaled')
plt.ylim(-5, 2)
plt.show()
I searched the net and other forums.
submitted by
willlael to
AskPython [link] [comments]
2023.06.05 13:13 Pink_Caracal Perché ho iniziato ad odiare essere fan di Pokémon
Sono una fan dei Pokémon fin dall'infanzia. Ora che sono quasi adulta, il mio amore continua a svanire. I giochi Pokémon stavano cercando di migliorare generazione dopo generazione, Nero e Bianco e Nero 2 e Bianco 2 erano e sono ancora il picco, ma da X e Y, Pokémon non è più stato lo stesso.
X e Y sono giochi perdonabili, ma hanno tutti i problemi che hanno i giochi su Switch:
- una cattiva gestione del Condividi Exp. che rende il gioco troppo facile da rompere;
- caratteri bidimensionali e poco sviluppati;
- un'estrema superficialità nella lore.
Mi sono piaciuti Sole e Luna, Ultra Sole e Ultra Luna sono alcuni dei migliori giochi dell'era 3D. Let'sGo! Pikachu e Let'sGo! Eevee è stato il primo gioco su Nintendo Switch. Erano graficamente buoni, ma mancavano di ciò che cerco in un JRPG a tema Pokémon.
Qui arrivano le parti più amare. Pokémon Spada e Pokémon Scudo sono alcuni dei peggiori giochi della serie. Grafica pessima, gameplay pessimo, animazioni risibili e una storia talmente approssimativa e abbozzata da poter essere considerata assente. Pokémon Diamante Lucente e Perla Splendente sono stati i remake più pigri di sempre: stesso sistema e bug dell'originale. Erano senz'anima
Leggende Pokémon: Arceus è stato un po' mediocre, ma è stato IL passo nella giusta direzione che i fan menzionano sempre dai tempi di Spada and Scudo. Aveva solide meccaniche, innovazioni e non interferisce con la tradizione di Sinnoh. La trama e il lato tecnico sono il suo problema più grande. Non ha ancora venduto tanto quanto Spada e Scudo quando avrebbe avuto bisogno di più supporto.
Pokémon Scarlatto e Violetto sono altrettanto brutti, se non peggiori di Sword and Shield. Mi correggo: Spada e Scudo erano tecnicamente migliori proprio perché non c'erano lag e avevano edifici accessibili. Il lato grafico sembra quasi peggiore di Final Fantasy X per PS2 uscito nel 2001, ci sono troppi glitch che rompono il gioco, gli esami in palestra sono solo orribili minigiochi abbozzati e la trama è appena presente.
Se critico i giochi Pokémon su
pokemon, mi bannano, la gente dice solo cose come "sono divertenti". Un gioco divertente non è necessariamente un buon gioco. Posso divertirmi con
Gollum, ma rimane brutto. Se pensano di potermi semplicemente bannare, ricordassero questa lezione da
Pokémon: Mewtsu no Yakushu in giapponese: è nella natura degli esseri viventi confrontarsi e combattere l'un l'altro. Non puoi facilmente evitarlo.
Mi sono allontanata molto da questo brand. È diventato senz'anima e troppo avido. Voglio dire, guarda cos'è The Legend of Zelda: Tears of the Kingdom. Per fortuna sta vendendo tante, se non più copie, di Pokémon Scarlatto e Violetto, con la differenza che merita questo record.
Le persone hanno realizzato altri giochi come
Temtem,
Coromon e
Pokémon Xenoverse per dare ai fan dei Pokémon delusi un senso di conforto e soddisfazione. Sono disposto a imparare le basi della programmazione per creare un gioco monster catching in pixel art con una storia e un gameplay che possa risultare molto meglio di Pokémon.
Se i nuovi giochi Pokémon continuano a vendere milioni, non avremo mai prodotti migliori. Vi suggerisco che se amate davvero i Pokémon,
non comprate i giochi. È per il bene di questa serie. Ci sono molti fangame e rom hack che in termini di gameplay, storia e design dei Pokémon possono offrire esperienze cento volte migliori. Prova quelli o altri giochi monster catching come i già citati Temtem, Coromon o persino
Shin Megami Tensei e
Persona. Anche se non è un gioco monster catching, ho iniziato a giocare ai
Final Fantasy vecchi a partire da VII e mi sono divertita molto di più.
Per ora, il mio viaggio con i Pokémon è già finito. C'è qualcuno che si sente come me?
submitted by
Pink_Caracal to
italygames [link] [comments]
2023.06.05 13:08 whatevs_s An intense semi-permament purple hair dye/ pigment recommendations?
I used pravana violet for years but they changed the formula and its way more blue now. I tried Joico K-pak color intensity purple and while nice as a hair mask it didnt really deliver what I was looking for.
How does manic panic or arctic fox compare to pravana? Will appreciate all answers!!
submitted by
whatevs_s to
HairDye [link] [comments]
2023.06.05 13:02 Ok_Paleontologist710 Are these worth it ?
Looking to buy pokemoncards through amazon but not sure if i am getting scammed or if its safe to do so
submitted by
Ok_Paleontologist710 to
pokemoncards [link] [comments]
2023.06.05 13:01 Kooky-Key-2470 9701 MCQ
| 18) The text that isn't visible is "the mixture is filtered and Q is washed and dried. The filtrate is collected and treated with aqueous nitric acid to produce white ppt, R, which is filtered off, washed and dried. Q and R are warmed separately with conc. Sulfuric acid. What observations are made? submitted by Kooky-Key-2470 to alevel [link] [comments] |
2023.06.05 12:56 Pure_Leather_3404 Pokémon go banned my wayfarer account and threatened to ban my Pokémon account for submitting pokestops that didn’t get accepted?
2023.06.05 12:56 Verroquis It took a lot of work but I got it to give me a list of all fully evolved Pokemon that have a prime number in the national dex up to gen 3. It got confused a lot and it required a lot of clarification but it got there in the end.
003 Venusaur 013 Butterfree 017 Pidgeot 019 Raticate 023 Fearow 029 Arbok 031 Nidoqueen 037 Clefable 041 Wigglytuff 047 Parasect 053 Persian 059 Arcanine 061 Poliwrath 067 Machamp 071 Victreebel 073 Tentacruel 079 Slowbro 083 Farfetch'd 089 Muk 097 Hypno 101 Electrode 103 Exeggutor 107 Hitmonchan 127 Pinsir 131 Lapras 139 Omastar 149 Dragonite 157 Typhlosion 181 Ampharos 197 Umbreon 199 Slowking 211 Qwilfish 229 Houndoom 241 Miltank 257 Blaziken 269 Dustox 277 Swellow 311 Plusle 313 Volbeat 337 Lunatone 359 Absol 367 Huntail 373 Salamence 379 Registeel 383 Groudon
submitted by
Verroquis to
ChatGPT [link] [comments]
2023.06.05 12:55 masterrobo Cool pulls from 79 crown zenith booster packs
| Not sure if I'm lucky on the V card side: only 13 V card pulls (non GG70 gallery). Or maybe that's supposed to be normal? On the GG70 side I think I was lucky though. submitted by masterrobo to PokemonTCG [link] [comments] |
2023.06.05 12:54 Shadow-Knight3 A pokemon game will always crash on a specific location
So I am playing Pokemon Rejuvenation,and after the cutscene of Narcissa and Ren talking after she and Aelita got sucker punished by a haunter the game turns black and then crashes after Ren exits Narcissa room,and it always crashes after that cutscene ends.
submitted by
Shadow-Knight3 to
JoiPlay [link] [comments]
2023.06.05 12:51 Pink_Caracal This is the way I was being shamed on Reddit. Why I have to like competitive?
2023.06.05 12:43 Sttarrk [Store] Dead Reckoning/Diretide/TI8/TI9/TI10/Nemestice/Aghanim's Immortals & Collector's Cache
Diretide/TI8/TI9/TI10/Nemestice/Aghanim's Immortals & Collector's Cache Sets FOR SALE ...........................................................................................
- We need to be friends for at least 30 days to be able to send the item/set as a gift
- To reserve an item/set you need to pay 25% of the price in advance
- Taking Items(Dota2/CSGO/TF2)/Skrill/Paypal/Crypto
- You can add me if you have any questions
Link to my spreadsheet, with all my prices, stock and reservations already made TI8 COLLECTOR’S CACHE II SETS SET(HERO) | ITEM VALUE | STOCK | NOTE |
Shimmer of the Anointed (Nyx Assassin) | 4$ | 12 | ----- |
The Rat King (Chen) | 5$ | 10 | ----- |
Pattern of the Silken Queen (Broodmother) | 5$ | 12 | ----- |
Shackles of the Enduring Conscript (Axe) | 6$ | 9 | ----- |
Fires of the Volcanic Guard (Ember Spirit) | 8$ | 11 | ----- |
Loaded Prospects (Brewmaster) | 10$ | 12 | ----- |
Ire of the Molten Rebirth (Phoenix) | 10$ | 8 | ----- |
Pitmouse Fraternity (Meepo) | 10$ | 6 | ----- |
Raiments of the Obsidian Force (Underlord - Rare) | 20$ | 9 | ----- |
TI8 COLLECTOR’S CACHE I SETS SET(HERO) | ITEM VALUE | STOCK | NOTE |
Grasp of the Riven Exile (Weaver) | 4$ | 9 | ----- |
Insights of the Sapphire Shroud (Dark Seer) | 4$ | 9 | ----- |
Pillar of the Fractured Citadel (Spirit Breaker) | 5$ | 7 | ----- |
Primer of the Sapper's Guile (Techies) | 6$ | 3 | ----- |
Trail of the Sanguine Spectrum (Bloodseeker) | 8$ | 4 | ----- |
Molokau Stalker (Venomancer) | 10$ | 10 | ----- |
Raptures of the Abyssal Kin (Queen of Pain) | 10$ | 4 | ----- |
Morbific Provision (Witch Doctor) | 10$ | 5 | ----- |
Fate Meridian (Invoker) | 15$ | 2 | ----- |
The Murid Divine (Necrophos) | 15$ | 7 | ----- |
TI9 COLLECTOR'S CACHE II SET(HERO) | ITEM VALUE | STOCK | NOTE |
Automaton Antiquity (Broodmother) | 5$ | 3 | ----- |
Prized Acquisitions (Batrider) | 5$ | 6 | ----- |
Directive of the Sunbound (Clockwerk) | 6$ | 4 | ----- |
Tribal Pathways (Warlock) | 6$ | 4 | ----- |
Verdant Predator (Venomancer) | 7$ | 2 | ----- |
Sight of the Kha-Ren Faithful (Drow Ranger) | 12$ | 4 | ----- |
TI9 COLLECTOR'S CACHE I SET(HERO) | ITEM VALUE | STOCK | NOTE |
Riddle of the Hierophant (Oracle) | 5$ | 1 | ----- |
BP 2020 COLLECTOR'S CACHE II SET(HERO) | ITEM VALUE | STOCK | NOTE |
Secrets of the Celestial (Skywrath Mage) | 5$ | 19 | ----- |
Clearcut Cavalier (Timbersaw) | 5$ | 17 | ----- |
Carousal of the Mystic Masquerade (Rubick) | 5$ | 20 | ----- |
The King Of Thieves (Keeper of the Light) | 5$ | 16 | ----- |
Blaze of Oblivion (Phoenix) | 5$ | 25 | ----- |
Blacksail Cannoneer (Sniper) | 5$ | 18 | ----- |
Beast of the Crimson Ring (Bristleback) | 7$ | 14 | ----- |
Evolution of the Infinite (Enigma) | 7$ | 19 | ----- |
Wrath of the Fallen Ones (Doom) | 7$ | 15 | ----- |
Crown of Calaphas (Shadow Demon) | 7$ | 17 | ----- |
Talons of the Endless Storm (Chaos Knight) | 9$ | 18 | ----- |
Ire of the Ancient Gaoler (Arc Warden) | 20$ | 8 | ----- |
Horror from the Deep (Tidehunter) | 20$ | 8 | ----- |
Master of the Searing Path (Ember Spirit) | 20$ | 8 | ----- |
Steward of the Forbidden Chamber (Templar Assassin - Rare) | 15$ | 26 | ----- |
BP 2020 COLLECTOR'S CACHE I SET(HERO) | ITEM VALUE | STOCK | NOTE |
Songs of Starfall Glen (Enchantress) | 5$ | 7 | ----- |
Beholden of the Banished Ones (Warlock) | 8$ | 5 | ----- |
Herald of the Ember Eye (Grimstroke) | 8$ | 6 | ----- |
Apocalypse Unbound (Ancient Apparition) | 8$ | 6 | ----- |
Fury of the Righteous Storm (Disruptor) | 10$ | 2 | ----- |
Heartless Hunt (Bounty Hunter) | 10$ | 1 | ----- |
Flashpoint Proselyte (Huskar) | 10$ | 3 | ----- |
Fissured Flight (Jakiro) | 10$ | 3 | ----- |
Mindless Slaughter (Pudge) | 15$ | 2 | ----- |
Ancient Inheritance (Tiny - Rare) | 20$ | 3 | ----- |
Forsworn Legacy (Ares - Very Rare) | 50$ | 1 | ----- |
Nemestice Collector's Cache 2021 SET(HERO) | ITEM VALUE | STOCK | NOTE |
Twilight Hex (Dark Willow) | 5$ | 3 | ----- |
Caerulean Star (Enchantress) | 5$ | 5 | ----- |
Silence of the Starweaver (Oracle) | 5$ | 3 | ----- |
Astral Terminus (Enigma) | 10$ | 2 | ----- |
Litany of the Damned (Doom) | 10$ | 1 | ----- |
Desert Bloom (Nature's Prophet) | 10$ | 1 | ----- |
Aghanim's 2021 Collector's Cache SET(HERO) | ITEM VALUE | STOCK | NOTE |
Secrets of the Frost Singularity (Ancient Apparition) | 3$ | 7 | ----- |
The Chained Scribe (Grimstroke) | 4$ | 5 | ----- |
Forgotten Fate (Mars) | 8$ | 4 | ----- |
March of the Crackerjack Mage (Rubick) | 8$ | 3 | ----- |
Blightfall (Abaddon) | 10$ | 1 | ----- |
Cosmic Concoctioneers (Alchemist) | 10$ | 1 | ----- |
Widow of the Undermount Gloom (Broodmother) | 10$ | 1 | ----- |
Apex Automated (Clockwerk) | 10$ | 1 | ----- |
Days of the Demon (Axe) | 10$ | 1 | ----- |
Perils of the Red Banks (Chen) | 10$ | 2 | ----- |
Pyrexae Polymorph Perfected (Ogre Magi - Rare) | 15$ | 4 | ----- |
Diretide 2022 Collector's Cache II SET(HERO) | ITEM VALUE | STOCK | NOTE |
Grand Suppressor (Silencer) | 2.5$ | 15 | ----- |
Darkbrew´s Transgression (Alchemist) | 2.5$ | 16 | ----- |
Transcendent Path (Oracle) | 2.5$ | 15 | ----- |
The Wilding Tiger (Brewmaster) | 2.5$ | 15 | ----- |
Dawn of Darkness Foretold (Doom) | 2.5$ | 15 | ----- |
Cursed Cryptbreaker (Pudge) | 2.5$ | 14 | ----- |
Feasts of Forever (Night Stalker) | 2.5$ | 16 | ----- |
Withering Pain (Clinkz) | 2.5$ | 16 | ----- |
Freebot Fortunes (Ogre Magi) | 2.5$ | 14 | ----- |
Acrimonioes of Obsession (Vengeful Spirit) | 2.5$ | 14 | ----- |
Sacred Chamber Guardian (Huskar) | 2.5$ | 16 | ----- |
War Rig Eradicators (Techies) | 2.5$ | 14 | ----- |
Darkfeather Factioneer (Phantom Assassin) | 5$ | 11 | ----- |
Bird of Prey (Legion Commander) | 10$ | 4 | ----- |
Grudges of the Gallows Tree (Treant Protector - Rare) | 10$ | 16 | ----- |
Brands of the Reaper (Anti-Mage - Rare) | 10$ | 13 | ----- |
Sublime Equilibrium (Void Spirit - Very Rare) | 25$ | 3 | ----- |
Diretide 2022 Collector's Cache I SET(HERO) | ITEM VALUE | STOCK | NOTE |
Hounds of Obsession (Chen) | 2.5$ | 18 | ----- |
Seadog's Stash (Clockwerk) | 2.5$ | 18 | ----- |
Chines of the Inquisitor (Faceless Void) | 2.5$ | 17 | ----- |
Trophies of the Hallowed Hunt (Ursa) | 2.5$ | 16 | ----- |
Crimson Dawn (Phoenix) | 2.5$ | 18 | ----- |
Fogotten Station (Terrorblade) | 2.5$ | 19 | ----- |
Dirge Amplifier (Undying) | 2.5$ | 17 | ----- |
Champion of the Fire Lotus (Monkey King) | 2.5$ | 16 | ----- |
Deathstitch Shaman (Witch Doctor) | 2.5$ | 18 | ----- |
Spoils of the Shadowveil (Spectre) | 5$ | 10 | ----- |
Scarlet Subversion (Riki) | 5$ | 8 | ----- |
Whippersnapper (Snapfire) | 8$ | 8 | ----- |
Shadowleaf Insurgent (Hoodwink) | 10$ | 4 | ----- |
Starlorn Adjudicator (Dawnbreaker) | 10$ | 5 | ----- |
Blue Horizons (Marci - Rare) | 10$ | 11 | ----- |
Angel of Vex (Invoker - Rare) | 15$ | 4 | ----- |
Dark Behemoth (Primal Beast - Very Rare) | 25$ | 4 | ----- |
IMMORTAL TREASURE II 2022 SET(HERO) | ITEM VALUE | STOCK | NOTE |
Limbs of Lycosidae (Broodmother) | 1$ | 2 | ----- |
Draca Mane (Huskar) | 1$ | 1 | ----- |
Sullen Sanctum (Necrophos) | 1$ | 2 | ----- |
Insight of Forlorn Precipice (Dark Seer) | 1$ | 2 | ----- |
Draconic Divide (Dragon Knight) | 1$ | 2 | ----- |
Tremors of the Tandem Storm (Disruptor) | 4$ | 1 | ----- |
Golden Draca Mane (Huskar) | 6$ | 1 | ----- |
Golden Sullen Sanctum (Necrophos) | 6$ | 2 | ----- |
IMMORTAL TREASURE I 2022 SET(HERO) | ITEM VALUE | STOCK | NOTE |
infernal Cavalcade (Centaur Warrunner) | 1$ | 6 | ----- |
Flutterstep (Enchantress) | 1$ | 6 | ----- |
Seclusions of the Void (Templar Assassin) | 1$ | 7 | ----- |
Aktok's Glory (Venomancer) | 1$ | 6 | ----- |
Everglyph Goggles (Meepo) | 1$ | 7 | ----- |
Blastmitt Berserker Bundle (Bristleback) | 4$ | 1 | ----- |
Seclusions of the Void (Templar Assassin) | 6$ | 1 | ----- |
Infernal Cavalcade (Centaur Warrunner) | 6$ | 3 | ----- |
The Strings of Suradan Bundle (Hoodwink) | 30$ | 1 | ----- |
AGELESS HEIRLOOMS 2022 SET(HERO) | ITEM VALUE | STOCK | NOTE |
Howls of the Northmarch (Anti-Mage) | 1$ | 4 | ----- |
Faction of the Feather (Templar Assassin) | 1$ | 3 | ----- |
Melange of the Firelord (Chaos Knight) | 1$ | 4 | ----- |
Heinous Exultation (Razor) | 1$ | 5 | ----- |
Tangled Tropics (Monkey King) | 1$ | 4 | ----- |
Fury of the Thunderhawk (Zeus) | 1$ | 4 | ----- |
Oaths of the Beloved (Death Prophet) | 1$ | 4 | ----- |
Twilight Legions (Night Stalker) | 2.5$ | 3 | ----- |
Jewels of Anamnessa (Medusa) | 5$ | 1 | ----- |
Wings of Imperium (Mars) | 15$ | 1 | ----- |
The Battle Pass Collection 2022 SET(HERO) | ITEM VALUE | STOCK | NOTE |
Hides of Hostility (Huskar) | 1$ | 4 | ----- |
Heat of the Sixth Hell (Doom) | 1$ | 4 | ----- |
Nefarious Fixations (Lion) | 1$ | 3 | ----- |
Distinguished Forgemaster (Clockwerk) | 1$ | 4 | ----- |
Volcanic Sanctuary (Broodmother) | 1$ | 3 | ----- |
Obsidian Atrocity (Lifestealer) | 1$ | 4 | ----- |
Charms of the Firefiend (Batrider) | 5$ | 1 | ----- |
Molten Bore (Mars) | 10$ | 1 | ----- |
DEAD RECKONING CHEST SET(HERO) | ITEM VALUE | STOCK | NOTE |
Dead Heat (Lina) | 6$ | 1 | ----- |
Dying Light (Dawnbreaker) | 6$ | 1 | ----- |
Death Adder (Medusa) | 6$ | 1 | ----- |
Soul Serpent (Viper) | 6$ | 1 | ----- |
SteamRep submitted by
Sttarrk to
Dota2Trade [link] [comments]
2023.06.05 12:36 yugiQ I absolutely love this illustration from Pokémon Sleep so I wanted to see how it would look like as a full art card.
2023.06.05 12:35 ToastSage Question about owning two Switches and Save Data
Have just gotten a Switch OLED but want to keep my standard Switch. On a secondary switch you can only play digital games on the account you purchased them on.
For digital games which do not automatically backup saves to the cloud (and when you do not want them to, i.e. for a New Animal Crossing Island) what happens if you switch which switch is your primary switch.
If I have a game like Pokemon which saves locally to the system but does not back up over the cloud and I played it on the original switch but not on the account which purchased it, what happens. When I transfer ownership that account and therefore save will not be able to be played on that Switch, is it deleted?
I have not explained that the best so happy to clarify or try again in the comments
submitted by
ToastSage to
Switch [link] [comments]
2023.06.05 12:34 Hades358d 27/NA/XBOX
Hi fellow gamers,
I'm a gay latino man living in Canada(EST not that it matters). Looking for nice people to play with and maybe develop a friendship over time. I play mostly on Xbox. But I do have a switch where I mostly play single player games(pokemon). On Xbox a play most of the time to Elder scrolls online(ESO) and warframe. I also play Outriders. I'm trying out some games recently such as Anthem. I just started Destiny 2 not long ago. And I play other single player games. I have Game Pass so I'm happy to try other games.
I like story driven games. Games where there's exploration involved and Action/Adventure.
I'm very shy at first but that'll go away quickly.
I speak English. Spanish and French In no particular order but I do have a Small accent when I speak english tho.(it never caused any problem 😆)
Feel free to DM here or on Xbox. My gamertag on Xbox is: Hades358
submitted by
Hades358d to
GamerPals [link] [comments]
2023.06.05 12:25 GroundedRockruff Where bee the Combee
I am trying to complete my Paldea Pokédex (Scarlet) and cannot find a combee to evolve into vespiqueen. I found one early in the game but it was male, and cannot find any more. Does anyone know where they spawn
Ps. I checked the Pokédex but it wasn’t in the spot it shows
submitted by
GroundedRockruff to
PokemonScarletViolet [link] [comments]
2023.06.05 12:25 Hades358d Gaming friends
Hi fellow gaymers,
I'm a gay latino man living in Canada(EST not that it matters). Looking for nice people to play with and maybe develop a friendship over time. I play mostly on Xbox. But I do have a switch where I mostly play single player games(pokemon). On Xbox a play most of the time to Elder scrolls online(ESO) and warframe. I also play Outriders. I'm trying out some games recently such as Anthem. I just started Destiny 2 not long ago. And I play other single player games. I have Game Pass so I'm happy to try other games.
I like story driven games. Games where there's exploration involved and Action/Adventure.
I'm very shy at first but that'll go away quickly.
I speak English. Spanish and French In no particular order but I do have a Small accent when I speak english tho.(it never caused any problem 😆)
Feel free to DM here or on Xbox. My gamertag on Xbox is: Hades358
submitted by
Hades358d to
gaymers [link] [comments]
2023.06.05 12:24 ThisIsForYouOnly omg I am developing a crush..
Okay so this guy helped me at the market a couple days ago by talking to the owner of the place to sell a Snorlax plushie (yes the pokemon) cheaper and well it worked,, I was so happy and he was SO SO SOOO fucking sweet like omg tyank you! :')
The whole time me and the friendgroup where at the market, my friend was giving me the "something is going on" look but I shrugged it of.. but I am feeling myself slowly starting to crush on him..
he is so cute like oh my lord
submitted by
ThisIsForYouOnly to
Crushes [link] [comments]
2023.06.05 12:24 KyAgui2 LF Miraidon Touch Trade
| I have Violet version, so of course can’t register my Miraidon to Home. Can anyone touch trade me so I can register Miraidon and send it right back to you? Have pretty much any Pokémon needed for Pokédex completion and am willing to help trade you something needed in return. submitted by KyAgui2 to PokemonHome [link] [comments] |
2023.06.05 12:22 Pink_Caracal Why I've grown to hate being a Pokémon fan
I've been a Pokémon fan since childhood. Now that I am almost adult, my love keeps fading away. Pokémon games were trying to get better generation after generation, Black and White and Black 2 and White 2 were and are still the peak, but since X and Y, Pokémon has never been the same again.
X and Y are forgivable games, but they have all the problems that the games on Switch have:
- a bad handling of the Exp. Share that makes the game too easy to break;
- bidimentional and underdeveloped characters;
- an extreme superficiality in the lore.
I liked Sun and Moon, Ultra Sun and Ultra Moon are some of the best 3D era games. Let's Go! Pikachu and Let's Go! Eevee were the first games on Nintendo Switch. They were graphically good, but lacked what I search in a Pokémon themed JRPG.
Here come the most bitter parts. Pokémon Sword and Pokémon Shield are some of the worst games in the series. Bad graphics, bad gameplay, laughable animations and a story that is so approximate and sketched that can be considered absent. Pokémon Brilliant Diamond and Shining Pearl were the laziest remakes ever: same system and bugs as the original. It was soulless.
Pokémon Legends: Arceus was a bit mediocre, but it was THE step in the right direction fans always mention since Sword and Shield. It had solid mechanics, innovations and doesn't mess with Sinnoh's lore. Plot and technial side are its biggest problem. It still didn't sell as much as Sword and Shield when it would have needed more support.
Pokémon Scarlet and Violet are just as bad, if not worse than Sword and Shield. I correct myself: Sword and Shield were technically better just because there were no lags and had accessible buildings. The graphical side almost looks worse than Final Fantasy X for PS2 that came out in 2001, there are too many game breaking glitches, Gym exams are just awful sketched minigames and the plot is barely present.
If I criticize Pokémon games on
pokemon, they ban me, people say just things such as "they are fun". A fun game isn't necessarly a good game. I can have fun with
Gollum, but it stays bad. If you think you can just ban, remember this lesson from
Pokémon: The First Movie in Japanese: it's in the nature of living beings to confront and fight each other. You can't easily avoid that.
I got far away from this brand. It became soulless and too greedy. I mean, look at what is The Legend of Zelda: Tears of the Kingdom. Luckily, it is selling as many, if not more copies as Pokémon Scarlet and Violet, with the difference that it deserves this record.
People have made other games such as
Temtem,
Coromon and
Pokémon Xenoverse to give disappointed Pokémon fans a sense of comfort and satisfaction. I'm willing to learn the basics of programming to make a pixel art monster catcher game with a story and gameplay that could feel much better than Pokémon.
If the new Pokémon games keep selling millions, we are never going to get better products. I suggest you that if you really love Pokémon,
don't buy the games. It's for this series good. There are many fangames and rom hacks that in terms of gameplay, story and Pokémon designs can give experiences that are a hundred times better. Try those or other monster catching games such as the already mentioned Temtem, Coromon or even
Shin Megami Tensei and
Persona . Even though it isn't a monster catching game, I started playing old school
Final Fantasy starting with VII and I had way more fun with that.
For now, my journey with Pokémon is already over. Is there anyone who feels like me?
submitted by
Pink_Caracal to
TruePokemon [link] [comments]