1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

69
data-asia/SV/SV4a/260.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "フワンテ",
'zh-tw': "飄飄球",
id: "Drifloon"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
dexId: [425],
hp: 70,
types: ["Psychic"],
description: {
ja: "風船と 間違えて フワンテを 持っていた 小さな 子どもが 消えてしまうことが あるという。",
'zh-tw': "據說有些因為誤認成氣球,而把牠拿在手上的小孩, 會就此消失無蹤。",
id: "Dikabarkan ada kejadian menghilangnya anak kecil yang menyangka Drifloon sebagai balonnya dan membawanya pergi."
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "かぜおこし",
'zh-tw': "起風",
id: "Hembusan Angin"
},
damage: 10
}, {
cost: ["Psychic", "Psychic"],
name: {
ja: "バルーンボム",
'zh-tw': "氣球爆破",
id: "Balloon Bomb"
},
damage: "30×",
effect: {
ja: "このポケモンにのっているダメカンの数×30ダメージ。",
'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×30點傷害。",
id: "Serangan ini memberikan kerusakan sejumlah 30 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card