mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
add cards svp promos en & pt and add abbreviations official stellar crown (#662)
This commit is contained in:
parent
a597759d9d
commit
0158daf40d
39
data/Scarlet & Violet/SVP Black Star Promos/085.ts
Normal file
39
data/Scarlet & Violet/SVP Black Star Promos/085.ts
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pikachu with Grey Felt Hat",
|
||||||
|
pt: "Pikachu com Chapéu de feltro Cinza"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pika-Portrait",
|
||||||
|
pt: "Pika-Retrato"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Search your deck for a Pikachu and put it onto your Bench. Then, shuffle your deck.",
|
||||||
|
pt: "Procure por um Pikachu em seu baralho e coloque-o no seu Banco. Em seguida, embaralhe seu baralho."
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
39
data/Scarlet & Violet/SVP Black Star Promos/102.ts
Normal file
39
data/Scarlet & Violet/SVP Black Star Promos/102.ts
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Oddish",
|
||||||
|
pt: "Oddish"
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Razor Leaf",
|
||||||
|
pt: "Folha Navalha"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 20 damage for each Colorless Energy in your opponent's Active Pokémon Retreat Cost.",
|
||||||
|
pt: "Este ataque causará 20 pontos de dano para cada Energia Incolor no custo de Recuo do Pokémon Ativo do seu oponente."
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Scarlet & Violet/SVP Black Star Promos/167.ts
Normal file
55
data/Scarlet & Violet/SVP Black Star Promos/167.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flareon",
|
||||||
|
pt: "Flareon",
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Destructive Flame",
|
||||||
|
pt: "Chama Destruidora",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.",
|
||||||
|
pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
cost: ["Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fighting Blaze",
|
||||||
|
pt: "Luta Labareda",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent's Active Pokémon is a Pokémon EX or Pokémon V, this attack does 90 more damage.",
|
||||||
|
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon EX ou um Pokémon V, este ataque causará 90 pontos de dano a mais."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90+"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
55
data/Scarlet & Violet/SVP Black Star Promos/168.ts
Normal file
55
data/Scarlet & Violet/SVP Black Star Promos/168.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vaporeon",
|
||||||
|
pt: "Vaporeon",
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Spiral Drain",
|
||||||
|
pt: "Dreno Espiral",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 30 damage from this Pokémon.",
|
||||||
|
pt: "Cure 30 pontos de dano deste Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
cost: ["Water", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fighting Whirlpool",
|
||||||
|
pt: "Luta Redemoinho",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent's Active Pokémon is a Pokémon EX or Pokémon V, this attack does 90 more damage.",
|
||||||
|
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon EX ou um Pokémon V, este ataque causará 90 pontos de dano a mais."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90+"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Scarlet & Violet/SVP Black Star Promos/169.ts
Normal file
53
data/Scarlet & Violet/SVP Black Star Promos/169.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Jolteon",
|
||||||
|
pt: "Jolteon",
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Linear Attack",
|
||||||
|
pt: "Ataque Linear",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||||
|
pt: "Este ataque causa 30 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
cost: ["Lightning", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fighting Lightning",
|
||||||
|
pt: "Luta Relâmpago",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent's Active Pokémon is a Pokémon EX or Pokémon V, this attack does 90 more damage.",
|
||||||
|
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon EX ou um Pokémon V, este ataque causará 90 pontos de dano a mais."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90+"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Scarlet & Violet/SVP Black Star Promos/170.ts
Normal file
48
data/Scarlet & Violet/SVP Black Star Promos/170.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Leafeon",
|
||||||
|
pt: "Leafeon",
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Leaflet Blessings",
|
||||||
|
pt: "Bênçãos das Folhinhas",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Attach a Basic Grass Energy card from your hand to 1 of your Benched Pokémon. If you do, heal all damage from that Pokémon.",
|
||||||
|
pt: "Ligue uma carta de Energia Grama Básica da sua mão a 1 dos seus Pokémon no Banco. Se fizer isso, cure todo o dano daquele Pokémon."
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Solar Beam",
|
||||||
|
pt: "Raio Solar",
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
48
data/Scarlet & Violet/SVP Black Star Promos/171.ts
Normal file
48
data/Scarlet & Violet/SVP Black Star Promos/171.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Glaceon",
|
||||||
|
pt: "Glaceon",
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Permeating Chill",
|
||||||
|
pt: "Frio Penetrante",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "At the end of your opponent's next turn, put 9 damage counters on the Defending Pokémon.",
|
||||||
|
pt: "Coloque 9 contadores de dano no Pokémon Defensor no final do próximo turno do seu oponente."
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Icicle Missile",
|
||||||
|
pt: "Míssil Gélido",
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
53
data/Scarlet & Violet/SVP Black Star Promos/172.ts
Normal file
53
data/Scarlet & Violet/SVP Black Star Promos/172.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sylveon",
|
||||||
|
pt: "Sylveon",
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Psychic"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Psychic"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mystical Return",
|
||||||
|
pt: "Retorno Místico",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, choose 1 of your opponent's Benched Pokémon. Shuffle that Pokémon and all attached cards into their deck.",
|
||||||
|
pt: "Jogue uma moeda. Se sair cara, escolha 1 dos Pokémon no bancodo seu oponente. Embaralhe aquele Pokémon e todas as cartas ligadas a ele no baralho dele."
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
cost: ["Psychic", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Disarming Voice",
|
||||||
|
pt: "Voz Desarmante",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent's Active Pokémon is now Confused.",
|
||||||
|
pt: "O Pokémon Ativo do seu oponente agora está Confuso."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
52
data/Scarlet & Violet/SVP Black Star Promos/173.ts
Normal file
52
data/Scarlet & Violet/SVP Black Star Promos/173.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Eevee",
|
||||||
|
pt: "Eevee",
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Colorless"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Boosted Evolution",
|
||||||
|
pt: "Impulso da Evolução",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "As long as this Pokémon is in the Active Spot, it can evolve during your first turn or the turn you play it.",
|
||||||
|
pt: "Enquanto este Pokémon estiver no Campo Ativo, ele poderá evoluir durante o seu primeiro turno ou durante o turno em que for colocado em jogo."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Reckless Charge",
|
||||||
|
pt: "Carga Indomável",
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 10 damage to itself.",
|
||||||
|
pt: "Este Pokémon também causará 10 pontos de dano a si mesmo."
|
||||||
|
},
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
40
data/Scarlet & Violet/SVP Black Star Promos/190.ts
Normal file
40
data/Scarlet & Violet/SVP Black Star Promos/190.ts
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../SVP Black Star Promos"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pikachu",
|
||||||
|
pt: "Pikachu",
|
||||||
|
},
|
||||||
|
|
||||||
|
rarity: "None",
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [
|
||||||
|
{
|
||||||
|
cost: ["Lightning", "Lightning", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Scrappy Spark",
|
||||||
|
pt: "Faísca Obstinada"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.",
|
||||||
|
pt: "Jogue uma moeda até que saia coroa. Este ataque causará 30 pontos de dano a mais para cada cara."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
regulationMark: "H"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
@ -19,7 +19,11 @@ const set: Set = {
|
|||||||
official: 142
|
official: 142
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2024-09-13"
|
releaseDate: "2024-09-13",
|
||||||
|
|
||||||
|
abbreviations: {
|
||||||
|
official: "SCR"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
Loading…
x
Reference in New Issue
Block a user