mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: Add Pocket promo cards 74 to 92 (#829)
This commit is contained in:
49
data/Pokémon TCG Pocket/Promos-A/085.ts
Normal file
49
data/Pokémon TCG Pocket/Promos-A/085.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Vanillite",
|
||||
es: "Vanillite"
|
||||
},
|
||||
|
||||
illustrator: "OOYAMA",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "Unable to survive in hot areas, it makes itselft\ncomfortable bt breathing out air cold enough to\ncause snow. It burrows into the snow to sleep.",
|
||||
es: "No puede vivir en lugares muy cálidos. Provoca\nnevadas exhalando un vaho gélido y luego se\nacurruca en la nieve acumulada para dormir."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Sweets Relay",
|
||||
es: "Relevo Dulce"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Water"],
|
||||
|
||||
effect: {
|
||||
en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 20 more damage.",
|
||||
es: "Si 1 de tus Pokémon usó Relevo Dulce durante tu último turno, este ataque hace 20 puntos de daño más."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
boosters: ["vol10"]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user