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

45
data-asia/SV/SV4M/070.ts Normal file
View File

@ -0,0 +1,45 @@
import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "バニリッチ",
th: "วานิริช"
},
illustrator: "Taiga Kayama",
category: "Pokemon",
dexId: [583],
hp: 90,
types: ["Water"],
description: {
ja: "マイナス100度の 冷気で 敵を 凍らせるが 命までは 奪わない 優しい 気質。",
th: "ทำให้ศัตรูเย็นเยือกแข็งด้วยไอเย็น -100 องศา แต่ยังมีจิตใจดีไม่ทำให้ถึงแก่ชีวิต"
},
stage: "Stage1",
attacks: [{
cost: ["Water", "Water"],
name: {
ja: "フロストスマッシュ",
th: "ฟรอสต์สแมช"
},
damage: 60
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card