mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Rockruff",
|
|
fr: "Rocabot",
|
|
es: "Rockruff",
|
|
it: "Rockruff",
|
|
de: "Wuffels",
|
|
'pt-br': "Rockruff",
|
|
ko: "암멍이"
|
|
},
|
|
|
|
illustrator: "Oswaldo KATO",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fighting"],
|
|
|
|
description: {
|
|
en: "This Pokémon is very friendly when it's young. Its disposition becomes vicious once it matures, but it never forgets the kindness of its master.",
|
|
fr: "Ce Pokémon est très amical lorsqu'il est jeune.\nIl devient plus féroce avec le temps, mais\nsa loyauté envers son Dresseur reste infaillible.",
|
|
es: "Cuando es pequeño es muy cariñoso. A medida\nque crece se vuelve más agresivo, pero la lealtad\nhacia su Entrenador perdura para siempre.",
|
|
it: "I cuccioli di Rockruff si affezionano subito. Crescendo diventano più\nferoci, ma provano per sempre gratitudine verso chi li ha allenati.",
|
|
de: "Wuffels ist sehr zutraulich, solange es jung ist.\nMit dem Alter wird es zunehmend wilder, doch es\nbleibt seinem Trainer auf ewig verbunden.",
|
|
'pt-br': "Este Pokémon é amigável quando jovem. Adquire um\ntemperamento cruel ao crescer, mas nunca se esquece\nda bondade de seu mestre.",
|
|
ko: "어렸을 때는 매우 잘 따른다.\n자라면서 성질이 사나워지지만\n주인에게 입은 은혜는 잊지 않는다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Tackle",
|
|
fr: "Charge",
|
|
es: "Placaje",
|
|
it: "Azione",
|
|
de: "Tackle",
|
|
'pt-br': "Investida",
|
|
ko: "몸통박치기"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Fighting"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Grass",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
boosters: ["solgaleo"]
|
|
}
|
|
|
|
export default card |