mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
59
data-asia/SV/SV1S/016.ts
Normal file
59
data-asia/SV/SV1S/016.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1S"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "フローゼル",
|
||||
'zh-tw': "浮潛鼬",
|
||||
th: "โฟลเซล",
|
||||
id: "Floatzel"
|
||||
},
|
||||
|
||||
illustrator: "Gemi",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [419],
|
||||
hp: 120,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
ja: "浮き袋を ふくらませると 人を 背中に 乗せることが できる。 浮き袋を しぼませて 潜る。",
|
||||
'zh-tw': "膨脹起浮囊後就能讓人坐在自己背上。 排出浮囊的氣來潛水。",
|
||||
th: "พอพองถุงลมแล้วสามารถให้คนขึ้นบนหลังได้ จะทำให้ถุงลมแฟบลงก่อนดำลงไป",
|
||||
id: "Floatzel dapat mengangkut manusia di atas punggungnya dengan menggembungkan kantong apungnya. Pokémon ini menyusutkan kantong apungnya lalu menyelam."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ハイドロポンプ",
|
||||
'zh-tw': "水炮",
|
||||
th: "ไฮโดรปั๊มพ์",
|
||||
id: "Pompa Air"
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンについているエネルギーの数×20ダメージ追加。",
|
||||
'zh-tw': "增加這隻寶可夢身上附加的【水】能量的數量×20點傷害。",
|
||||
th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[น้ำ]ที่ติดอยู่กับโปเกมอนนี้ x20",
|
||||
id: "Kerusakan yang diberikan bertambah sejumlah 20 untuk tiap Energi {Air} yang dikenakan pada Pokémon ini."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user