mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
42 lines
992 B
TypeScript
42 lines
992 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unbroken Bonds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Samson Oak",
|
||
fr: "Raphaël Chen",
|
||
es: "Gabriel Oak",
|
||
it: "Manuel Oak",
|
||
pt: "Gabriel Carvalho",
|
||
de: "Samson Eich"
|
||
},
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Piochez 2 cartes. Si les deux Pokémon Actifs sont du même type, piochez 2 cartes supplémentaires.",
|
||
en: "Draw 2 cards. If both Active Pokémon are the same type, draw 2 more cards.",
|
||
es: "Roba 2 cartas. Si ambos Pokémon Activos son del mismo tipo, roba 2 cartas más.",
|
||
it: "Pesca due carte. Se entrambi i Pokémon attivi sono dello stesso tipo, pesca altre due carte.",
|
||
pt: "Compre 2 cartas. Se ambos os Pokémon Ativos forem do mesmo tipo, compre 2 cartas a mais.",
|
||
de: "Ziehe 2 Karten. Wenn beide Aktiven Pokémon denselben Typ haben, ziehe 2 Karten mehr."
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|