mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-03 00:49: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:
65
data/Scarlet & Violet/Journey Together/141.ts
Normal file
65
data/Scarlet & Violet/Journey Together/141.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Squawkabilly",
|
||||
fr: "Tapatoès",
|
||||
es: "Squawkabilly",
|
||||
de: "Krawalloro",
|
||||
it: "Squawkabilly",
|
||||
pt: "Squawkabilly",
|
||||
'es-mx': "Squawkabilly"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Add On",
|
||||
fr: "Ajout",
|
||||
es: "Sumar",
|
||||
de: "Hinzufügen",
|
||||
it: "Supplemento",
|
||||
pt: "Adicionar",
|
||||
'es-mx': "Acarrear"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw 2 cards.",
|
||||
fr: "Piochez 2 cartes.",
|
||||
es: "Roba 2 cartas.",
|
||||
de: "Ziehe 2 Karten.",
|
||||
it: "Pesca due carte.",
|
||||
pt: "Compre 2 cartas.",
|
||||
'es-mx': "Roba 2 cartas."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Hyper Voice",
|
||||
fr: "Mégaphone",
|
||||
es: "Vozarrón",
|
||||
de: "Schallwelle",
|
||||
it: "Granvoce",
|
||||
pt: "Hipervoz",
|
||||
'es-mx': "Hipervoz"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user