mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
59 lines
733 B
TypeScript
59 lines
733 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dark Explorers'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Chansey",
|
||
fr: "Leveinard",
|
||
es: "Chansey",
|
||
it: "Chansey",
|
||
pt: "Chansey",
|
||
de: "Chaneira"
|
||
},
|
||
|
||
illustrator: "Mizue",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
113,
|
||
],
|
||
|
||
hp: 100,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Continuous Tumble",
|
||
},
|
||
effect: {
|
||
en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card
|