@jjlmoya/utils-textiles 1.20.0 → 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/category/i18n/de.ts +76 -76
- package/src/category/i18n/en.ts +76 -76
- package/src/category/i18n/es.ts +76 -76
- package/src/category/i18n/fr.ts +76 -76
- package/src/category/i18n/id.ts +76 -76
- package/src/category/i18n/it.ts +76 -76
- package/src/category/i18n/ja.ts +76 -76
- package/src/category/i18n/ko.ts +76 -76
- package/src/category/i18n/nl.ts +76 -76
- package/src/category/i18n/pl.ts +76 -76
- package/src/category/i18n/pt.ts +76 -76
- package/src/category/i18n/ru.ts +76 -76
- package/src/category/i18n/sv.ts +76 -76
- package/src/category/i18n/zh.ts +76 -76
- package/src/category/index.ts +2 -0
- package/src/category/seo.astro +1 -1
- package/src/components/PreviewNavSidebar.astro +1 -1
- package/src/components/PreviewToolbar.astro +1 -1
- package/src/data.ts +1 -1
- package/src/entries.ts +4 -1
- package/src/env.d.ts +1 -1
- package/src/index.ts +1 -1
- package/src/layouts/PreviewLayout.astro +113 -113
- package/src/pages/index.astro +1 -1
- package/src/tests/faq_count.test.ts +19 -19
- package/src/tests/i18n_coverage.test.ts +4 -2
- package/src/tests/locale_spelling.test.ts +44 -0
- package/src/tests/mocks/astro_mock.js +1 -1
- package/src/tests/no_en_dash.test.ts +70 -70
- package/src/tests/no_h1_in_components.test.ts +1 -1
- package/src/tests/seo_length.test.ts +22 -22
- package/src/tests/seo_translation_completeness.test.ts +69 -0
- package/src/tests/spanish_leakage.test.ts +175 -153
- package/src/tests/tool_validation.test.ts +17 -17
- package/src/tool/burnTest/i18n/es.ts +211 -211
- package/src/tool/burnTest/i18n/fr.ts +211 -211
- package/src/tool/burnTest/i18n/ja.ts +211 -211
- package/src/tool/burnTest/i18n/ko.ts +211 -211
- package/src/tool/burnTest/i18n/pl.ts +211 -211
- package/src/tool/burnTest/i18n/ru.ts +211 -211
- package/src/tool/burnTest/i18n/sv.ts +211 -211
- package/src/tool/burnTest/i18n/zh.ts +211 -211
- package/src/tool/burnTest/seo.astro +15 -15
- package/src/tool/clothingSizeConverter/i18n/de.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/en.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/fr.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/ja.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/ko.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/nl.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/pl.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/ru.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/sv.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/tr.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/zh.ts +348 -348
- package/src/tool/clothingSizeConverter/seo.astro +15 -15
- package/src/tool/embroideryStitchPricingEstimator/bibliography.astro +6 -0
- package/src/tool/embroideryStitchPricingEstimator/bibliography.ts +12 -0
- package/src/tool/embroideryStitchPricingEstimator/component.astro +111 -0
- package/src/tool/embroideryStitchPricingEstimator/controller.ts +111 -0
- package/src/tool/embroideryStitchPricingEstimator/dom-views.ts +94 -0
- package/src/tool/embroideryStitchPricingEstimator/embroidery-stitch-count-pricing-estimator.css +438 -0
- package/src/tool/embroideryStitchPricingEstimator/entry.ts +29 -0
- package/src/tool/embroideryStitchPricingEstimator/evaluator.ts +22 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/de.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/en.ts +194 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/es.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/fr.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/id.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/it.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/ja.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/ko.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/nl.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/pl.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/pt.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/ru.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/sv.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/tr.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/zh.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/index.ts +11 -0
- package/src/tool/embroideryStitchPricingEstimator/logic.test.ts +40 -0
- package/src/tool/embroideryStitchPricingEstimator/logic.ts +86 -0
- package/src/tool/embroideryStitchPricingEstimator/seo.astro +15 -0
- package/src/tool/embroideryStitchPricingEstimator/storage.ts +20 -0
- package/src/tool/embroideryStitchPricingEstimator/ui.ts +53 -0
- package/src/tool/fabricProjectCalculator/i18n/de.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/ja.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/ko.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/nl.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/pl.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/ru.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/sv.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/tr.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/zh.ts +236 -236
- package/src/tool/fabricProjectCalculator/seo.astro +15 -15
- package/src/tool/fabricTruth/i18n/de.ts +268 -268
- package/src/tool/fabricTruth/i18n/en.ts +268 -268
- package/src/tool/fabricTruth/i18n/es.ts +302 -302
- package/src/tool/fabricTruth/i18n/fr.ts +268 -268
- package/src/tool/fabricTruth/i18n/id.ts +268 -268
- package/src/tool/fabricTruth/i18n/it.ts +268 -268
- package/src/tool/fabricTruth/i18n/ja.ts +268 -268
- package/src/tool/fabricTruth/i18n/ko.ts +268 -268
- package/src/tool/fabricTruth/i18n/nl.ts +268 -268
- package/src/tool/fabricTruth/i18n/pl.ts +268 -268
- package/src/tool/fabricTruth/i18n/pt.ts +268 -268
- package/src/tool/fabricTruth/i18n/ru.ts +268 -268
- package/src/tool/fabricTruth/i18n/sv.ts +268 -268
- package/src/tool/fabricTruth/i18n/tr.ts +268 -268
- package/src/tool/fabricTruth/i18n/zh.ts +272 -272
- package/src/tool/fabricTruth/seo.astro +15 -15
- package/src/tool/fiberPrep/i18n/de.ts +215 -215
- package/src/tool/fiberPrep/i18n/fr.ts +215 -215
- package/src/tool/fiberPrep/i18n/ja.ts +215 -215
- package/src/tool/fiberPrep/i18n/ko.ts +215 -215
- package/src/tool/fiberPrep/i18n/nl.ts +215 -215
- package/src/tool/fiberPrep/i18n/pl.ts +215 -215
- package/src/tool/fiberPrep/i18n/ru.ts +215 -215
- package/src/tool/fiberPrep/i18n/sv.ts +215 -215
- package/src/tool/fiberPrep/i18n/tr.ts +215 -215
- package/src/tool/fiberPrep/i18n/zh.ts +215 -215
- package/src/tool/fiberPrep/seo.astro +15 -15
- package/src/tool/knittingGauge/i18n/de.ts +224 -224
- package/src/tool/knittingGauge/i18n/ja.ts +224 -224
- package/src/tool/knittingGauge/i18n/ko.ts +224 -224
- package/src/tool/knittingGauge/i18n/pl.ts +224 -224
- package/src/tool/knittingGauge/i18n/ru.ts +224 -224
- package/src/tool/knittingGauge/i18n/tr.ts +224 -224
- package/src/tool/knittingGauge/i18n/zh.ts +224 -224
- package/src/tool/knittingGauge/seo.astro +15 -15
- package/src/tool/laundryGuide/i18n/de.ts +271 -271
- package/src/tool/laundryGuide/i18n/en.ts +271 -271
- package/src/tool/laundryGuide/i18n/es.ts +271 -271
- package/src/tool/laundryGuide/i18n/fr.ts +255 -255
- package/src/tool/laundryGuide/i18n/id.ts +271 -271
- package/src/tool/laundryGuide/i18n/it.ts +271 -271
- package/src/tool/laundryGuide/i18n/ja.ts +271 -271
- package/src/tool/laundryGuide/i18n/ko.ts +271 -271
- package/src/tool/laundryGuide/i18n/nl.ts +271 -271
- package/src/tool/laundryGuide/i18n/pl.ts +271 -271
- package/src/tool/laundryGuide/i18n/pt.ts +271 -271
- package/src/tool/laundryGuide/i18n/ru.ts +271 -271
- package/src/tool/laundryGuide/i18n/sv.ts +271 -271
- package/src/tool/laundryGuide/i18n/tr.ts +271 -271
- package/src/tool/laundryGuide/i18n/zh.ts +271 -271
- package/src/tool/laundryGuide/seo.astro +15 -15
- package/src/tool/needleConverter/i18n/de.ts +202 -202
- package/src/tool/needleConverter/i18n/es.ts +207 -207
- package/src/tool/needleConverter/i18n/fr.ts +207 -207
- package/src/tool/needleConverter/i18n/ja.ts +202 -202
- package/src/tool/needleConverter/i18n/ko.ts +202 -202
- package/src/tool/needleConverter/i18n/nl.ts +202 -202
- package/src/tool/needleConverter/i18n/pl.ts +202 -202
- package/src/tool/needleConverter/i18n/ru.ts +202 -202
- package/src/tool/needleConverter/i18n/sv.ts +202 -202
- package/src/tool/needleConverter/i18n/tr.ts +202 -202
- package/src/tool/needleConverter/i18n/zh.ts +202 -202
- package/src/tool/needleConverter/seo.astro +15 -15
- package/src/tool/sewingPatternScaler/component.astro +236 -236
- package/src/tool/sewingPatternScaler/i18n/fr.ts +170 -170
- package/src/tool/sewingPatternScaler/i18n/ja.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/ko.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/nl.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/pl.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/ru.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/sv.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/tr.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/zh.ts +114 -114
- package/src/tool/sewingPatternScaler/seo.astro +15 -15
- package/src/tool/shoeSizeConverter/i18n/fr.ts +183 -183
- package/src/tool/shoeSizeConverter/i18n/ja.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/ko.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/nl.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/pl.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/ru.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/sv.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/tr.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/zh.ts +179 -179
- package/src/tool/shoeSizeConverter/seo.astro +15 -15
- package/src/tool/stainChemistry/bibliography.ts +16 -16
- package/src/tool/stainChemistry/i18n/de.ts +286 -286
- package/src/tool/stainChemistry/i18n/en.ts +289 -289
- package/src/tool/stainChemistry/i18n/es.ts +286 -286
- package/src/tool/stainChemistry/i18n/fr.ts +296 -296
- package/src/tool/stainChemistry/i18n/id.ts +286 -286
- package/src/tool/stainChemistry/i18n/it.ts +286 -286
- package/src/tool/stainChemistry/i18n/ja.ts +286 -286
- package/src/tool/stainChemistry/i18n/ko.ts +283 -283
- package/src/tool/stainChemistry/i18n/nl.ts +286 -286
- package/src/tool/stainChemistry/i18n/pl.ts +286 -286
- package/src/tool/stainChemistry/i18n/pt.ts +286 -286
- package/src/tool/stainChemistry/i18n/ru.ts +286 -286
- package/src/tool/stainChemistry/i18n/sv.ts +286 -286
- package/src/tool/stainChemistry/i18n/tr.ts +286 -286
- package/src/tool/stainChemistry/i18n/zh.ts +281 -281
- package/src/tool/stainChemistry/seo.astro +15 -15
- package/src/tool/yarnCalculator/i18n/de.ts +296 -296
- package/src/tool/yarnCalculator/i18n/es.ts +296 -296
- package/src/tool/yarnCalculator/i18n/fr.ts +296 -296
- package/src/tool/yarnCalculator/i18n/ja.ts +296 -296
- package/src/tool/yarnCalculator/i18n/ko.ts +296 -296
- package/src/tool/yarnCalculator/i18n/nl.ts +296 -296
- package/src/tool/yarnCalculator/i18n/pl.ts +296 -296
- package/src/tool/yarnCalculator/i18n/ru.ts +296 -296
- package/src/tool/yarnCalculator/i18n/sv.ts +296 -296
- package/src/tool/yarnCalculator/i18n/tr.ts +296 -296
- package/src/tool/yarnCalculator/i18n/zh.ts +295 -295
- package/src/tool/yarnCalculator/seo.astro +15 -15
- package/src/tools.ts +2 -2
|
@@ -1,211 +1,211 @@
|
|
|
1
|
-
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
-
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
-
import { bibliography } from '../bibliography';
|
|
4
|
-
import type { BurnTestUI } from '../ui';
|
|
5
|
-
|
|
6
|
-
const slug = 'textile-burn-test';
|
|
7
|
-
const title = '섬유 연소 테스트';
|
|
8
|
-
const description =
|
|
9
|
-
'연소 거동을 분석하여 모든 원단의 실제 성분을 식별합니다. 면, 울, 실크 및 합성 섬유를 과학적으로 구분해 보세요.';
|
|
10
|
-
|
|
11
|
-
const faqData = [
|
|
12
|
-
{
|
|
13
|
-
question: '집에서 연소 테스트를 수행해도 안전한가요?',
|
|
14
|
-
answer:
|
|
15
|
-
'네, 철저한 주의를 기울인다면 안전합니다. 금속 집게를 사용하고, 내화성이 있는 표면(세라믹 또는 금속) 위에서 작업하며, 근처에 물을 준비하고, 환기가 잘 되는 곳에서 테스트를 진행하세요. 1x1cm 정도의 작은 샘플이나 실 몇 가닥만 있으면 충분합니다.',
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
question: '면은 탈 때 어떤 냄새가 나나요?',
|
|
19
|
-
answer:
|
|
20
|
-
'면은 순수 셀룰로오스입니다. 탈 때 종이나 마른 잎이 타는 것과 똑같은 냄새가 납니다. 남은 재는 회색이며 매우 곱고 만지면 부서집니다.',
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
question: '섬유 끝에 딱딱하고 검은 알갱이가 생기는 것은 무엇을 의미하나요?',
|
|
24
|
-
answer:
|
|
25
|
-
'이는 폴리에스테르나 나일론 같은 합성 섬유(플라스틱)의 명확한 징후입니다. 녹으면서 폴리머가 뭉쳐져 플라스틱 알갱이가 되는데, 이는 천연 섬유의 재와 달리 부서지지 않습니다.',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
question: '왜 울은 탈 때 고약한 냄새가 나나요?',
|
|
29
|
-
answer:
|
|
30
|
-
'울과 실크는 황을 포함한 동물성 단백질입니다. 불에 닿으면 머리카락이나 깃털이 타는 듯한 자극적인 냄새를 풍깁니다. 이것이 식물성 섬유와 구분하는 가장 쉬운 방법입니다.',
|
|
31
|
-
},
|
|
32
|
-
];
|
|
33
|
-
|
|
34
|
-
const howToData = [
|
|
35
|
-
{
|
|
36
|
-
name: '대표 샘플 추출',
|
|
37
|
-
text: '원단에서 작은 사각형을 자르거나, 더 정확하게는 경사(수직)와 위사(수평)에서 실을 몇 가닥 뽑아냅니다.',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: '불꽃 접근 관찰',
|
|
41
|
-
text: '섬유를 불꽃에 직접 닿지 않게 천천히 가까이 가져갑니다. 섬유가 수축하는지, 녹는지, 아니면 즉시 불이 붙는지 관찰합니다.',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: '불꽃 종류 및 연기 분석',
|
|
45
|
-
text: '불꽃이 일정한지 아니면 저절로 꺼지는지, 그리고 연기가 흰색인지 검은색인지 혹은 연기가 나지 않는지 확인합니다.',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
name: '잔여물 및 냄새 평가',
|
|
49
|
-
text: '식은 후 남은 재나 알갱이를 만져보고 냄새(종이, 머리카락 또는 화학 물질)를 맡아 섬유군을 확인합니다.',
|
|
50
|
-
},
|
|
51
|
-
];
|
|
52
|
-
|
|
53
|
-
const faqSchema: WithContext<FAQPage> = {
|
|
54
|
-
'@context': 'https://schema.org',
|
|
55
|
-
'@type': 'FAQPage',
|
|
56
|
-
mainEntity: faqData.map((item) => ({
|
|
57
|
-
'@type': 'Question',
|
|
58
|
-
name: item.question,
|
|
59
|
-
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
60
|
-
})),
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
const howToSchema: WithContext<HowTo> = {
|
|
64
|
-
'@context': 'https://schema.org',
|
|
65
|
-
'@type': 'HowTo',
|
|
66
|
-
name: title,
|
|
67
|
-
description,
|
|
68
|
-
step: howToData.map((step) => ({
|
|
69
|
-
'@type': 'HowToStep',
|
|
70
|
-
name: step.name,
|
|
71
|
-
text: step.text,
|
|
72
|
-
})),
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
-
'@context': 'https://schema.org',
|
|
77
|
-
'@type': 'SoftwareApplication',
|
|
78
|
-
name: title,
|
|
79
|
-
description,
|
|
80
|
-
applicationCategory: 'UtilityApplication',
|
|
81
|
-
operatingSystem: 'All',
|
|
82
|
-
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
-
inLanguage: 'ko',
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
const flame = {
|
|
87
|
-
cellulosic: '빠르고 밝게 타오름(노란 불꽃). 녹지 않음. 불꽃에서 멀어져도 계속 탐.',
|
|
88
|
-
protein: '천천히 타며 치익 소리가 나고 불꽃으로부터 수축함. 불꽃에서 멀어지면 저절로 꺼짐.',
|
|
89
|
-
synthetic: '녹으면서 빠르게 수축하고 녹은 플라스틱처럼 떨어짐. 그을음이 섞인 불꽃.',
|
|
90
|
-
};
|
|
91
|
-
|
|
92
|
-
const odor = {
|
|
93
|
-
paper: '종이 타는 냄새, 나무, 마른 잎.',
|
|
94
|
-
hair: '머리카락 타는 냄새, 타는 뿔 냄새, 깃털.',
|
|
95
|
-
chemical_sweet: '방향족 화학 냄새(달콤함, 과일향).',
|
|
96
|
-
chemical_fishy: '시큼한 화학 냄새(생선, 구운 고기).',
|
|
97
|
-
vegetable: '익힌 채소 냄새(셀러리).',
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
const residue = {
|
|
101
|
-
ash_soft: '고운 회색/검은색 재, 부드럽고 가벼움(만지면 부서짐).',
|
|
102
|
-
ash_shape: '섬유 모양을 유지하는 회색 재(잘 부스러짐).',
|
|
103
|
-
bead_crushable: '속이 빈/부서지기 쉬운 검은 덩어리(손가락으로 쉽게 으깨짐).',
|
|
104
|
-
bead_hard: '딱딱하고 유리 같은 알갱이. 손가락으로 깰 수 없음.',
|
|
105
|
-
bead_irregular: '딱딱하고 불규칙한 검은 덩어리.',
|
|
106
|
-
};
|
|
107
|
-
|
|
108
|
-
const smoke = {
|
|
109
|
-
white_gray: '흰색 / 연한 회색.',
|
|
110
|
-
gray: '중간 회색.',
|
|
111
|
-
black: '짙고 어두운 검은색.',
|
|
112
|
-
};
|
|
113
|
-
|
|
114
|
-
export const content: ToolLocaleContent<BurnTestUI> = {
|
|
115
|
-
slug,
|
|
116
|
-
title,
|
|
117
|
-
description,
|
|
118
|
-
faq: faqData,
|
|
119
|
-
bibliography: bibliography,
|
|
120
|
-
howTo: howToData,
|
|
121
|
-
schemas: [faqSchema, howToSchema, appSchema],
|
|
122
|
-
seo: [
|
|
123
|
-
{
|
|
124
|
-
type: 'title',
|
|
125
|
-
text: '필라멘트의 과학 수사',
|
|
126
|
-
level: 2,
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
type: 'paragraph',
|
|
130
|
-
html: '연소 테스트는 전자 현미경을 사용하지 않고도 천연 폴리머와 합성 폴리머를 구분할 수 있는 가장 빠르고 정확한 분석 방법입니다. 섬유에 열을 가함으로써 분자 거동이 식물 셀룰로오스부터 동물성 단백질, 석유 유도체에 이르는 그 기원을 드러냅니다.',
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
type: 'card',
|
|
134
|
-
title: '셀룰로오스 섬유',
|
|
135
|
-
icon: 'mdi:leaf',
|
|
136
|
-
html: '<strong>면</strong>과 <strong>리넨</strong>은 녹지 않고 빠르게 탑니다. 나무나 식물에서 유래했기 때문에 종이 타는 냄새가 나며, 불면 날아가는 가벼운 회색 재를 남깁니다.',
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
type: 'card',
|
|
140
|
-
title: '단백질 섬유',
|
|
141
|
-
icon: 'mdi:sheep',
|
|
142
|
-
html: '<strong>울</strong>과 <strong>실크</strong>는 불꽃에서 멀어집니다. 머리카락 타는 듯한 특유의 냄새는 황과 케라틴의 존재를 나타냅니다. 잔여물은 만지면 부서지는 검은 알갱이입니다.',
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
type: 'card',
|
|
146
|
-
title: '합성 섬유',
|
|
147
|
-
icon: 'mdi:bottle-soda-classic',
|
|
148
|
-
html: '<strong>폴리에스테르</strong>와 <strong>나일론</strong>은 본질적으로 플라스틱입니다. 녹으면서 뜨거운 방울을 형성하고 깨뜨릴 수 없는 유리 같은 알갱이로 굳으며, 날카로운 화학 냄새가 납니다.',
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
type: 'title',
|
|
152
|
-
text: '화학적 증거 매트릭스',
|
|
153
|
-
level: 2,
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
type: 'paragraph',
|
|
157
|
-
html: '정확한 분석을 위해서는 최소 세 가지 증거를 교차 확인해야 합니다. 냄새는 혼방 소재를 식별하는 데 가장 신뢰할 수 있는 지표입니다: 만약 "리넨" 원단에서 약간의 플라스틱 향이 나고 딱딱한 잔여물이 남는다면, 이는 표시되지 않은 폴리에스테르 혼방임을 나타냅니다.',
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
type: 'tip',
|
|
161
|
-
title: '실험실 안전 프로토콜',
|
|
162
|
-
html: '<strong>환기 필수:</strong> 합성 섬유는 탈 때 독성 가스를 방출합니다. 밀폐된 공간에서 이 테스트를 수행하지 마세요.<br><strong>즉시 소화:</strong> 항상 근처에 물 그릇을 준비하세요. 일부 합성 섬유는 녹아서 피부에 달라붙을 수 있습니다.',
|
|
163
|
-
},
|
|
164
|
-
],
|
|
165
|
-
ui: {
|
|
166
|
-
investigationLabel: '조사',
|
|
167
|
-
stepPrefix: '단계',
|
|
168
|
-
stepCompleted: '분석 완료',
|
|
169
|
-
resetLabel: '재시작',
|
|
170
|
-
positiveId: '긍정 식별',
|
|
171
|
-
flameLabel: '불꽃 거동',
|
|
172
|
-
odorLabel: '후각 흔적',
|
|
173
|
-
residueLabel: '잔여물',
|
|
174
|
-
identifiedAs: '샘플이 다음과 같이 긍정 식별됨:',
|
|
175
|
-
safetyTitle: '안전 프로토콜',
|
|
176
|
-
safetyText:
|
|
177
|
-
'환기가 잘 되는 곳에서 내화성 표면 위에서 이 테스트를 수행하세요. 금속 집게를 사용하고 근처에 물을 준비하세요.',
|
|
178
|
-
questions: {
|
|
179
|
-
flame: '불꽃에서의 거동은?',
|
|
180
|
-
odor: '특징적인 냄새는?',
|
|
181
|
-
residue: '최종 잔여물은?',
|
|
182
|
-
smoke: '연기의 종류는?',
|
|
183
|
-
},
|
|
184
|
-
fiberData: {
|
|
185
|
-
cotton: { name: '면 (코튼)', icon: 'mdi:tshirt-crew', color: '#60A5FA', description: '천연 식물 섬유. 부드럽고 통기성이 좋음. 기본 소재의 왕.' },
|
|
186
|
-
linen: { name: '리넨', icon: 'mdi:leaf', color: '#A7F3D0', description: '매우 강한 식물 섬유. 시원하고 특유의 구김이 있음.' },
|
|
187
|
-
wool: { name: '울 / 메리노', icon: 'mdi:sheep', color: '#FCD34D', description: '동물성 단백질 섬유. 우수한 단열성과 탄력성.' },
|
|
188
|
-
silk: { name: '실크 (비단)', icon: 'mdi:ticket-percent', color: '#F472B6', description: '동물성 장섬유. 자연스러운 광택과 드라이한 촉감.' },
|
|
189
|
-
cashmere: { name: '캐시미어', icon: 'mdi:crown', color: '#F59E0B', description: '고급 캐시미어 염소 섬유. 매우 부드럽고 가벼우며 따뜻함.' },
|
|
190
|
-
mohair: { name: '모헤어', icon: 'mdi:shimmer', color: '#14B8A6', description: '앙고라 염소의 "다이아몬드 섬유". 자연스러운 광택과 높은 내구성.' },
|
|
191
|
-
angora: { name: '앙고라', icon: 'mdi:rabbit', color: '#F9FAFB', description: '앙고라 토끼 털. 푹신한 "헤일로" 효과와 극한의 가벼움으로 유명함.' },
|
|
192
|
-
alpaca: { name: '알파카', icon: 'mdi:image-filter-hdr', color: '#9F7AEA', description: '안데스의 보물. 중공 구조로 따뜻하고 저자극적이며 실키한 섬유.' },
|
|
193
|
-
polyester: { name: '폴리에스테르', icon: 'mdi:oil', color: '#94A3B8', description: '석유 기반 합성 섬유. 내구성이 좋고 구김이 없으나 통기성이 낮음.' },
|
|
194
|
-
nylon: { name: '나일론 (폴리아미드)', icon: 'mdi:parachute', color: '#2DD4BF', description: '인장 강도와 마모에 매우 강한 합성 섬유.' },
|
|
195
|
-
acrylic: { name: '아크릴', icon: 'mdi:resize', color: '#450A0A', description: '울 모조 합성 섬유. 부드럽고 따뜻하지만 보풀이 잘 생김.' },
|
|
196
|
-
},
|
|
197
|
-
burnTestData: [
|
|
198
|
-
{ fiberId: 'cotton', flame: flame.cellulosic, odor: odor.paper, smoke: smoke.white_gray, residue: residue.ash_soft },
|
|
199
|
-
{ fiberId: 'linen', flame: flame.cellulosic, odor: odor.paper, smoke: smoke.white_gray, residue: residue.ash_shape },
|
|
200
|
-
{ fiberId: 'wool', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
201
|
-
{ fiberId: 'silk', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
202
|
-
{ fiberId: 'cashmere', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
203
|
-
{ fiberId: 'mohair', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
204
|
-
{ fiberId: 'angora', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
205
|
-
{ fiberId: 'alpaca', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
206
|
-
{ fiberId: 'polyester', flame: flame.synthetic, odor: odor.chemical_sweet, smoke: smoke.black, residue: residue.bead_hard },
|
|
207
|
-
{ fiberId: 'nylon', flame: flame.synthetic, odor: odor.vegetable, smoke: smoke.white_gray, residue: residue.bead_hard },
|
|
208
|
-
{ fiberId: 'acrylic', flame: flame.synthetic, odor: odor.chemical_fishy, smoke: smoke.black, residue: residue.bead_irregular },
|
|
209
|
-
],
|
|
210
|
-
},
|
|
211
|
-
};
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import type { BurnTestUI } from '../ui';
|
|
5
|
+
|
|
6
|
+
const slug = 'textile-burn-test';
|
|
7
|
+
const title = '섬유 연소 테스트';
|
|
8
|
+
const description =
|
|
9
|
+
'연소 거동을 분석하여 모든 원단의 실제 성분을 식별합니다. 면, 울, 실크 및 합성 섬유를 과학적으로 구분해 보세요.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: '집에서 연소 테스트를 수행해도 안전한가요?',
|
|
14
|
+
answer:
|
|
15
|
+
'네, 철저한 주의를 기울인다면 안전합니다. 금속 집게를 사용하고, 내화성이 있는 표면(세라믹 또는 금속) 위에서 작업하며, 근처에 물을 준비하고, 환기가 잘 되는 곳에서 테스트를 진행하세요. 1x1cm 정도의 작은 샘플이나 실 몇 가닥만 있으면 충분합니다.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: '면은 탈 때 어떤 냄새가 나나요?',
|
|
19
|
+
answer:
|
|
20
|
+
'면은 순수 셀룰로오스입니다. 탈 때 종이나 마른 잎이 타는 것과 똑같은 냄새가 납니다. 남은 재는 회색이며 매우 곱고 만지면 부서집니다.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '섬유 끝에 딱딱하고 검은 알갱이가 생기는 것은 무엇을 의미하나요?',
|
|
24
|
+
answer:
|
|
25
|
+
'이는 폴리에스테르나 나일론 같은 합성 섬유(플라스틱)의 명확한 징후입니다. 녹으면서 폴리머가 뭉쳐져 플라스틱 알갱이가 되는데, 이는 천연 섬유의 재와 달리 부서지지 않습니다.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: '왜 울은 탈 때 고약한 냄새가 나나요?',
|
|
29
|
+
answer:
|
|
30
|
+
'울과 실크는 황을 포함한 동물성 단백질입니다. 불에 닿으면 머리카락이나 깃털이 타는 듯한 자극적인 냄새를 풍깁니다. 이것이 식물성 섬유와 구분하는 가장 쉬운 방법입니다.',
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
const howToData = [
|
|
35
|
+
{
|
|
36
|
+
name: '대표 샘플 추출',
|
|
37
|
+
text: '원단에서 작은 사각형을 자르거나, 더 정확하게는 경사(수직)와 위사(수평)에서 실을 몇 가닥 뽑아냅니다.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: '불꽃 접근 관찰',
|
|
41
|
+
text: '섬유를 불꽃에 직접 닿지 않게 천천히 가까이 가져갑니다. 섬유가 수축하는지, 녹는지, 아니면 즉시 불이 붙는지 관찰합니다.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: '불꽃 종류 및 연기 분석',
|
|
45
|
+
text: '불꽃이 일정한지 아니면 저절로 꺼지는지, 그리고 연기가 흰색인지 검은색인지 혹은 연기가 나지 않는지 확인합니다.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: '잔여물 및 냄새 평가',
|
|
49
|
+
text: '식은 후 남은 재나 알갱이를 만져보고 냄새(종이, 머리카락 또는 화학 물질)를 맡아 섬유군을 확인합니다.',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
|
|
53
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
54
|
+
'@context': 'https://schema.org',
|
|
55
|
+
'@type': 'FAQPage',
|
|
56
|
+
mainEntity: faqData.map((item) => ({
|
|
57
|
+
'@type': 'Question',
|
|
58
|
+
name: item.question,
|
|
59
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
60
|
+
})),
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const howToSchema: WithContext<HowTo> = {
|
|
64
|
+
'@context': 'https://schema.org',
|
|
65
|
+
'@type': 'HowTo',
|
|
66
|
+
name: title,
|
|
67
|
+
description,
|
|
68
|
+
step: howToData.map((step) => ({
|
|
69
|
+
'@type': 'HowToStep',
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'UtilityApplication',
|
|
81
|
+
operatingSystem: 'All',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
inLanguage: 'ko',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
const flame = {
|
|
87
|
+
cellulosic: '빠르고 밝게 타오름(노란 불꽃). 녹지 않음. 불꽃에서 멀어져도 계속 탐.',
|
|
88
|
+
protein: '천천히 타며 치익 소리가 나고 불꽃으로부터 수축함. 불꽃에서 멀어지면 저절로 꺼짐.',
|
|
89
|
+
synthetic: '녹으면서 빠르게 수축하고 녹은 플라스틱처럼 떨어짐. 그을음이 섞인 불꽃.',
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
const odor = {
|
|
93
|
+
paper: '종이 타는 냄새, 나무, 마른 잎.',
|
|
94
|
+
hair: '머리카락 타는 냄새, 타는 뿔 냄새, 깃털.',
|
|
95
|
+
chemical_sweet: '방향족 화학 냄새(달콤함, 과일향).',
|
|
96
|
+
chemical_fishy: '시큼한 화학 냄새(생선, 구운 고기).',
|
|
97
|
+
vegetable: '익힌 채소 냄새(셀러리).',
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
const residue = {
|
|
101
|
+
ash_soft: '고운 회색/검은색 재, 부드럽고 가벼움(만지면 부서짐).',
|
|
102
|
+
ash_shape: '섬유 모양을 유지하는 회색 재(잘 부스러짐).',
|
|
103
|
+
bead_crushable: '속이 빈/부서지기 쉬운 검은 덩어리(손가락으로 쉽게 으깨짐).',
|
|
104
|
+
bead_hard: '딱딱하고 유리 같은 알갱이. 손가락으로 깰 수 없음.',
|
|
105
|
+
bead_irregular: '딱딱하고 불규칙한 검은 덩어리.',
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
const smoke = {
|
|
109
|
+
white_gray: '흰색 / 연한 회색.',
|
|
110
|
+
gray: '중간 회색.',
|
|
111
|
+
black: '짙고 어두운 검은색.',
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
export const content: ToolLocaleContent<BurnTestUI> = {
|
|
115
|
+
slug,
|
|
116
|
+
title,
|
|
117
|
+
description,
|
|
118
|
+
faq: faqData,
|
|
119
|
+
bibliography: bibliography,
|
|
120
|
+
howTo: howToData,
|
|
121
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
122
|
+
seo: [
|
|
123
|
+
{
|
|
124
|
+
type: 'title',
|
|
125
|
+
text: '필라멘트의 과학 수사',
|
|
126
|
+
level: 2,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'paragraph',
|
|
130
|
+
html: '연소 테스트는 전자 현미경을 사용하지 않고도 천연 폴리머와 합성 폴리머를 구분할 수 있는 가장 빠르고 정확한 분석 방법입니다. 섬유에 열을 가함으로써 분자 거동이 식물 셀룰로오스부터 동물성 단백질, 석유 유도체에 이르는 그 기원을 드러냅니다.',
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'card',
|
|
134
|
+
title: '셀룰로오스 섬유',
|
|
135
|
+
icon: 'mdi:leaf',
|
|
136
|
+
html: '<strong>면</strong>과 <strong>리넨</strong>은 녹지 않고 빠르게 탑니다. 나무나 식물에서 유래했기 때문에 종이 타는 냄새가 나며, 불면 날아가는 가벼운 회색 재를 남깁니다.',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'card',
|
|
140
|
+
title: '단백질 섬유',
|
|
141
|
+
icon: 'mdi:sheep',
|
|
142
|
+
html: '<strong>울</strong>과 <strong>실크</strong>는 불꽃에서 멀어집니다. 머리카락 타는 듯한 특유의 냄새는 황과 케라틴의 존재를 나타냅니다. 잔여물은 만지면 부서지는 검은 알갱이입니다.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
type: 'card',
|
|
146
|
+
title: '합성 섬유',
|
|
147
|
+
icon: 'mdi:bottle-soda-classic',
|
|
148
|
+
html: '<strong>폴리에스테르</strong>와 <strong>나일론</strong>은 본질적으로 플라스틱입니다. 녹으면서 뜨거운 방울을 형성하고 깨뜨릴 수 없는 유리 같은 알갱이로 굳으며, 날카로운 화학 냄새가 납니다.',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'title',
|
|
152
|
+
text: '화학적 증거 매트릭스',
|
|
153
|
+
level: 2,
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: '정확한 분석을 위해서는 최소 세 가지 증거를 교차 확인해야 합니다. 냄새는 혼방 소재를 식별하는 데 가장 신뢰할 수 있는 지표입니다: 만약 "리넨" 원단에서 약간의 플라스틱 향이 나고 딱딱한 잔여물이 남는다면, 이는 표시되지 않은 폴리에스테르 혼방임을 나타냅니다.',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'tip',
|
|
161
|
+
title: '실험실 안전 프로토콜',
|
|
162
|
+
html: '<strong>환기 필수:</strong> 합성 섬유는 탈 때 독성 가스를 방출합니다. 밀폐된 공간에서 이 테스트를 수행하지 마세요.<br><strong>즉시 소화:</strong> 항상 근처에 물 그릇을 준비하세요. 일부 합성 섬유는 녹아서 피부에 달라붙을 수 있습니다.',
|
|
163
|
+
},
|
|
164
|
+
],
|
|
165
|
+
ui: {
|
|
166
|
+
investigationLabel: '조사',
|
|
167
|
+
stepPrefix: '단계',
|
|
168
|
+
stepCompleted: '분석 완료',
|
|
169
|
+
resetLabel: '재시작',
|
|
170
|
+
positiveId: '긍정 식별',
|
|
171
|
+
flameLabel: '불꽃 거동',
|
|
172
|
+
odorLabel: '후각 흔적',
|
|
173
|
+
residueLabel: '잔여물',
|
|
174
|
+
identifiedAs: '샘플이 다음과 같이 긍정 식별됨:',
|
|
175
|
+
safetyTitle: '안전 프로토콜',
|
|
176
|
+
safetyText:
|
|
177
|
+
'환기가 잘 되는 곳에서 내화성 표면 위에서 이 테스트를 수행하세요. 금속 집게를 사용하고 근처에 물을 준비하세요.',
|
|
178
|
+
questions: {
|
|
179
|
+
flame: '불꽃에서의 거동은?',
|
|
180
|
+
odor: '특징적인 냄새는?',
|
|
181
|
+
residue: '최종 잔여물은?',
|
|
182
|
+
smoke: '연기의 종류는?',
|
|
183
|
+
},
|
|
184
|
+
fiberData: {
|
|
185
|
+
cotton: { name: '면 (코튼)', icon: 'mdi:tshirt-crew', color: '#60A5FA', description: '천연 식물 섬유. 부드럽고 통기성이 좋음. 기본 소재의 왕.' },
|
|
186
|
+
linen: { name: '리넨', icon: 'mdi:leaf', color: '#A7F3D0', description: '매우 강한 식물 섬유. 시원하고 특유의 구김이 있음.' },
|
|
187
|
+
wool: { name: '울 / 메리노', icon: 'mdi:sheep', color: '#FCD34D', description: '동물성 단백질 섬유. 우수한 단열성과 탄력성.' },
|
|
188
|
+
silk: { name: '실크 (비단)', icon: 'mdi:ticket-percent', color: '#F472B6', description: '동물성 장섬유. 자연스러운 광택과 드라이한 촉감.' },
|
|
189
|
+
cashmere: { name: '캐시미어', icon: 'mdi:crown', color: '#F59E0B', description: '고급 캐시미어 염소 섬유. 매우 부드럽고 가벼우며 따뜻함.' },
|
|
190
|
+
mohair: { name: '모헤어', icon: 'mdi:shimmer', color: '#14B8A6', description: '앙고라 염소의 "다이아몬드 섬유". 자연스러운 광택과 높은 내구성.' },
|
|
191
|
+
angora: { name: '앙고라', icon: 'mdi:rabbit', color: '#F9FAFB', description: '앙고라 토끼 털. 푹신한 "헤일로" 효과와 극한의 가벼움으로 유명함.' },
|
|
192
|
+
alpaca: { name: '알파카', icon: 'mdi:image-filter-hdr', color: '#9F7AEA', description: '안데스의 보물. 중공 구조로 따뜻하고 저자극적이며 실키한 섬유.' },
|
|
193
|
+
polyester: { name: '폴리에스테르', icon: 'mdi:oil', color: '#94A3B8', description: '석유 기반 합성 섬유. 내구성이 좋고 구김이 없으나 통기성이 낮음.' },
|
|
194
|
+
nylon: { name: '나일론 (폴리아미드)', icon: 'mdi:parachute', color: '#2DD4BF', description: '인장 강도와 마모에 매우 강한 합성 섬유.' },
|
|
195
|
+
acrylic: { name: '아크릴', icon: 'mdi:resize', color: '#450A0A', description: '울 모조 합성 섬유. 부드럽고 따뜻하지만 보풀이 잘 생김.' },
|
|
196
|
+
},
|
|
197
|
+
burnTestData: [
|
|
198
|
+
{ fiberId: 'cotton', flame: flame.cellulosic, odor: odor.paper, smoke: smoke.white_gray, residue: residue.ash_soft },
|
|
199
|
+
{ fiberId: 'linen', flame: flame.cellulosic, odor: odor.paper, smoke: smoke.white_gray, residue: residue.ash_shape },
|
|
200
|
+
{ fiberId: 'wool', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
201
|
+
{ fiberId: 'silk', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
202
|
+
{ fiberId: 'cashmere', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
203
|
+
{ fiberId: 'mohair', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
204
|
+
{ fiberId: 'angora', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
205
|
+
{ fiberId: 'alpaca', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
206
|
+
{ fiberId: 'polyester', flame: flame.synthetic, odor: odor.chemical_sweet, smoke: smoke.black, residue: residue.bead_hard },
|
|
207
|
+
{ fiberId: 'nylon', flame: flame.synthetic, odor: odor.vegetable, smoke: smoke.white_gray, residue: residue.bead_hard },
|
|
208
|
+
{ fiberId: 'acrylic', flame: flame.synthetic, odor: odor.chemical_fishy, smoke: smoke.black, residue: residue.bead_irregular },
|
|
209
|
+
],
|
|
210
|
+
},
|
|
211
|
+
};
|