mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-01 00:09:19 +00:00
feat: Add Journey Together (#701)
* feat: Add static data for Journey Together Signed-off-by: Avior <git@avior.me> * feat: finish naming Signed-off-by: Avior <git@avior.me> * should be done Signed-off-by: Avior <git@avior.me> * Update index.ts --------- Signed-off-by: Avior <git@avior.me>
This commit is contained in:
77
data/Scarlet & Violet/Journey Together/099.ts
Normal file
77
data/Scarlet & Violet/Journey Together/099.ts
Normal file
@ -0,0 +1,77 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pangoro",
|
||||
fr: "Pandarbare",
|
||||
es: "Pangoro",
|
||||
de: "Pandagro",
|
||||
it: "Pangoro",
|
||||
pt: "Pangoro",
|
||||
'es-mx': "Pangoro"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Torment",
|
||||
fr: "Tourmente",
|
||||
es: "Tormento",
|
||||
de: "Folterknecht",
|
||||
it: "Attaccalite",
|
||||
pt: "Atormentar",
|
||||
'es-mx': "Tormento"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Active Pokémon's attacks. During your opponent's next turn, that Pokémon can't use that attack.",
|
||||
fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire. Pendant le prochain tour de votre adversaire, ce Pokémon-là ne peut pas utiliser cette attaque.",
|
||||
es: "Elige uno de los ataques del Pokémon Activo de tu rival. Durante el próximo turno de tu rival, dicho Pokémon no puede usar ese ataque.",
|
||||
de: "Wähle 1 Attacke des Aktiven Pokémon deines Gegners. Während des nächsten Zuges deines Gegners kann jenes Pokémon jene Attacke nicht einsetzen.",
|
||||
it: "Scegli un attacco del Pokémon attivo del tuo avversario. Durante il prossimo turno del tuo avversario, quel Pokémon non potrà utilizzarlo.",
|
||||
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente. Durante o próximo turno do seu oponente, aquele Pokémon não poderá usar aquele ataque.",
|
||||
'es-mx': "Elige 1 de los ataques del Pokémon Activo de tu rival. Durante el próximo turno de tu rival, dicho Pokémon no puede usar ese ataque."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Darkness", "Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Power Tackle",
|
||||
fr: "Tacle Puissant",
|
||||
es: "Placaje Poderoso",
|
||||
de: "Kraft-Tackle",
|
||||
it: "Forzazione",
|
||||
pt: "Investida Poderosa",
|
||||
'es-mx': "Tacleada Poderosa"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't attack.",
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
||||
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
||||
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen.",
|
||||
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
||||
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
||||
'es-mx': "Durante tu próximo turno, este Pokémon no puede atacar."
|
||||
},
|
||||
|
||||
damage: 160
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user